diff --git a/dom.bs b/dom.bs index a7b134b1d..d22cdefd1 100644 --- a/dom.bs +++ b/dom.bs @@ -5679,7 +5679,10 @@ when invoked, must run these steps:
A {{NamedNodeMap}} object's supported property names, all unenumerable, are the
qualified names of the attributes in the
-attribute list, in order.
+attribute list, with duplicates omitted, in order.
+
The getNamedItem(qualifiedName)
method, when invoked, must return the result of
diff --git a/dom.html b/dom.html
index b46c78d46..cedad1e75 100644
--- a/dom.html
+++ b/dom.html
@@ -69,7 +69,7 @@
A NamedNodeMap
object’s supported property names, all unenumerable, are the qualified names of the attributes in the attribute list, in order.
A NamedNodeMap
object’s supported property names, all unenumerable, are the qualified names of the attributes in the attribute list, with duplicates omitted, in order.
The getNamedItem(qualifiedName)
method, when invoked, must return the result of getting an attribute given qualifiedName and element.
The getNamedItemNS(namespace, localName) method, when invoked, must return the result of getting an attribute given namespace, localName, and element.
The setNamedItem(attr)
and setNamedItemNS(attr)
methods, when invoked, must return the result of setting an attribute given attr and element. Rethrow any exceptions.