Skip to content

Commit 57765ac

Browse files
authored
Merge pull request #768 from gsnedders/gh-pages-webdriver-classic
Add webdriver-classic.bs to the specs published on GitHub Pages
2 parents 75ba00c + cf3cbfb commit 57765ac

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
include:
3131
- name: specification
3232
source: ./specification/index.bs
33+
- name: webdriver-classic
34+
source: ./specification/webdriver-classic.bs
3335
- name: window-browser
3436
source: ./specification/window.browser.bs
3537

specification/webdriver-classic.bs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -109,37 +109,37 @@ Repository: w3c/webextensions
109109
unsupported operation.
110110
<li><p>Let <var>type hint</var> be the result of getting the
111111
property "<code>type</code>" from <var>parameters</var>.
112-
<ol>
113-
<li type='a'><p> If <var>type hint</var> does not have the value of
112+
<ol style="list-style-type: lower-latin">
113+
<li><p> If <var>type hint</var> does not have the value of
114114
"path", "archivePath", or "base64", return
115115
<a href="https://w3c.github.io/webdriver/#dfn-error">error</a>
116116
with <a href="https://w3c.github.io/webdriver/#dfn-error">
117117
error code</a> invalid argument.
118-
<li type='a'><p>If the implementation does not support loading web
118+
<li><p>If the implementation does not support loading web
119119
extensions using <var>type hint</var>, return
120120
<a href="https://w3c.github.io/webdriver/#dfn-error">error</a>
121121
with <a href="https://w3c.github.io/webdriver/#dfn-error">
122122
error code</a> unsupported operation.
123-
<li type='a'><p>Let <var>value</var> be the result of
123+
<li><p>Let <var>value</var> be the result of
124124
getting the property"<code>value</code>" from
125125
<var>parameters</var>. If <var>value</var> is
126126
<code>null</code>, return
127127
<a href="https://w3c.github.io/webdriver/#dfn-error">error</a>
128128
with <a href="https://w3c.github.io/webdriver/#dfn-error">
129129
error code</a> invalid argument.
130-
<li type='a'><p>If <var>type hint</var> has the value "path" and the
130+
<li><p>If <var>type hint</var> has the value "path" and the
131131
implementation supports loading a web extension given a
132132
path to it's resources, the implementation should load the
133133
extension located at the path stored in "<code>value</code>".
134-
<li type='a'><p>If <var>type hint</var> has the value "archivePath"
134+
<li><p>If <var>type hint</var> has the value "archivePath"
135135
and the implementation supports loading a web extension
136136
given a path to a ZIP of it's resources, the implementation
137137
should extract the ZIP and load the extension located at
138138
the path stored in "<code>value</code>". If this extraction
139139
fails, return <a href="https://w3c.github.io/webdriver/#dfn-error">
140140
error</a> with <a href="https://w3c.github.io/webdriver/#dfn-error">
141141
error code</a> unable to load extension.
142-
<li type='a'><p>If <var>type hint</var> has the value "base64" and the
142+
<li><p>If <var>type hint</var> has the value "base64" and the
143143
implementation supports loading a web extension given a
144144
Base64 encoded string of the ZIP representation of the
145145
extension's resources, the implementation should extract

0 commit comments

Comments
 (0)