Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderBox.cpp1840 int heightResult; in computeLogicalHeight() local
1845 heightResult = -1; in computeLogicalHeight()
1848 heightResult = computeLogicalHeightUsing(style()->logicalHeight()); in computeLogicalHeight()
1849 if (heightResult == -1) in computeLogicalHeight()
1850 heightResult = logicalHeight(); in computeLogicalHeight()
1852 …int maxH = style()->logicalMaxHeight().isUndefined() ? heightResult : computeLogicalHeightUsing(st… in computeLogicalHeight()
1854 maxH = heightResult; in computeLogicalHeight()
1855 heightResult = min(maxH, heightResult); in computeLogicalHeight()
1856 heightResult = max(minH, heightResult); in computeLogicalHeight()
1861 heightResult = h.value() + borderAndPaddingLogicalHeight(); in computeLogicalHeight()
[all …]