Skip to content

matching is not defined for strings #1451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 16, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ <h3>Routing requests</h3>

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

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

<ol>
<li><p>Let <var>action</var> be the value of <var>undo actions</var>
matching key <var>entry key</var>.
equal to the key <var>entry key</var>.

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

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

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

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

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

Expand Down Expand Up @@ -7587,7 +7587,7 @@ <h2>Dispatching actions</h2>

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

Expand Down