forked from WICG/file-handling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (56 loc) · 1.7 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>File Handling</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/file-handling",
"issueBase": "https://www.github.com/WICG/file-handling/issues/",
"noLegacyStyle": true,
"editors": [{
name: "Eric Willigers",
email: "ericwilligers@chromium.org",
company: "Google Inc.",
companyURL: "https://google.com",
},
// Add additional editors here.
// https://github.com/w3c/respec/wiki/editors
],
"shortName": "file-handling",
"specStatus": "CG-DRAFT",
"subjectPrefix": "[file-handling]",
"wg": "WICG",
"otherLinks": [{
"key": "Repository",
"data": [{
"value": "We are on Github.",
"href": "https://github.com/WICG/file-handling"
}, {
"value": "File a bug.",
"href": "https://github.com/WICG/file-handling/issues"
}, {
"value": "Commit history.",
"href": "https://github.com/WICG/file-handling/commits/master"
}, ]
}],
};
</script>
</head>
<body>
<section id="introduction">
<h2>Introduction</h2>
<p>
This is a proposed capability for web applications to support File Handling.
</p>
<p>
Please see the <a href="https://github.com/ewilligers/file-handling/blob/master/explainer.md">Explainer document</a>, a high-level overview of the proposal.
</p>
</section>
</body>
</html>