Home | History | Annotate | Download | only in rendering

Lines Matching defs:styleToUse

3187     RenderStyle* styleToUse = style();
3188 if (!isTableCell() && styleToUse->logicalWidth().isFixed() && styleToUse->logicalWidth().value() >= 0
3189 && !(isDeprecatedFlexItem() && !styleToUse->logicalWidth().intValue()))
3190 m_minPreferredLogicalWidth = m_maxPreferredLogicalWidth = adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalWidth().value());
3194 if (styleToUse->logicalMinWidth().isFixed() && styleToUse->logicalMinWidth().value() > 0) {
3195 m_maxPreferredLogicalWidth = std::max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMinWidth().value()));
3196 m_minPreferredLogicalWidth = std::max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMinWidth().value()));
3199 if (styleToUse->logicalMaxWidth().isFixed()) {
3200 m_maxPreferredLogicalWidth = std::min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
3201 m_minPreferredLogicalWidth = std::min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(styleToUse->logicalMaxWidth().value()));
3243 RenderStyle* styleToUse = style();
3244 bool nowrap = styleToUse->whiteSpace() == NOWRAP;
3272 Length startMarginLength = childStyle->marginStartUsing(styleToUse);
3273 Length endMarginLength = childStyle->marginEndUsing(styleToUse);
3308 bool ltr = containingBlock ? containingBlock->style()->isLeftToRightDirection() : styleToUse->isLeftToRightDirection();