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

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

Issue 1558963003: Recalculate column heights as part of column set layout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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/LayoutBlockFlow.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
index 859ad0c4e5a03b93d16804b6c2338f3745f8c2b6..5f8434d66a38c52870439c67f87e47f4e59c420a 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
@@ -390,7 +390,7 @@ inline bool LayoutBlockFlow::layoutBlockFlow(bool relayoutChildren, LayoutUnit &
setLogicalHeight(lowestFloatLogicalBottom() + afterEdge);
if (LayoutMultiColumnFlowThread* flowThread = multiColumnFlowThread()) {
- if (flowThread->recalculateColumnHeights()) {
+ if (flowThread->columnHeightsChanged()) {
setChildNeedsLayout(MarkOnlyThis);
return false;
}

Powered by Google App Engine
This is Rietveld 408576698