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

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

Issue 2839183002: Refactor scroll updates after layout. (Closed)
Patch Set: rebase 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 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();
« 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