Index: Source/core/rendering/RenderTable.cpp |
diff --git a/Source/core/rendering/RenderTable.cpp b/Source/core/rendering/RenderTable.cpp |
index a6763ab1a2b99d7d0390816eb266b542597af3f1..a3f626ad065dab6490374307aca0d156e21a81ff 100644 |
--- a/Source/core/rendering/RenderTable.cpp |
+++ b/Source/core/rendering/RenderTable.cpp |
@@ -381,7 +381,7 @@ void RenderTable::layoutCaption(RenderTableCaption* caption) |
} |
caption->setLogicalLocation(LayoutPoint(caption->marginStart(), captionLogicalTop)); |
- if (!selfNeedsLayout() && caption->checkForRepaintDuringLayout()) |
+ if (!selfNeedsLayout() && caption->checkForPaintInvalidationDuringLayout()) |
caption->repaintDuringLayoutIfMoved(captionRect); |
setLogicalHeight(logicalHeight() + caption->logicalHeight() + collapsedMarginBeforeForChild(caption) + collapsedMarginAfterForChild(caption)); |
@@ -425,7 +425,7 @@ void RenderTable::layout() |
// to call this before we call borderStart/borderEnd to avoid getting a stale value. |
recalcBordersInRowDirection(); |
- LayoutRepainter repainter(*this, checkForRepaintDuringLayout()); |
+ LayoutRepainter repainter(*this, checkForPaintInvalidationDuringLayout()); |
SubtreeLayoutScope layouter(*this); |