Skip to content

Commit 9990bb2

Browse files
marcoscaceresAutomatedTester
authored andcommitted
Editorial: export definitions needed for Permissions API
1 parent 1917e89 commit 9990bb2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ <h3>Algorithms</h3>
343343

344344
<p>Where algorithms that return values are fallible,
345345
they are written in terms of returning either
346-
<dfn>success</dfn> or <dfn data-lt=errors>error</dfn>.
346+
<dfn class="export" data-local-lt="success">WebDriver success</dfn> (success) or <dfn data-local-lt="error" class="export">WebDriver error</dfn> (error).
347347
A <a>success</a> value has an associated <var>data</var> field
348348
which encapsulates the value returned,
349349
whereas an <a>error</a> response has an associated <a>error code</a>.
@@ -400,7 +400,7 @@ <h3>Commands</h3>
400400
<p>
401401
In response to a <a>command</a>,
402402
a <a>remote end</a> will run a series of actions
403-
known as <dfn>remote end steps</dfn>.
403+
known as <dfn class="export">remote end steps</dfn>.
404404
These provide the sequences of actions that a <a>remote end</a> takes
405405
when it receives a particular <a>command</a>.
406406
</section>
@@ -1090,7 +1090,7 @@ <h3>Errors</h3>
10901090
}</code></pre>
10911091
</aside>
10921092

1093-
<p>The following table lists each <dfn>error code</dfn>,
1093+
<p>The following table lists each <dfn data-local-lt="error code">WebDriver error code</dfn>,
10941094
its associated <a>HTTP status</a>,
10951095
JSON <code>error</code> code,
10961096
and a non-normative description of the error.
@@ -1134,7 +1134,7 @@ <h3>Errors</h3>
11341134
which is usually the result of an expired or invalid TLS certificate.
11351135

11361136
<tr>
1137-
<td><dfn>invalid argument</dfn>
1137+
<td><dfn class="export" data-local-lt="invalid argument">WebDriver invalid argument</dfn>
11381138
<td>400
11391139
<td><code>invalid argument</code>
11401140
<td>The arguments passed to a <a>command</a>
@@ -1344,12 +1344,12 @@ <h3>Extensions</h3>
13441344
features.
13451345

13461346
<p>Commands defined in this way
1347-
are called <dfn data-lt="extension command">extension commands</dfn>
1347+
are called <dfn class="export" data-local-lt="extension commands">WebDriver extension commands</dfn>
13481348
and behave no differently than other <a>commands</a>;
13491349
each has a dedicated HTTP endpoint and a set of <a>remote end steps</a>.
13501350

13511351
<p>Each <a>extension command</a> has an associated
1352-
<dfn>extension command URI Template</dfn>
1352+
<dfn class="export">extension command URI Template</dfn>
13531353
that is a <a>URI Template</a> string,
13541354
and which should bear some resemblance to what the command performs.
13551355
This value,
@@ -2146,7 +2146,7 @@ <h2>Sessions</h2>
21462146
and allowing sessions to be routed via a multiplexer
21472147
(known as an <a>intermediary node</a>).
21482148

2149-
<p>A WebDriver <dfn data-lt="sessions">session</dfn> represents
2149+
<p>A <dfn class="export" data-local-lt="session">WebDriver session</dfn> represents
21502150
the <a>connection</a> between a <a>local end</a> and a specific <a>remote end</a>.
21512151

21522152
<p>A <a>session</a> is started when

0 commit comments

Comments
 (0)