diff --git a/dom.bs b/dom.bs index 491e2691..162c6513 100644 --- a/dom.bs +++ b/dom.bs @@ -54,9 +54,11 @@ spec:html; type:element
This specification depends on the Infra Standard. [[!INFRA]]
Some of the terms used in this specification are defined in Encoding, -Selectors, Web IDL, XML, and Namespaces in XML. +Selectors, Trusted Types, Web IDL, XML, and +Namespaces in XML. [[!ENCODING]] [[!SELECTORS4]] +[[!TRUSTED-TYPES]] [[!WEBIDL]] [[!XML]] [[!XML-NAMES]] @@ -6520,8 +6522,8 @@ interface Element : Node { sequence<DOMString> getAttributeNames(); DOMString? getAttribute(DOMString qualifiedName); DOMString? getAttributeNS(DOMString? namespace, DOMString localName); - [CEReactions] undefined setAttribute(DOMString qualifiedName, DOMString value); - [CEReactions] undefined setAttributeNS(DOMString? namespace, DOMString qualifiedName, DOMString value); + [CEReactions] undefined setAttribute(DOMString qualifiedName, (TrustedType or DOMString) value); + [CEReactions] undefined setAttributeNS(DOMString? namespace, DOMString qualifiedName, (TrustedType or DOMString) value); [CEReactions] undefined removeAttribute(DOMString qualifiedName); [CEReactions] undefined removeAttributeNS(DOMString? namespace, DOMString localName); [CEReactions] boolean toggleAttribute(DOMString qualifiedName, optional boolean force); @@ -6946,6 +6948,14 @@ steps: value. +
To verify attribute value given a {{TrustedType}} or string value, an +attribute attribute, and an Element element: + +
Return the result of calling get Trusted Types-compliant attribute value + given attribute, with element, and value. [[!TRUSTED-TYPES]] +
Let verifiedValue be the result of + verifying an attribute value given attr's + value, attr, and element. +
If attr's element is neither null nor element, throw an "{{InUseAttributeError!!exception}}" {{DOMException}}. @@ -7013,6 +7027,8 @@ string namespace (default null):
Otherwise, append attr to element. +
Set attr's value to verifiedValue. +
Return oldAttr.
Let attribute be the first attribute in this's attribute list whose qualified name is qualifiedName, and null otherwise. - + +
If attribute is null, then set attribute to an attribute + whose local name is qualifiedName, value is + value, and node document is this's node document. + +
Let verifiedValue be the result of + verifying an attribute value given value, + attribute, and this. + +
Set attribute to the first attribute in this's + attribute list whose qualified name is qualifiedName, + and null otherwise.
If attribute is null, create an attribute whose local name is qualifiedName, value is - value, and node document is this's node document, - then append this attribute to this, and then return. + verifiedValue, and node document is this's + node document, then append this attribute + to this, and then return. -
Change attribute to value. +
Change attribute to verifiedValue.
The @@ -7312,8 +7340,32 @@ method steps are:
Let namespace, prefix, and localName be the result of passing namespace and qualifiedName to validate and extract. -
Set an attribute value for this using localName, value, - and also prefix and namespace. +
Let attribute be the result of + getting an attribute given + namespace, localName, and element. + +
If attribute is null, then set attribute to an attribute whose + namespace is namespace, namespace prefix is + prefix, local name is localName, value is + value, and node document is element's + node document. + +
Let verifiedValue be the result of + verifying an attribute value given value, + attribute, and element. + +
Set attribute to the result of + getting an attribute given + namespace, localName, and element. + +
If attribute is null, create an attribute whose namespace + is namespace, namespace prefix is prefix, + local name is localName, value is + verifiedValue, and node document is element's + node document, then append this attribute to + element, and then return. + +
Change attribute to verifiedValue.
The @@ -7891,7 +7943,24 @@ string value, run these steps:
If attribute's element is null, then set attribute's value to value. -
Otherwise, change attribute to value. +
Otherwise: + +
Let originalElement be attribute's element. + +
Let verifiedValue be the result of + verifying an attribute value given value, + attribute, and this. + +
If attribute's element is null, then set attribute's + value to verifiedValue, and return. + +
If attribute's element is not originalElement, then + return. + +
Change attribute to verifiedValue. +
The {{Attr/value}} setter steps are to set an existing attribute value with this