Home
last modified time | relevance | path

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

/external/webkit/Source/WebCore/rendering/
DRenderBox.cpp1828 int heightResult; in computeLogicalHeight() local
1833 heightResult = -1; in computeLogicalHeight()
1836 heightResult = computeLogicalHeightUsing(style()->logicalHeight()); in computeLogicalHeight()
1837 if (heightResult == -1) in computeLogicalHeight()
1838 heightResult = logicalHeight(); in computeLogicalHeight()
1840 …int maxH = style()->logicalMaxHeight().isUndefined() ? heightResult : computeLogicalHeightUsing(st… in computeLogicalHeight()
1842 maxH = heightResult; in computeLogicalHeight()
1843 heightResult = min(maxH, heightResult); in computeLogicalHeight()
1844 heightResult = max(minH, heightResult); in computeLogicalHeight()
1849 heightResult = h.value() + borderAndPaddingLogicalHeight(); in computeLogicalHeight()
[all …]