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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part_test.cc

Issue 2714803002: [LayoutNG] Allow block-flow layout to be fragmented using new approach. (Closed)
Patch Set: rebase. Created 3 years, 10 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/ng/ng_out_of_flow_layout_part_test.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part_test.cc
index d4a1a118d6187b2c2e0ac9abf6ea35d9e93d9b80..a8e260215ec68c12e70211c8ff901efa67a457a8 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part_test.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_out_of_flow_layout_part_test.cc
@@ -67,7 +67,8 @@ TEST_F(NGOutOfFlowLayoutPartTest, FixedInsideAbs) {
NGConstraintSpace* space =
NGConstraintSpace::CreateFromLayoutObject(*block_flow);
NGBlockNode* node = new NGBlockNode(block_flow);
- RefPtr<NGLayoutResult> result = node->Layout(space);
+ RefPtr<NGLayoutResult> result =
+ node->Layout(space, /* break_token */ nullptr);
EXPECT_EQ(result->OutOfFlowDescendants().size(), (size_t)2);
// Test the final result.

Powered by Google App Engine
This is Rietveld 408576698