diff --git a/dom.bs b/dom.bs index 6eefb8169..2dfbaa6a6 100644 --- a/dom.bs +++ b/dom.bs @@ -6185,10 +6185,10 @@ given a document, localName, namespace, and opt attribute attribute to value, run these steps:
Set attribute's value to value. +
Handle attribute changes for attribute with attribute's element, attribute's value, and value. - -
Set attribute's value to value.
To append an @@ -6196,36 +6196,34 @@ given a document, localName, namespace, and opt steps:
Handle attribute changes for attribute with element, null, and - attribute's value. -
Append attribute to element's attribute list.
Set attribute's element to element. + +
Handle attribute changes for attribute with element, null, and + attribute's value.
To remove an attribute attribute, run these steps:
Handle attribute changes for attribute with attribute's - element, attribute's value, and null. +
Let element be attribute's element.
Set attribute's element to null. + +
Handle attribute changes for attribute with element, + attribute's value, and null.
To replace an attribute oldAttr with an attribute newAttr, run these steps:
Handle attribute changes for oldAttr with oldAttr's - element, oldAttr's value, and newAttr's - value. -
Replace oldAttr by newAttr in oldAttr's element's attribute list. @@ -6233,6 +6231,10 @@ steps: element.
Set oldAttr's element to null. + +
Handle attribute changes for oldAttr with newAttr's + element, oldAttr's value, and newAttr's + value.