Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(457)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTable.cpp

Issue 2816873002: Update PaintLayer size during layout, not after.
Patch Set: Speculatively remove call to UpdateScrollbars() Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutReplaced.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutTableSection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698