diff --git a/dom.bs b/dom.bs index 117bc8a72..8645c1ff4 100644 --- a/dom.bs +++ b/dom.bs @@ -1729,7 +1729,7 @@ can only be used to influence an ongoing one. -

Aborting ongoing activities

+

Aborting ongoing activities

Though promises do not have a built-in aborting mechanism, many APIs using them require abort semantics. {{AbortController}} is meant to support these requirements by providing an @@ -5296,7 +5296,7 @@ otherwise "CSS1Compat".

document . {{Document/documentElement}}
Returns the document element. -
collection = document . {{Document/getElementsByTagName(qualifiedName)}} +
collection = document . getElementsByTagName(qualifiedName)

If qualifiedName is "*" returns an {{HTMLCollection}} of all @@ -5307,7 +5307,7 @@ otherwise "CSS1Compat". (Matches case-insensitively against elements in the HTML namespace within an HTML document.) -

collection = document . {{Document/getElementsByTagNameNS(namespace, localName)}} +
collection = document . getElementsByTagNameNS(namespace, localName)

If namespace and localName are "*", returns an @@ -5325,8 +5325,8 @@ otherwise "CSS1Compat". elements whose namespace is namespace and local name is localName. -

collection = document . {{Document/getElementsByClassName(classNames)}} -
collection = element . {{Element/getElementsByClassName(classNames)}} +
collection = document . getElementsByClassName(classNames) +
collection = element . getElementsByClassName(classNames)

Returns an {{HTMLCollection}} of the elements in the object on which the method was invoked (a document or an element) that have all the classes given by classNames. The classNames argument is interpreted as a space-separated list