-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
86 lines (83 loc) · 2.17 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Modal Window</title>
<script src="https://www.w3.org/Tools/respec/respec-w3c-common" class="remove"></script>
<script class='remove'>
"use strict";
// See https://github.com/w3c/respec/wiki/ for how to configure ReSpec
var respecConfig = {
"doRDFa": false,
"format": "markdown",
"githubAPI": "https://api.github.com/repos/WICG/modal-window",
"issueBase": "https://www.github.com/WICG/modal-window/issues/",
"noLegacyStyle": true,
"editors": [{
name: "adrianhopebailie",
email: "[email protected]",
company: "Coil Technologies",
companyURL: "https://coil.com",
},
// Add additional editors here.
// https://github.com/w3c/respec/wiki/editors
],
"shortName": "modal-window",
"specStatus": "CG-DRAFT",
"subjectPrefix": "[modal-window]",
"wg": "WICG",
"otherLinks": [{
"key": "Repository",
"data": [{
"value": "We are on Github.",
"href": "https://github.com/WICG/modal-window"
}, {
"value": "File a bug.",
"href": "https://github.com/WICG/modal-window/issues"
}, {
"value": "Commit history.",
"href": "https://github.com/WICG/modal-window/commits/master"
}, ]
}],
};
</script>
</head>
<body>
<section id="abstract">
<p>
This specification does neat stuff.
</p>
</section>
<section id="sotd">
<p>
This is an unofficial proposal.
</p>
</section>
<section id="introduction">
<h2>Introduction</h2>
<p>
See <a href="https://github.com/w3c/respec/wiki/User's-Guide">ReSpec's
user guide</a> for how to get started!
</p>
</section>
<section data-dfn-for="Foo">
<h2>Start your spec!</h2>
<pre class="idl">
interface Foo {
attribute Bar bar;
void doTheFoo();
};
</pre>
<p>
See <a href="https://github.com/w3c/respec/wiki/WebIDL-Guide">ReSpec's
WebIDL guide</a> for how to write [[!WebIDL-2]] interfaces!
</p>
<p>
The <dfn>doTheFoo</dfn> method.
</p>
<p>
The <dfn>bar</dfn> attribute.
</p>
</section>
</body>
</html>