Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
annevk committed Jan 20, 2025
1 parent d979ec9 commit 7261e45
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,7 @@ can only be used to influence an ongoing one.



<h2 id=aborting-ongoing-activities>Aborting ongoing activities</h3>
<h2 id=aborting-ongoing-activities>Aborting ongoing activities</h2>

<p>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
Expand Down Expand Up @@ -5296,7 +5296,7 @@ otherwise "<code>CSS1Compat</code>".
<dt><var>document</var> . {{Document/documentElement}}
<dd>Returns the <a>document element</a>.

<dt><var>collection</var> = <var>document</var> . {{Document/getElementsByTagName(qualifiedName)}}</code>
<dt><code><var>collection</var> = <var>document</var> . <a method for=Document lt="getElementsByTagName(qualifiedName)">getElementsByTagName</a>(<var>qualifiedName</var>)</code>

<dd>
<p>If <var>qualifiedName</var> is "<code>*</code>" returns an {{HTMLCollection}} of all
Expand All @@ -5307,7 +5307,7 @@ otherwise "<code>CSS1Compat</code>".
(Matches case-insensitively against <a for=/>elements</a> in the <a>HTML namespace</a> within an
<a>HTML document</a>.)

<dt><var>collection</var> = <var>document</var> . {{Document/getElementsByTagNameNS(namespace, localName)}}</code>
<dt><code><var>collection</var> = <var>document</var> . <a method for=Document lt="getElementsByTagNameNS(namespace, localName)">getElementsByTagNameNS</a>(<var>namespace</var>, <var>localName</var>)</code>

<dd>
<p>If <var>namespace</var> and <var>localName</var> are "<code>*</code>", returns an
Expand All @@ -5325,8 +5325,8 @@ otherwise "<code>CSS1Compat</code>".
<a for=/>elements</a> whose <a for=Element>namespace</a> is <var>namespace</var> and
<a for=Element>local name</a> is <var>localName</var>.

<dt><var>collection</var> = <var>document</var> . {{Document/getElementsByClassName(classNames)}}</code>
<dt><var>collection</var> = <var>element</var> . {{Element/getElementsByClassName(classNames)}}</code>
<dt><code><var>collection</var> = <var>document</var> . <a method for=Document lt="getElementsByClassName(classNames)">getElementsByClassName</a>(<var>classNames</var>)</code>
<dt><code><var>collection</var> = <var>element</var> . <a method for=Element lt="getElementsByClassName(classNames)">getElementsByClassName</a>(<var>classNames</var>)</code>
<dd><p>Returns an {{HTMLCollection}} of the <a for=/>elements</a> in the object on which the method
was invoked (a <a for=/>document</a> or an <a for=/>element</a>) that have all the classes given by
<var>classNames</var>. The <var>classNames</var> argument is interpreted as a space-separated list
Expand Down

0 comments on commit 7261e45

Please sign in to comment.