Home | History | Annotate | Download | only in rendering

Lines Matching defs:logicalHeightLength

1801     Length logicalHeightLength = containingBlockStyle->logicalHeight();
1804 if (!logicalHeightLength.isFixed()) {
1811 return cb->adjustContentBoxLogicalHeightForBoxSizing(logicalHeightLength.value());
2603 LayoutUnit RenderBox::computeIntrinsicLogicalContentHeightUsing(const Length& logicalHeightLength, LayoutUnit intrinsicContentHeight, LayoutUnit borderAndPadding) const
2607 if (logicalHeightLength.isMinContent() || logicalHeightLength.isMaxContent() || logicalHeightLength.isFitContent()) {
2614 if (logicalHeightLength.isFillAvailable())
3507 void RenderBox::computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock,
3523 bool logicalHeightIsAuto = logicalHeightLength.isAuto();
3533 if (logicalHeightLength.isIntrinsic())
3534 resolvedLogicalHeight = computeIntrinsicLogicalContentHeightUsing(logicalHeightLength, contentLogicalHeight, bordersPlusPadding);
3536 resolvedLogicalHeight = adjustContentBoxLogicalHeightForBoxSizing(valueForLength(logicalHeightLength, containerLogicalHeight));