Searched defs:logicalHeightLength (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBoxModelObject.cpp160 Length logicalHeightLength = style()->logicalHeight(); local
161 if (logicalHeightLength.isAuto())
167 if (!logicalHeightLength.isPercent() || isOutOfFlowPositioned() || document().inQuirksMode())
H A DRenderTable.cpp488 Length logicalHeightLength = style()->logicalHeight(); local
489 if (logicalHeightLength.isIntrinsic() || (logicalHeightLength.isSpecified() && logicalHeightLength.isPositive()))
490 computedLogicalHeight = convertStyleLogicalHeightToComputedHeight(logicalHeightLength);
H A DRenderBox.cpp1532 Length logicalHeightLength = containingBlockStyle->logicalHeight(); local
1535 if (!logicalHeightLength.isFixed()) {
1544 return cb->adjustContentBoxLogicalHeightForBoxSizing(logicalHeightLength.value());
2331 LayoutUnit RenderBox::computeIntrinsicLogicalContentHeightUsing(const Length& logicalHeightLength, LayoutUnit intrinsicContentHeight, LayoutUnit borderAndPadding) const argument
2335 if (logicalHeightLength.isMinContent() || logicalHeightLength.isMaxContent() || logicalHeightLength.isFitContent()) {
2342 if (logicalHeightLength.isFillAvailable())
3266 void RenderBox::computePositionedLogicalHeightUsing(Length logicalHeightLength, const RenderBoxModelObject* containerBlock, argument
3282 bool logicalHeightIsAuto = logicalHeightLength
[all...]

Completed in 61 milliseconds