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