diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2012-02-09 14:16:12 +0100 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2012-02-09 14:16:12 +0100 |
commit | 03e12282df9aa1e1fb05a8b90f1cfc2e08764cec (patch) | |
tree | 52599cd0ab782b1768e23ad176f7618f98333cb6 /Source/WebCore/html/HTMLMapElement.cpp | |
parent | cd44dc59cdfc39534aef4d417e9f3c412e3be139 (diff) | |
download | qtwebkit-03e12282df9aa1e1fb05a8b90f1cfc2e08764cec.tar.gz |
Imported WebKit commit e09a82039aa4273ab318b71122e92d8e5f233525 (http://svn.webkit.org/repository/webkit/trunk@107223)
Diffstat (limited to 'Source/WebCore/html/HTMLMapElement.cpp')
-rw-r--r-- | Source/WebCore/html/HTMLMapElement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/WebCore/html/HTMLMapElement.cpp b/Source/WebCore/html/HTMLMapElement.cpp index bf4a3b333..2e467137a 100644 --- a/Source/WebCore/html/HTMLMapElement.cpp +++ b/Source/WebCore/html/HTMLMapElement.cpp @@ -98,7 +98,7 @@ HTMLImageElement* HTMLMapElement::imageElement() return 0; } -void HTMLMapElement::parseMappedAttribute(Attribute* attribute) +void HTMLMapElement::parseAttribute(Attribute* attribute) { // FIXME: This logic seems wrong for XML documents. // Either the id or name will be used depending on the order the attributes are parsed. @@ -107,7 +107,7 @@ void HTMLMapElement::parseMappedAttribute(Attribute* attribute) if (isIdAttributeName(attrName) || attrName == nameAttr) { if (isIdAttributeName(attrName)) { // Call base class so that hasID bit gets set. - HTMLElement::parseMappedAttribute(attribute); + HTMLElement::parseAttribute(attribute); if (document()->isHTMLDocument()) return; } @@ -123,7 +123,7 @@ void HTMLMapElement::parseMappedAttribute(Attribute* attribute) return; } - HTMLElement::parseMappedAttribute(attribute); + HTMLElement::parseAttribute(attribute); } HTMLCollection* HTMLMapElement::areas() |