| 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 80d088397a31799389c5b3cde1c750fc75b79c86..41b1e557a81e39a8c1497214069aa50390fe394f 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -535,7 +535,7 @@ void LayoutTable::SimplifiedNormalFlowLayout() {
|
| section->LayoutIfNeeded();
|
| section->LayoutRows();
|
| section->ComputeOverflowFromCells();
|
| - section->UpdateLayerTransformAfterLayout();
|
| + section->UpdateAfterLayout();
|
| section->AddVisualEffectOverflow();
|
| }
|
| }
|
| @@ -732,7 +732,7 @@ void LayoutTable::UpdateLayout() {
|
|
|
| SetLogicalHeight(LogicalHeight() + section->LogicalHeight());
|
|
|
| - section->UpdateLayerTransformAfterLayout();
|
| + section->UpdateAfterLayout();
|
| section->AddVisualEffectOverflow();
|
|
|
| section = SectionBelow(section);
|
| @@ -754,8 +754,6 @@ void LayoutTable::UpdateLayout() {
|
| old_logical_height != LogicalHeight();
|
| LayoutPositionedObjects(dimension_changed);
|
|
|
| - UpdateLayerTransformAfterLayout();
|
| -
|
| // Layout was changed, so probably borders too.
|
| InvalidateCollapsedBorders();
|
|
|
|
|