| Index: third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp b/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| index 8528b8b46aec0000a0eec4a953f3c81f5c4ca2f4..8e6a9c346a822b3d0353ae22ef0368ae51c2be92 100644
|
| --- a/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| +++ b/third_party/WebKit/Source/web/tests/NGInlineLayoutTest.cpp
|
| @@ -48,9 +48,9 @@ TEST_F(NGInlineLayoutTest, BlockWithSingleTextNode) {
|
| NGConstraintSpace* constraintSpace = constraintSpaceForElement(blockFlow);
|
| NGBlockNode* node = new NGBlockNode(blockFlow);
|
|
|
| - RefPtr<NGPhysicalFragment> fragment =
|
| + RefPtr<NGLayoutResult> result =
|
| NGBlockLayoutAlgorithm(node, constraintSpace).Layout();
|
| - EXPECT_TRUE(fragment);
|
| + EXPECT_TRUE(result);
|
|
|
| String expectedText("Hello World!");
|
| EXPECT_EQ(expectedText, toNGInlineNode(node->FirstChild())->Text(0, 12));
|
| @@ -72,9 +72,9 @@ TEST_F(NGInlineLayoutTest, BlockWithTextAndAtomicInline) {
|
| NGConstraintSpace* constraintSpace = constraintSpaceForElement(blockFlow);
|
| NGBlockNode* node = new NGBlockNode(blockFlow);
|
|
|
| - RefPtr<NGPhysicalFragment> fragment =
|
| + RefPtr<NGLayoutResult> result =
|
| NGBlockLayoutAlgorithm(node, constraintSpace).Layout();
|
| - EXPECT_TRUE(fragment);
|
| + EXPECT_TRUE(result);
|
|
|
| String expectedText("Hello ");
|
| expectedText.append(objectReplacementCharacter);
|
|
|