| Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| index 0605d5679b6a4628849127da43ef46c1e95dee62..7b57b188a566a6211eca57a5b517e129959dd3d8 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -538,7 +538,7 @@ void LayoutTable::SimplifiedNormalFlowLayout() {
|
| section->LayoutIfNeeded();
|
| section->LayoutRows();
|
| section->ComputeOverflowFromCells();
|
| - section->UpdateLayerTransformAfterLayout();
|
| + section->UpdateAfterLayout();
|
| section->AddVisualEffectOverflow();
|
| }
|
| }
|
| @@ -735,7 +735,7 @@ void LayoutTable::UpdateLayout() {
|
|
|
| SetLogicalHeight(LogicalHeight() + section->LogicalHeight());
|
|
|
| - section->UpdateLayerTransformAfterLayout();
|
| + section->UpdateAfterLayout();
|
| section->AddVisualEffectOverflow();
|
|
|
| section = SectionBelow(section);
|
| @@ -757,8 +757,6 @@ void LayoutTable::UpdateLayout() {
|
| old_logical_height != LogicalHeight();
|
| LayoutPositionedObjects(dimension_changed);
|
|
|
| - UpdateLayerTransformAfterLayout();
|
| -
|
| ComputeOverflow(ClientLogicalBottom());
|
| UpdateAfterLayout();
|
|
|
|
|