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

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

Issue 2336323002: [M54] Freeze auto scrollbars while calculating table row height. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
index f6145c595db79e71b0385dda2e2fbf366ab2e0c4..5711d65f2c6a442910120e9fc9692170852c398e 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
@@ -32,6 +32,7 @@
#include "core/layout/LayoutTableRow.h"
#include "core/layout/LayoutView.h"
#include "core/layout/SubtreeLayoutScope.h"
+#include "core/paint/PaintLayerScrollableArea.h"
#include "core/paint/TableSectionPainter.h"
#include "wtf/HashSet.h"
#include <algorithm>
@@ -782,6 +783,7 @@ int LayoutTableSection::calcRowLogicalHeight()
}
if (cell->rowIndex() == r && cell->hasOverrideLogicalContentHeight()) {
+ PaintLayerScrollableArea::FreezeScrollbarsScope freezeScrollbars;
cell->clearIntrinsicPadding();
cell->clearOverrideSize();
cell->forceChildLayout();
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/table/row-height-recalc-terminates.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698