| 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 61d465a50dff4e3937facc5b3cb433220c581db2..d2980040fcc290a115ad78f34391c488c9f2a398 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| @@ -190,14 +190,11 @@ void LayoutTableRow::layout() {
|
| ASSERT(needsLayout());
|
| LayoutAnalyzer::Scope analyzer(*this);
|
|
|
| - // Table rows do not add translation.
|
| - LayoutState state(*this, LayoutSize());
|
| -
|
| for (LayoutTableCell* cell = firstCell(); cell; cell = cell->nextCell()) {
|
| SubtreeLayoutScope layouter(*cell);
|
| cell->setLogicalTop(logicalTop());
|
| if (!cell->needsLayout())
|
| - markChildForPaginationRelayoutIfNeeded(*cell, layouter);
|
| + section()->markChildForPaginationRelayoutIfNeeded(*cell, layouter);
|
| if (cell->needsLayout())
|
| cell->layout();
|
| }
|
|
|