| Index: third_party/WebKit/Source/core/html/HTMLTableElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLTableElement.cpp b/third_party/WebKit/Source/core/html/HTMLTableElement.cpp
|
| index dd167f8caad4859b8e42eea7721ad7013f082085..8125c3642ea4e85633a40445f77e4574119e6034 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLTableElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLTableElement.cpp
|
| @@ -298,7 +298,7 @@ void HTMLTableElement::collectStyleForPresentationAttribute(const QualifiedName&
|
| String url = stripLeadingAndTrailingHTMLSpaces(value);
|
| if (!url.isEmpty()) {
|
| RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
|
| - imageValue->setReferrer(Referrer(document().outgoingReferrer(), document().referrerPolicy()));
|
| + imageValue->setReferrer(Referrer(document().outgoingReferrer(), document().getReferrerPolicy()));
|
| style->setProperty(CSSProperty(CSSPropertyBackgroundImage, imageValue.release()));
|
| }
|
| } else if (name == valignAttr) {
|
|
|