Index: Source/core/rendering/RenderBox.cpp |
diff --git a/Source/core/rendering/RenderBox.cpp b/Source/core/rendering/RenderBox.cpp |
index 2b26048e86636357185829815ee675db7d2804e2..77e96bddb66206c0397158172c2f57611ebcf929 100644 |
--- a/Source/core/rendering/RenderBox.cpp |
+++ b/Source/core/rendering/RenderBox.cpp |
@@ -2676,6 +2676,8 @@ LayoutUnit RenderBox::computePercentageLogicalHeight(const Length& height) const |
availableHeight = containingBlockChild->containingBlockLogicalWidthForContent(); |
else if (hasOverrideContainingBlockLogicalHeight()) |
availableHeight = overrideContainingBlockContentLogicalHeight(); |
+ else if (cb->hasOverrideContainingBlockLogicalHeight()) |
+ availableHeight = cb->overrideContainingBlockContentLogicalHeight(); |
else if (cb->isTableCell()) { |
if (!skippedAutoHeightContainingBlock) { |
// Table cells violate what the CSS spec says to do with heights. Basically we |