Home | History | Annotate | Download | only in rendering

Lines Matching refs:logicalHeightLength

1532     Length logicalHeightLength = containingBlockStyle->logicalHeight();
1535 if (!logicalHeightLength.isFixed()) {
1544 return cb->adjustContentBoxLogicalHeightForBoxSizing(logicalHeightLength.value());
2331 LayoutUnit RenderBox::computeIntrinsicLogicalContentHeightUsing(const Length& logicalHeightLength, LayoutUnit intrinsicContentHeight, LayoutUnit borderAndPadding) const
2335 if (logicalHeightLength.isMinContent() || logicalHeightLength.isMaxContent() || logicalHeightLength.isFitContent()) {
2342 if (logicalHeightLength.isFillAvailable())
3266 void RenderBox::computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock,
3282 bool logicalHeightIsAuto = logicalHeightLength.isAuto();
3292 if (logicalHeightLength.isIntrinsic())
3293 resolvedLogicalHeight = computeIntrinsicLogicalContentHeightUsing(logicalHeightLength, contentLogicalHeight, bordersPlusPadding);
3295 resolvedLogicalHeight = adjustContentBoxLogicalHeightForBoxSizing(valueForLength(logicalHeightLength, containerLogicalHeight));