Searched refs:styleLogicalHeight (Results 1 – 3 of 3) sorted by relevance
104 int styleLogicalHeight = valueForLength(style()->logicalHeight(), 0); in logicalHeightForRowSizing() local108 …styleLogicalHeight += (computedCSSPaddingBefore() + computedCSSPaddingAfter()).floor() + borderBef… in logicalHeightForRowSizing()109 return max(styleLogicalHeight, adjustedLogicalHeight); in logicalHeightForRowSizing()
332 LayoutUnit RenderTable::convertStyleLogicalHeightToComputedHeight(const Length& styleLogicalHeight) in convertStyleLogicalHeightToComputedHeight() argument338 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()
306 LayoutUnit convertStyleLogicalHeightToComputedHeight(const Length& styleLogicalHeight);