You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If force is not given or is true, create an attribute whose local name is qualifiedName, value is the empty string, and node document is the context object’s node document, then append this attribute to the context object, and then return true.
Return false.
Note the need for a bunch of "then" in the first nested case. This might be easier to read as:
If attribute is null, then:
If force is given and is false, return false.
Create an attribute whose local name is qualifiedName, value is the empty string, and node document is the context object’s node document.
Append this attribute to the context object.
Return true.
or so. Similar for the case when attribute is not null.
The text was updated successfully, but these errors were encountered:
The current spec does this:
If attribute is null, then:
Note the need for a bunch of "then" in the first nested case. This might be easier to read as:
If attribute is null, then:
If force is given and is false, return false.
Create an attribute whose local name is qualifiedName, value is the empty string, and node document is the context object’s node document.
Append this attribute to the context object.
Return true.
or so. Similar for the case when attribute is not null.
The text was updated successfully, but these errors were encountered: