summaryrefslogtreecommitdiff
path: root/Source/WebCore/dom/Attr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/Attr.cpp')
-rw-r--r--Source/WebCore/dom/Attr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebCore/dom/Attr.cpp b/Source/WebCore/dom/Attr.cpp
index 95c3fe052..57efe2982 100644
--- a/Source/WebCore/dom/Attr.cpp
+++ b/Source/WebCore/dom/Attr.cpp
@@ -130,7 +130,7 @@ void Attr::setValue(const AtomicString& value, ExceptionCode&)
setValue(value);
if (m_element)
- m_element->didModifyAttribute(elementAttribute());
+ m_element->didModifyAttribute(qualifiedName(), value);
}
void Attr::setNodeValue(const String& v, ExceptionCode& ec)
@@ -182,7 +182,7 @@ void Attr::childrenChanged(bool, Node*, Node*, int)
m_standaloneValue = newValue;
if (m_element)
- m_element->attributeChanged(elementAttribute());
+ m_element->attributeChanged(qualifiedName(), newValue);
}
bool Attr::isId() const