Index: Source/core/html/HTMLTableElement.cpp |
diff --git a/Source/core/html/HTMLTableElement.cpp b/Source/core/html/HTMLTableElement.cpp |
index 49c56e979d16cfa8cbefd9c68342bca859433ab8..8759153cb0106c29539e6386dad9314f28f930ea 100644 |
--- a/Source/core/html/HTMLTableElement.cpp |
+++ b/Source/core/html/HTMLTableElement.cpp |
@@ -536,6 +536,11 @@ bool HTMLTableElement::isURLAttribute(const Attribute& attribute) const |
return attribute.name() == backgroundAttr || HTMLElement::isURLAttribute(attribute); |
} |
+bool HTMLTableElement::hasLegalLinkAttribute(const QualifiedName& name) const |
+{ |
+ return name == backgroundAttr || HTMLElement::hasLegalLinkAttribute(name); |
+} |
+ |
PassRefPtr<HTMLCollection> HTMLTableElement::rows() |
{ |
return ensureCachedHTMLCollection(TableRows); |