| Index: third_party/WebKit/Source/web/WebElementTest.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebElementTest.cpp b/third_party/WebKit/Source/web/WebElementTest.cpp
|
| index fd9a356e835d59691f8d42ab4ab03ca243ff6aa7..3395001d597036fe5351235b8d83f8f1633cc521 100644
|
| --- a/third_party/WebKit/Source/web/WebElementTest.cpp
|
| +++ b/third_party/WebKit/Source/web/WebElementTest.cpp
|
| @@ -115,7 +115,7 @@ TEST_F(WebElementTest, HasNonEmptyLayoutSize)
|
| EXPECT_TRUE(testElement().hasNonEmptyLayoutSize());
|
|
|
| insertHTML(s_emptyBlock);
|
| - RawPtr<ShadowRoot> root = document().getElementById("testElement")->createShadowRootInternal(ShadowRootType::V0, ASSERT_NO_EXCEPTION);
|
| + ShadowRoot* root = document().getElementById("testElement")->createShadowRootInternal(ShadowRootType::V0, ASSERT_NO_EXCEPTION);
|
| root->setInnerHTML("<div>Hello World</div>", ASSERT_NO_EXCEPTION);
|
| EXPECT_TRUE(testElement().hasNonEmptyLayoutSize());
|
| }
|
|
|