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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCell.h104 int styleLogicalHeight = valueForLength(style()->logicalHeight(), 0); local
108 styleLogicalHeight += (computedCSSPaddingBefore() + computedCSSPaddingAfter()).floor() + borderBefore() + borderAfter();
109 return max(styleLogicalHeight, adjustedLogicalHeight);
H A DRenderTable.cpp330 LayoutUnit RenderTable::convertStyleLogicalHeightToComputedHeight(const Length& styleLogicalHeight) argument
336 if (styleLogicalHeight.isFixed()) {
343 computedLogicalHeight = styleLogicalHeight.value() - borders;
344 } else if (styleLogicalHeight.isPercent())
345 computedLogicalHeight = computePercentageLogicalHeight(styleLogicalHeight);
346 else if (styleLogicalHeight.isIntrinsic())
347 computedLogicalHeight = computeIntrinsicLogicalContentHeightUsing(styleLogicalHeight, logicalHeight() - borderAndPadding, borderAndPadding);
H A DRenderTable.h311 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogicalHeight);

Completed in 69 milliseconds