diff options
Diffstat (limited to 'WebCore/html/HTMLTableCellElement.cpp')
-rw-r--r-- | WebCore/html/HTMLTableCellElement.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WebCore/html/HTMLTableCellElement.cpp b/WebCore/html/HTMLTableCellElement.cpp index 3395d23..1313393 100644 --- a/WebCore/html/HTMLTableCellElement.cpp +++ b/WebCore/html/HTMLTableCellElement.cpp @@ -269,9 +269,11 @@ void HTMLTableCellElement::setWidth(const String &value) setAttribute(widthAttr, value); } -void HTMLTableCellElement::getSubresourceAttributeStrings(Vector<String>& urls) const +void HTMLTableCellElement::addSubresourceAttributeURLs(ListHashSet<KURL>& urls) const { - urls.append(getAttribute(HTMLNames::backgroundAttr).string()); + HTMLTablePartElement::addSubresourceAttributeURLs(urls); + + addSubresourceURL(urls, document()->completeURL(getAttribute(backgroundAttr))); } } |