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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h

Issue 2874933005: Distinguish between row (fragmentainer group) height and column (fragmentainer) height. (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/LayoutMultiColumnSet.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h
index 9a3f9451868542675aed348fde6c988172759562..cb18996c3b174dfcea2080aa9b0e5ab58ce3ed57 100644
--- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h
+++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.h
@@ -159,7 +159,7 @@ class CORE_EXPORT LayoutMultiColumnSet : public LayoutBlockFlow {
// group can hold without overflowing.
LayoutUnit FragmentainerGroupCapacity(
const MultiColumnFragmentainerGroup& group) const {
- return group.LogicalHeight() * UsedColumnCount();
+ return group.ColumnLogicalHeight() * UsedColumnCount();
}
LayoutRect FlowThreadPortionRect() const;

Powered by Google App Engine
This is Rietveld 408576698