Home | History | Annotate | Download | only in rendering

Lines Matching defs:styleToUse

1570     RenderStyle* styleToUse = style();
1571 LayoutStateMaintainer statePusher(renderView, this, locationOffset(), hasColumns() || hasTransform() || hasReflection() || styleToUse->isFlippedBlocksWritingMode(), pageLogicalHeight, pageLogicalHeightChanged, columnInfo());
1594 setHasMarginBeforeQuirk(styleToUse->hasMarginBeforeQuirk());
1595 setHasMarginAfterQuirk(styleToUse->hasMarginAfterQuirk());
1668 if (!didFullRepaint && repaintLogicalTop != repaintLogicalBottom && (styleToUse->visibility() == VISIBLE || enclosingLayer()->hasVisibleContent())) {
5825 RenderStyle* styleToUse = style();
5826 if (!isTableCell() && styleToUse->logicalWidth().isFixed() && styleToUse->logicalWidth().value() >= 0
5827 && !(isDeprecatedFlexItem() && !styleToUse->logicalWidth().intValue()))
5828 m_minPreferredLogicalWidth = m_maxPreferredLogicalWidth = adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalWidth().value());
5832 if (styleToUse->logicalMinWidth().isFixed() && styleToUse->logicalMinWidth().value() > 0) {
5833 m_maxPreferredLogicalWidth = max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMinWidth().value()));
5834 m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMinWidth().value()));
5837 if (styleToUse->logicalMaxWidth().isFixed()) {
5838 m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
5839 m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
5974 RenderStyle* styleToUse = style();
5986 bool allowImagesToBreak = !document()->inQuirksMode() || !isTableCell() || !styleToUse->logicalWidth().isIntrinsicOrAuto();
5989 autoWrap = oldAutoWrap = styleToUse->autoWrap();
5998 LayoutUnit textIndent = minimumValueForLength(styleToUse->textIndent(), cw, view());
6261 if (styleToUse->collapseWhiteSpace())
6270 RenderStyle* styleToUse = style();
6271 bool nowrap = styleToUse->whiteSpace() == NOWRAP;
6299 Length startMarginLength = childStyle->marginStartUsing(styleToUse);
6300 Length endMarginLength = childStyle->marginEndUsing(styleToUse);
6335 bool ltr = containingBlock ? containingBlock->style()->isLeftToRightDirection() : styleToUse->isLeftToRightDirection();