| Index: Source/core/html/HTMLTableElement.cpp
|
| diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp
|
| index 43a5367a9b34be449ae6902c0da1fc6c44467118..70503c29cc9709a7fa31feaec040e991f103fc12 100644
|
| --- a/Source/core/html/HTMLTableElement.cpp
|
| +++ b/Source/core/html/HTMLTableElement.cpp
|
| @@ -304,11 +304,8 @@
|
| addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value);
|
| else if (name == backgroundAttr) {
|
| String url = stripLeadingAndTrailingHTMLSpaces(value);
|
| - if (!url.isEmpty()) {
|
| - RefPtrWillBeRawPtr<CSSImageValue> imageValue = CSSImageValue::create(url, document().completeURL(url));
|
| - imageValue->setReferrer(document().outgoingReferrer());
|
| - style->setProperty(CSSProperty(CSSPropertyBackgroundImage, imageValue.release()));
|
| - }
|
| + if (!url.isEmpty())
|
| + style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(url, document().completeURL(url))));
|
| } else if (name == valignAttr) {
|
| if (!value.isEmpty())
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value);
|
|
|