| 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 1af3ab5331ea2ec83cfe2981031592fdffcfa535..d4a1a118d6187b2c2e0ac9abf6ea35d9e93d9b80 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,8 +67,8 @@ TEST_F(NGOutOfFlowLayoutPartTest, FixedInsideAbs) {
|
| NGConstraintSpace* space =
|
| NGConstraintSpace::CreateFromLayoutObject(*block_flow);
|
| NGBlockNode* node = new NGBlockNode(block_flow);
|
| - RefPtr<NGPhysicalFragment> fragment = node->Layout(space);
|
| - EXPECT_EQ(fragment->OutOfFlowDescendants().size(), (size_t)2);
|
| + RefPtr<NGLayoutResult> result = node->Layout(space);
|
| + EXPECT_EQ(result->OutOfFlowDescendants().size(), (size_t)2);
|
|
|
| // Test the final result.
|
| Element* fixed_1 = document().getElementById("fixed1");
|
|
|