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

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

Issue 2960233002: [LayoutNG] Move bfc_offset_, end_margin_sturt_ to NGLayoutResult (Closed)
Patch Set: OOF -> OutOfFlow Created 3 years, 6 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 37bb93d60684ef4824b65eadc8fddf6a98b74d9c..2aadabcaa28cb47f50b8e651de38a9b16c559028 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
@@ -69,7 +69,7 @@ TEST_F(NGOutOfFlowLayoutPartTest, FixedInsideAbs) {
NGConstraintSpace::CreateFromLayoutObject(*block_flow);
NGBlockNode node(block_flow);
RefPtr<NGLayoutResult> result = node.Layout(space.Get());
- EXPECT_EQ(result->OutOfFlowDescendants().size(), (size_t)2);
+ EXPECT_EQ(result->OutOfFlowPositionedDescendants().size(), (size_t)2);
// Test the final result.
Element* fixed_1 = GetDocument().getElementById("fixed1");

Powered by Google App Engine
This is Rietveld 408576698