Skip to content

Commit 87169a8

Browse files
authored
Merge pull request #2363 from ewilligers/querySelector
[selectors] querySelectorAll not queryAll
2 parents ce31405 + e600afc commit 87169a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

selectors-4/Overview.bs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Abstract: Selectors Level 4 describes the selectors that already exist in [[!SEL
2323
At Risk: the column combinator
2424
At Risk: the '':drop()'' pseudo-class
2525
At Risk: the '':read-write'' pseudo-class
26-
Ignored Terms: function token, Document, DocumentFragment, math, h1, shadow tree, query(), quirks mode, button, a, span, object, p, div, q, area, link, label, input, html, em, li, ol, pre, CSS Value Definition Syntax
26+
Ignored Terms: function token, Document, DocumentFragment, math, h1, shadow tree, querySelector(), quirks mode, button, a, span, object, p, div, q, area, link, label, input, html, em, li, ol, pre, CSS Value Definition Syntax
2727
Ignored Vars: identifier, extended filtering, i
2828
</pre>
2929
<pre class=link-defaults>
@@ -61,7 +61,7 @@ Introduction</h2>
6161
<li>
6262
applied to an entire tree of elements
6363
to filter it into a set of elements that match the criteria,
64-
such as in the <code>document.queryAll()</code> function defined in [[DOM]]
64+
such as in the <code>document.querySelectorAll()</code> function defined in [[DOM]]
6565
or the selector of a CSS style rule.
6666

6767
<li>
@@ -526,7 +526,7 @@ Selectors Overview</h2>
526526
<dd>
527527
The <a>snapshot</a> profile is appropriate for contexts which aren't extremely performance sensitive;
528528
in particular, it's appropriate for contexts which evaluate selectors against a static document tree.
529-
For example, the {{Element/query()}} method defined in [[DOM]] should use the <a>snapshot</a> profile.
529+
For example, the {{Element/querySelector()}} method defined in [[DOM]] should use the <a>snapshot</a> profile.
530530
It includes all of the selectors defined in this document.
531531
</dl>
532532

0 commit comments

Comments
 (0)