summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/dom/NamedNodeMap.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/dom/NamedNodeMap.cpp')
-rw-r--r--Source/WebCore/dom/NamedNodeMap.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/WebCore/dom/NamedNodeMap.cpp b/Source/WebCore/dom/NamedNodeMap.cpp
index bc56f7e..0e2861e 100644
--- a/Source/WebCore/dom/NamedNodeMap.cpp
+++ b/Source/WebCore/dom/NamedNodeMap.cpp
@@ -359,6 +359,8 @@ bool NamedNodeMap::mappedMapsEquivalent(const NamedNodeMap* otherMap) const
Attribute* otherAttr = otherMap->getAttributeItem(attr->name());
if (!otherAttr || attr->value() != otherAttr->value())
return false;
+ if (!attr->decl()->propertiesEqual(otherAttr->decl()))
+ return false;
}
}
return true;