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. -
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
".
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 . 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 . 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