Index: Source/core/rendering/RenderTable.cpp |
diff --git a/Source/core/rendering/RenderTable.cpp b/Source/core/rendering/RenderTable.cpp |
index df9a9aec096035c33130814be2ff2e569aa95ab6..902d681359aca0963c61467b6887f531f531afe2 100644 |
--- a/Source/core/rendering/RenderTable.cpp |
+++ b/Source/core/rendering/RenderTable.cpp |
@@ -393,6 +393,20 @@ void RenderTable::simplifiedNormalFlowLayout() |
} |
} |
+bool RenderTable::recalcChildOverflowAfterStyleChange() |
+{ |
+ ASSERT(childNeedsOverflowRecalcAfterStyleChange()); |
+ clearChildNeedsOverflowRecalcAfterStyleChange(); |
+ |
+ bool childrenOverflowChanged = false; |
+ for (RenderTableSection* section = topSection(); section; section = sectionBelow(section)) { |
+ if (!section->childNeedsOverflowRecalcAfterStyleChange()) |
+ continue; |
+ childrenOverflowChanged |= section->recalcChildOverflowAfterStyleChange(); |
+ } |
+ return childrenOverflowChanged; |
+} |
+ |
void RenderTable::layout() |
{ |
ASSERT(needsLayout()); |