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

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

Issue 2877703003: Improve LayoutMultiColumnFlowThread::IsPageLogicalHeightKnown(). (Closed)
Patch Set: Created 3 years, 7 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 540dbd3c8de5a9112a7b7c59384ef6b698f2e479..1201a5f442929a4726bdcb704c9a9f33c07bc53c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
@@ -445,7 +445,7 @@ void LayoutBlockFlow::UpdateBlockLayout(bool relayout_children) {
LayoutChildren(relayout_children, layout_scope);
}
- if (flow_thread && flow_thread->ColumnHeightsChanged()) {
+ if (flow_thread && !flow_thread->FinishLayout()) {
SetChildNeedsLayout(kMarkOnlyThis);
continue;
}

Powered by Google App Engine
This is Rietveld 408576698