Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
index e51a52a501388e39453a156c45bffff9e99fd5d9..95d96e9876b1786cfc4122ee6dca23bcc6cdd7a5 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp |
@@ -180,7 +180,7 @@ void LayoutTableRow::layout() |
for (LayoutTableCell* cell = firstCell(); cell; cell = cell->nextCell()) { |
SubtreeLayoutScope layouter(*cell); |
if (!cell->needsLayout()) |
- cell->markForPaginationRelayoutIfNeeded(layouter); |
+ markChildForPaginationRelayoutIfNeeded(*cell, layouter); |
if (cell->needsLayout()) |
cell->layout(); |
// We're laying out each cell here to establish its raw logical height so it can be used to |