Skip to content

Commit 562f0d6

Browse files
committed
Fix querySelectorAll linkage
1 parent 7f85e21 commit 562f0d6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

index.bs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4305,7 +4305,7 @@ argument <var>reference</var>, run the following steps:
43054305

43064306
<ol>
43074307
<li><p>Let <var>elements</var> be the result of
4308-
calling <a>querySelectorAll</a> with <var>selector</var> with
4308+
calling {{ParentNode/querySelectorAll()}} with <var>selector</var> with
43094309
the <a>context object</a> equal to the <var>start node</var>. If
43104310
this causes an exception to be thrown, return <a>error</a>
43114311
with <a>error code</a> <a>invalid selector</a>.
@@ -4323,7 +4323,7 @@ argument <var>reference</var>, run the following steps:
43234323

43244324
<ol>
43254325
<li><p>Let <var>elements</var> be the result of
4326-
calling <a>querySelectorAll</a>, with argument <a><code>a</code>
4326+
calling {{ParentNode/querySelectorAll()}}, with argument <a><code>a</code>
43274327
elements</a>, with the <a>context object</a> equal to the
43284328
<var>start node</var>. If this throws an exception,
43294329
return <a>error</a> with <a>error code</a> <a>unknown error</a>.
@@ -4365,7 +4365,7 @@ argument <var>reference</var>, run the following steps:
43654365

43664366
<ol>
43674367
<li><p>Let <var>elements</var> be the result of
4368-
calling <a>querySelectorAll</a>, with argument <a><code>a</code>
4368+
calling {{ParentNode/querySelectorAll()}}, with argument <a><code>a</code>
43694369
elements</a>, with the <a>context object</a> equal to the
43704370
<var>start node</var>. If this throws an exception,
43714371
return <a>error</a> with <a>error code</a> <a>unknown error</a>.
@@ -9656,8 +9656,6 @@ to automatically sort each list alphabetically.
96569656
<!-- Node length --> <li><dfn><a href="https://dom.spec.whatwg.org/#concept-node-length">Node Length</a></dfn>
96579657
<!-- Node --> <li><dfn><a href=https://dom.spec.whatwg.org/#concept-node>Node</a></dfn>
96589658
<!-- NodeList --> <li><dfn><a href=https://dom.spec.whatwg.org/#nodelist><code>NodeList</code></a></dfn>
9659-
<!-- querySelectorAll --> <li><dfn><a href="https://dom.spec.whatwg.org/#dom-parentnode-queryselectorall"><code>querySelectorAll</code></a></dfn>
9660-
<!-- querySelector --> <li><dfn><a href="https://dom.spec.whatwg.org/#dom-parentnode-queryselector"><code>querySelector</code></a></dfn>
96619659
<!-- tagName --> <li><dfn><a href=https://dom.spec.whatwg.org/#dom-element-tagname>tagName</a></dfn>
96629660
<!-- Text node --> <li><dfn><a href=https://dom.spec.whatwg.org/#text><code>Text</code> node</a></dfn>
96639661
</ul>

0 commit comments

Comments
 (0)