| Index: third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp b/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
|
| index f104c50b4de9411822bc0c00faddbdfda26059e2..83b5e8678f42f179f707b37afe8afc876516ed21 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTablePartElement.cpp
|
| @@ -53,7 +53,7 @@ void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedN
|
| } else 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->setReferrer(Referrer(document().outgoingReferrer(), document().referrerPolicy()));
|
| style->setProperty(CSSProperty(CSSPropertyBackgroundImage, imageValue.release()));
|
| }
|
|
|