Skip to content

Commit 81509c4

Browse files
titusfortnerandreastt
authored andcommitted
matching is not defined for strings (#1451)
1 parent 3216584 commit 81509c4

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

index.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ <h3>Routing requests</h3>
630630

631631
<li><p>Remove each entry in <var>endpoints</var>
632632
for which the <i>method</i> column
633-
is not an exact case-sensitive match for <var>method</var>.
633+
is not equal to <var>method</var>.
634634

635635
<li><p>If there are no entries in <var>endpoints</var>,
636636
return <a>error</a> with <a>error code</a> <a>unknown method</a>.
@@ -3904,7 +3904,7 @@ <h2>Elements</h2>
39043904
<ol>
39053905
<li>Let <var>element</var> be the item in the <a>current browsing
39063906
context</a>’s <a>list of known elements</a> for which the <a>web
3907-
element reference</a> matches <var>reference</var>, if such an
3907+
element reference</a> is equal to <var>reference</var>, if such an
39083908
element exists. Otherwise return <a>error</a> with <a>error
39093909
code</a> <a>no such element</a>.
39103910
<li>If <var>element</var> <a>is stale</a>, return
@@ -5494,7 +5494,7 @@ <h4><dfn>Element Send Keys</dfn></h4>
54945494

54955495
<ol>
54965496
<li><p>Let <var>action</var> be the value of <var>undo actions</var>
5497-
matching key <var>entry key</var>.
5497+
equal to the key <var>entry key</var>.
54985498

54995499
<li><p>If <var>action</var> is not an <a>action object</a>
55005500
of <code>type</code> "<code>key</code>"
@@ -6495,7 +6495,7 @@ <h3><dfn>Get Named Cookie</dfn></h3>
64956495
<li><p><a>Handle any user prompts</a>, and return its value if it is an <a>error</a>.
64966496

64976497
<li><p>If the <a>url variable</a> <var>name</var>
6498-
matches a <a>cookie</a>’s <a>cookie name</a>
6498+
is equal to a <a>cookie</a>’s <a>cookie name</a>
64996499
amongst <a>all associated cookies</a>
65006500
of the <a>current browsing context</a>’s <a>active document</a>,
65016501
return <a>success</a> with the <a>serialized cookie</a> as data.
@@ -7129,7 +7129,7 @@ <h2>Processing actions</h2>
71297129
<li><p>Let <var>source</var> be the <a>input source</a>
71307130
in the list of <a>active input sources</a>
71317131
where that <a>input source</a>’s <a>input id</a>
7132-
matches <var>id</var>,
7132+
is equal to <var>id</var>,
71337133
or <a>undefined</a> if there is no matching <a>input source</a>.
71347134

71357135
<li><p>If <var>source</var> is <a>undefined</a>:
@@ -7159,12 +7159,12 @@ <h2>Processing actions</h2>
71597159
on <var>source</var>’s <a>input id</a>.
71607160
</ol>
71617161

7162-
<li><p>If <var>source</var>’s <a>source type</a> does not
7163-
match <var>type</var> return an <a>error</a> with <a>error
7162+
<li><p>If <var>source</var>’s <a>source type</a> is not equal to
7163+
<var>type</var> return an <a>error</a> with <a>error
71647164
code</a> <a>invalid argument</a>.
71657165

71667166
<li><p>If <var>parameters</var> is not <a>undefined</a>,
7167-
then if its <code>pointerType</code> property does not match
7167+
then if its <code>pointerType</code> property is not equal to
71687168
<var>source</var>’s <a>pointer type</a>,
71697169
return an <a>error</a> with <a>error code</a> <a>invalid argument</a>.
71707170

@@ -7587,7 +7587,7 @@ <h2>Dispatching actions</h2>
75877587

75887588
<li><p>Let <var>algorithm</var> be the value of the column
75897589
<i>dispatch action algorithm</i> from the following table of
7590-
<dfn>dispatch action algorithms</dfn> that matches the
7590+
<dfn>dispatch action algorithms</dfn> that is equal to the
75917591
<var>source type</var> and the <var>action object</var>’s
75927592
<code>subtype</code> property, to a dispatch action algorithm.
75937593

0 commit comments

Comments
 (0)