• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/rendering/

Lines Matching defs:styleToUse

347     RenderStyle* styleToUse = style();
355 setFloating(!isOutOfFlowPositioned() && styleToUse->isFloating());
358 if (styleToUse->overflowX() != OVISIBLE && !isRootObject && isRenderBlock()) {
381 setHasTransform(styleToUse->hasTransformRelatedProperty());
382 setHasReflection(styleToUse->boxReflect());
500 RenderStyle* styleToUse = style();
501 if (!styleToUse->logicalMaxWidth().isUndefined())
502 logicalWidth = min(logicalWidth, computeLogicalWidthInRegionUsing(MaxSize, styleToUse->logicalMaxWidth(), availableWidth, cb, region));
503 return max(logicalWidth, computeLogicalWidthInRegionUsing(MinSize, styleToUse->logicalMinWidth(), availableWidth, cb, region));
508 RenderStyle* styleToUse = style();
509 if (!styleToUse->logicalMaxHeight().isUndefined()) {
510 LayoutUnit maxH = computeLogicalHeightUsing(styleToUse->logicalMaxHeight());
514 return max(logicalHeight, computeLogicalHeightUsing(styleToUse->logicalMinHeight()));
519 RenderStyle* styleToUse = style();
520 if (!styleToUse->logicalMaxHeight().isUndefined()) {
521 LayoutUnit maxH = computeContentLogicalHeight(styleToUse->logicalMaxHeight());
525 return max(logicalHeight, computeContentLogicalHeight(styleToUse->logicalMinHeight()));
1976 RenderStyle* styleToUse = style();
1979 if (v->layoutStateEnabled() && !repaintContainer && styleToUse->position() != FixedPosition) {
1986 if (styleToUse->hasPaintOffset() && layer())
2017 EPosition position = styleToUse->position();
2031 else if (styleToUse->hasPaintOffset() && layer()) {
2129 RenderStyle* styleToUse = style();
2130 Length logicalWidthLength = treatAsReplaced ? Length(computeReplacedLogicalWidth(), Fixed) : styleToUse->logicalWidth();
2139 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth, renderView);
2140 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth, renderView);
2153 LayoutUnit preferredWidth = computeLogicalWidthInRegionUsing(MainOrPreferredSize, styleToUse->logicalWidth(), containerWidthInInlineDirection, cb, region);
2160 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth, renderView);
2161 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth, renderView);
3416 RenderStyle* styleToUse = style();
3418 const Length marginBefore = styleToUse->marginBefore();
3419 const Length marginAfter = styleToUse->marginAfter();
3420 Length logicalTopLength = styleToUse->logicalTop();
3421 Length logicalBottomLength = styleToUse->logicalBottom();
3446 computePositionedLogicalHeightUsing(styleToUse->logicalHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3454 if (!styleToUse->logicalMaxHeight().isUndefined()) {
3457 computePositionedLogicalHeightUsing(styleToUse->logicalMaxHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,
3470 if (!styleToUse->logicalMinHeight().isZero()) {
3473 computePositionedLogicalHeightUsing(styleToUse->logicalMinHeight(), containerBlock, containerLogicalHeight, bordersPlusPadding, logicalHeight,