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