diff options
Diffstat (limited to 'WebCore/html/HTMLModElement.cpp')
-rw-r--r-- | WebCore/html/HTMLModElement.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/WebCore/html/HTMLModElement.cpp b/WebCore/html/HTMLModElement.cpp index ab161d9..2d409b0 100644 --- a/WebCore/html/HTMLModElement.cpp +++ b/WebCore/html/HTMLModElement.cpp @@ -39,4 +39,9 @@ PassRefPtr<HTMLModElement> HTMLModElement::create(const QualifiedName& tagName, return adoptRef(new HTMLModElement(tagName, document)); } +bool HTMLModElement::isURLAttribute(Attribute* attribute) const +{ + return attribute->name() == citeAttr; +} + } |