Index: Source/core/html/HTMLTableRowElement.cpp |
diff --git a/Source/core/html/HTMLTableRowElement.cpp b/Source/core/html/HTMLTableRowElement.cpp |
index 2938abbc628716045e0528215fa67efd8e895919..5dbf021877ad49c057b2b0dfb79df4c616536803 100644 |
--- a/Source/core/html/HTMLTableRowElement.cpp |
+++ b/Source/core/html/HTMLTableRowElement.cpp |
@@ -44,6 +44,11 @@ HTMLTableRowElement::HTMLTableRowElement(Document& document) |
ScriptWrappable::init(this); |
} |
+bool HTMLTableRowElement::hasLegalLinkAttribute(const QualifiedName& name) const |
+{ |
+ return name == backgroundAttr || HTMLTablePartElement::hasLegalLinkAttribute(name); |
+} |
+ |
PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(Document& document) |
{ |
return adoptRef(new HTMLTableRowElement(document)); |