Searched refs:logicalHeightLength (Results 1 – 3 of 3) sorted by relevance
405 Length logicalHeightLength = style()->logicalHeight(); in layout() local407 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()
1183 Length logicalHeightLength = containingBlockStyle->logicalHeight(); in perpendicularContainingBlockLogicalHeight() local1186 if (!logicalHeightLength.isFixed()) { in perpendicularContainingBlockLogicalHeight()1194 return cb->computeContentBoxLogicalHeight(logicalHeightLength.value()); in perpendicularContainingBlockLogicalHeight()2710 void RenderBox::computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxMode… in computePositionedLogicalHeightUsing() argument2723 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()
1101 Length logicalHeightLength = style()->logicalHeight(); in isSelfCollapsingBlock() local1102 bool hasAutoHeight = logicalHeightLength.isAuto(); in isSelfCollapsingBlock()1103 if (logicalHeightLength.isPercent() && !document()->inQuirksMode()) { in isSelfCollapsingBlock()1113 …if (hasAutoHeight || ((logicalHeightLength.isFixed() || logicalHeightLength.isPercent()) && logica… in isSelfCollapsingBlock()