Skip to content

Commit 0dce3de

Browse files
committed
Add Bikeshed metadata block
1 parent 9bd0e9a commit 0dce3de

File tree

1 file changed

+44
-80
lines changed

1 file changed

+44
-80
lines changed

index.bs

Lines changed: 44 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,47 @@
1-
<!doctype html>
2-
<html
3-
data-issue-url="https://github.com/w3c/webdriver/"
4-
data-issue-param-milestone="Level 1">
5-
<meta charset=utf-8>
6-
<title>WebDriver</title>
7-
8-
<script src=https://www.w3.org/Tools/respec/respec-w3c-common async class=remove></script>
9-
<script class=remove>
10-
var respecConfig = {
11-
specStatus: "ED",
12-
shortName: "webdriver",
13-
previousMaturity: "WD",
14-
previousPublishDate: "2019-11-24",
15-
// copyrightStart: "2005"
16-
github: {
17-
repoURL: "https://github.com/w3c/webdriver/",
18-
branch: "master",
19-
},
20-
editors: [
21-
{
22-
name: "Simon Stewart", url: "http://www.rocketpoweredjetpants.com/",
23-
company: "Apple", companyURL: "https://www.apple.com",
24-
w3cid: "50228"
25-
},
26-
{
27-
name: "David Burns", url: "http://www.theautomatedtester.co.uk/",
28-
company: "BrowserStack", companyURL: "https://www.browserstack.com",
29-
w3cid: "50184"
30-
}
31-
],
32-
otherLinks: [{
33-
key: "Channel",
34-
data: [
35-
{value: "#webdriver on irc.w3.org", href: "https://www.w3.org/wiki/IRC"},
36-
]
37-
}],
38-
localBiblio: {
39-
"RFC6265bis": {
40-
"authors": [
41-
"M. West",
42-
"J. Wilander"
43-
],
44-
"href": "https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-05",
45-
"title": "Cookies: HTTP State Management Mechanism",
46-
"status": "Draft",
47-
"publisher": "IETF"
48-
}
49-
},
50-
wg: "Browser Testing and Tools Working Group",
51-
wgURI: "https://www.w3.org/testing/browser/",
52-
wgPublicList: "public-browser-tools-testing",
53-
wgPatentURI: "https://www.w3.org/2004/01/pp-impl/49799/status",
54-
noIDLSorting: true,
55-
mdn: true,
56-
};
57-
</script>
1+
<pre class=metadata>
2+
Title: WebDriver
3+
Level: 2
4+
Shortname: webdriver
5+
Status: ED
6+
TR: https://www.w3.org/TR/webdriver/
7+
Group: browser-testing-tools
8+
URL: https://w3c.github.io/webdriver/
9+
Repository: w3c/webdriver
10+
Editor: Simon Stewart, Apple https://www.apple.com/, http://www.rocketpoweredjetpants.com/, w3cid 50228
11+
Editor: David Burns, BrowserStack https://www.browserstack.com/, http://www.theautomatedtester.co.uk/, w3cid 50184
12+
!Channel: <a href="https://www.w3.org/wiki/IRC">#webdriver on irc.w3.org</a>
13+
Abstract: WebDriver is a remote control interface
14+
Abstract: that enables introspection and control of user agents.
15+
Abstract: It provides a platform- and language-neutral wire protocol
16+
Abstract: as a way for out-of-process programs
17+
Abstract: to remotely instruct the behavior of web browsers.
18+
Abstract:
19+
Abstract: Provided is a set of interfaces
20+
Abstract: to discover and manipulate DOM elements in web documents
21+
Abstract: and to control the behavior of a user agent.
22+
Abstract: It is primarily intended to allow web authors to write tests
23+
Abstract: that automate a user agent from a separate controlling process,
24+
Abstract: but may also be used in such a way as to allow in-browser scripts
25+
Abstract: to control a — possibly separate — browser.
26+
Boilerplate: conformance no, index no, idl-index no, issues-index no
27+
Indent: 2
28+
</pre>
29+
30+
<pre class=biblio>
31+
{
32+
"RFC6265bis": {
33+
"authors": [
34+
"M. West",
35+
"J. Wilander"
36+
],
37+
"href": "https://tools.ietf.org/html/draft-ietf-httpbis-rfc6265bis-05",
38+
"title": "Cookies: HTTP State Management Mechanism",
39+
"status": "Draft",
40+
"publisher": "IETF"
41+
}
42+
}
43+
</pre>
44+
5845
<script src=issue.js></script>
5946

6047
<style>
@@ -71,29 +58,6 @@ ul.brief li:last-child::after { content: "" }
7158
dl.subcategories { margin-left: 2em }
7259
</style>
7360

74-
<section id=abstract>
75-
<p>
76-
WebDriver is a remote control interface
77-
that enables introspection and control of user agents.
78-
It provides a platform- and language-neutral wire protocol
79-
as a way for out-of-process programs
80-
to remotely instruct the behavior of web browsers.
81-
82-
<p>
83-
Provided is a set of interfaces
84-
to discover and manipulate DOM elements in web documents
85-
and to control the behavior of a user agent.
86-
It is primarily intended to allow web authors to write tests
87-
that automate a user agent from a separate controlling process,
88-
but may also be used in such a way as to allow in-browser scripts
89-
to control a — possibly separate — browser.
90-
</section>
91-
92-
93-
<!-- ReSpec complains if removed completely -->
94-
<section id=sotd></section>
95-
96-
9761
<section class=informative>
9862
<h2>Design</h2>
9963

0 commit comments

Comments
 (0)