summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/HTMLMapElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLMapElement.cpp')
-rw-r--r--Source/WebCore/html/HTMLMapElement.cpp6
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()