| Index: third_party/WebKit/Source/core/dom/TextTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/TextTest.cpp b/third_party/WebKit/Source/core/dom/TextTest.cpp
|
| index a2e218f185964b48a6c8c2c9409dec2515d84c51..a846da09501bebdfcfa7607a47f8b9ee1d079530 100644
|
| --- a/third_party/WebKit/Source/core/dom/TextTest.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/TextTest.cpp
|
| @@ -20,10 +20,10 @@ TEST_F(TextTest, RemoveFirstLetterPseudoElementWhenNoLetter)
|
| document().documentElement()->setInnerHTML("<style>*::first-letter{font:icon;}</style><pre>AB\n</pre>", ASSERT_NO_EXCEPTION);
|
| updateLayoutAndStyleForPainting();
|
|
|
| - RefPtrWillBeRawPtr<Element> pre = document().querySelector("pre", ASSERT_NO_EXCEPTION);
|
| + RawPtr<Element> pre = document().querySelector("pre", ASSERT_NO_EXCEPTION);
|
| Text* text = toText(pre->firstChild());
|
|
|
| - RefPtrWillBeRawPtr<Range> range = Range::create(document(), text, 0, text, 2);
|
| + RawPtr<Range> range = Range::create(document(), text, 0, text, 2);
|
| range->deleteContents(ASSERT_NO_EXCEPTION);
|
| updateLayoutAndStyleForPainting();
|
|
|
|
|