Home | History | Annotate | Download | only in rendering

Lines Matching defs:styleToUse

267     RenderStyle* styleToUse = style();
275 setFloating(!isOutOfFlowPositioned() && styleToUse->isFloating());
278 if (!styleToUse->isOverflowVisible() && isRenderBlock() && !isViewObject) {
293 setHasTransform(styleToUse->hasTransformRelatedProperty());
294 setHasReflection(styleToUse->boxReflect());
525 RenderStyle* styleToUse = style();
526 if (!styleToUse->logicalMaxWidth().isMaxSizeNone())
527 logicalWidth = std::min(logicalWidth, computeLogicalWidthUsing(MaxSize, styleToUse->logicalMaxWidth(), availableWidth, cb));
528 return std::max(logicalWidth, computeLogicalWidthUsing(MinSize, styleToUse->logicalMinWidth(), availableWidth, cb));
533 RenderStyle* styleToUse = style();
534 if (!styleToUse->logicalMaxHeight().isMaxSizeNone()) {
535 LayoutUnit maxH = computeLogicalHeightUsing(styleToUse->logicalMaxHeight(), intrinsicContentHeight);
539 return std::max(logicalHeight, computeLogicalHeightUsing(styleToUse->logicalMinHeight(), intrinsicContentHeight));
544 RenderStyle* styleToUse = style();
545 if (!styleToUse->logicalMaxHeight().isMaxSizeNone()) {
546 LayoutUnit maxH = computeContentLogicalHeight(styleToUse->logicalMaxHeight(), intrinsicContentHeight);
550 return std::max(logicalHeight, computeContentLogicalHeight(styleToUse->logicalMinHeight(), intrinsicContentHeight));
1757 RenderStyle* styleToUse = style();
1759 EPosition position = styleToUse->position();
1771 if (styleToUse->hasInFlowPosition() && layer())
1808 } else if (styleToUse->hasInFlowPosition() && layer()) {
1932 RenderStyle* styleToUse = style();
1933 Length logicalWidthLength = treatAsReplaced ? Length(computeReplacedLogicalWidth(), Fixed) : styleToUse->logicalWidth();
1941 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth);
1942 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth);
1955 LayoutUnit preferredWidth = computeLogicalWidthUsing(MainOrPreferredSize, styleToUse->logicalWidth(), containerWidthInInlineDirection, cb);
1973 if (styleToUse->textAutosizingMultiplier() != 1 && styleToUse->marginStart().type() == Fixed) {
1977 const float adjustedMargin = (1 - 1.0 / styleToUse->textAutosizingMultiplier()) * getMaxWidthListMarker(this);
3171 RenderStyle* styleToUse = style();
3173 const Length marginBefore = styleToUse->marginBefore();
3174 const Length marginAfter = styleToUse->marginAfter();
3175 styleToUse->logicalTop();
3176 Length logicalBottomLength = styleToUse->logicalBottom();
3201 computePositionedLogicalHeightUsing(styleToUse->logicalHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3209 if (!styleToUse->logicalMaxHeight().isMaxSizeNone()) {
3212 computePositionedLogicalHeightUsing(styleToUse->logicalMaxHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3225 if (!styleToUse->logicalMinHeight().isZero() || styleToUse->logicalMinHeight().isIntrinsic()) {
3228 computePositionedLogicalHeightUsing(styleToUse->logicalMinHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,