Home
last modified time | relevance | path

Searched refs:logicalHeightLength (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
DRenderTable.cpp405 Length logicalHeightLength = style()->logicalHeight(); in layout() local
407 if (logicalHeightLength.isFixed()) { in layout()
409 …computedLogicalHeight = logicalHeightLength.value() - (borderAndPaddingBefore + borderAndPaddingAf… in layout()
410 } else if (logicalHeightLength.isPercent()) in layout()
411 computedLogicalHeight = computePercentageLogicalHeight(logicalHeightLength); in layout()
DRenderBox.cpp1183 Length logicalHeightLength = containingBlockStyle->logicalHeight(); in perpendicularContainingBlockLogicalHeight() local
1186 if (!logicalHeightLength.isFixed()) { in perpendicularContainingBlockLogicalHeight()
1194 return cb->computeContentBoxLogicalHeight(logicalHeightLength.value()); in perpendicularContainingBlockLogicalHeight()
2710 void RenderBox::computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxMode… in computePositionedLogicalHeightUsing() argument
2723 bool logicalHeightIsAuto = logicalHeightLength.isAuto(); in computePositionedLogicalHeightUsing()
2729 logicalHeightLength.setValue(Fixed, contentLogicalHeight); in computePositionedLogicalHeightUsing()
2745 …logicalHeightValue = computeContentBoxLogicalHeight(logicalHeightLength.calcValue(containerLogical… in computePositionedLogicalHeightUsing()
2812 …logicalHeightValue = computeContentBoxLogicalHeight(logicalHeightLength.calcValue(containerLogical… in computePositionedLogicalHeightUsing()
2820 …logicalHeightValue = computeContentBoxLogicalHeight(logicalHeightLength.calcValue(containerLogical… in computePositionedLogicalHeightUsing()
DRenderBlock.cpp1101 Length logicalHeightLength = style()->logicalHeight(); in isSelfCollapsingBlock() local
1102 bool hasAutoHeight = logicalHeightLength.isAuto(); in isSelfCollapsingBlock()
1103 if (logicalHeightLength.isPercent() && !document()->inQuirksMode()) { in isSelfCollapsingBlock()
1113 …if (hasAutoHeight || ((logicalHeightLength.isFixed() || logicalHeightLength.isPercent()) && logica… in isSelfCollapsingBlock()