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

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

Issue 2518973002: Revert scrollbar freezing. Hopefully some tests will fail. (Closed)
Patch Set: Created 4 years, 1 month 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 | « no previous file | 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/LayoutBlockFlow.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
index 1b64042e1b0b87a92d3e41a6e0e1298a907d381f..3c6b59d257f81b05416e0eb57154de529032b02d 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
@@ -538,8 +538,6 @@ inline bool LayoutBlockFlow::layoutBlockFlow(bool relayoutChildren,
TextAutosizer::LayoutScope textAutosizerLayoutScope(this, &layoutScope);
- bool preferredLogicalWidthsWereDirty = preferredLogicalWidthsDirty();
-
// Reset the flag here instead of in layoutInlineChildren() in case that
// all inline children are removed from this block.
setContainsInlineWithOutlineAndContinuation(false);
@@ -548,17 +546,6 @@ inline bool LayoutBlockFlow::layoutBlockFlow(bool relayoutChildren,
else
layoutBlockChildren(relayoutChildren, layoutScope, beforeEdge, afterEdge);
- bool preferredLogicalWidthsBecameDirty =
- !preferredLogicalWidthsWereDirty && preferredLogicalWidthsDirty();
- if (preferredLogicalWidthsBecameDirty) {
- // The only thing that should dirty preferred widths at this point is the
- // addition of overflow:auto scrollbars in a descendant. To avoid a
- // potential infinite loop, run layout again with auto scrollbars frozen in
- // their current state.
- PaintLayerScrollableArea::FreezeScrollbarsScope freezeScrollbars;
- return layoutBlockFlow(relayoutChildren, pageLogicalHeight, layoutScope);
- }
-
// Expand our intrinsic height to encompass floats.
if (lowestFloatLogicalBottom() > (logicalHeight() - afterEdge) &&
createsNewFormattingContext())
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698