| Index: Source/core/html/HTMLTablePartElement.cpp
|
| diff --git a/Source/core/html/HTMLTablePartElement.cpp b/Source/core/html/HTMLTablePartElement.cpp
|
| index 2373e5291e619ae72cc9cb923435b94770de594e..79b2b6c1138c131910928faf92ca08c155feea18 100644
|
| --- a/Source/core/html/HTMLTablePartElement.cpp
|
| +++ b/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())
|
| - style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document()->completeURL(url).string())));
|
| + style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document().completeURL(url).string())));
|
| } else if (name == valignAttr) {
|
| if (equalIgnoringCase(value, "top"))
|
| addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, CSSValueTop);
|
|
|