Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTableCell.h104 int styleLogicalHeight = valueForLength(style()->logicalHeight(), 0); in logicalHeightForRowSizing() local
108styleLogicalHeight += (computedCSSPaddingBefore() + computedCSSPaddingAfter()).floor() + borderBef… in logicalHeightForRowSizing()
109 return max(styleLogicalHeight, adjustedLogicalHeight); in logicalHeightForRowSizing()
DRenderTable.cpp332 LayoutUnit RenderTable::convertStyleLogicalHeightToComputedHeight(const Length& styleLogicalHeight) in convertStyleLogicalHeightToComputedHeight() argument
338 if (styleLogicalHeight.isFixed()) { in convertStyleLogicalHeightToComputedHeight()
345 computedLogicalHeight = styleLogicalHeight.value() - borders; in convertStyleLogicalHeightToComputedHeight()
346 } else if (styleLogicalHeight.isPercent()) in convertStyleLogicalHeightToComputedHeight()
347 computedLogicalHeight = computePercentageLogicalHeight(styleLogicalHeight); in convertStyleLogicalHeightToComputedHeight()
348 else if (styleLogicalHeight.isIntrinsic()) in convertStyleLogicalHeightToComputedHeight()
349 …computedLogicalHeight = computeIntrinsicLogicalContentHeightUsing(styleLogicalHeight, logicalHeigh… in convertStyleLogicalHeightToComputedHeight()
DRenderTable.h306 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogicalHeight);