| Index: third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp b/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| index 4e53552d1a3529b2ba96321c3b78f68d45c307e5..bd0ec9ca2e97ef75f72b66eff69dcf4b1859ff8c 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLBodyElement.cpp
|
| @@ -61,7 +61,7 @@ void HTMLBodyElement::collectStyleForPresentationAttribute(const QualifiedName&
|
| if (name == backgroundAttr) {
|
| String url = stripLeadingAndTrailingHTMLSpaces(value);
|
| if (!url.isEmpty()) {
|
| - RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
|
| + RawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
|
| imageValue->setInitiator(localName());
|
| imageValue->setReferrer(Referrer(document().outgoingReferrer(), document().referrerPolicy()));
|
| style->setProperty(CSSProperty(CSSPropertyBackgroundImage, imageValue.release()));
|
|
|