-
Notifications
You must be signed in to change notification settings - Fork 57
/
errata.html
73 lines (69 loc) · 2.03 KB
/
errata.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Geolocation Errata</title>
<script
src="https://www.w3.org/Tools/respec/respec-w3c"
class="remove"
></script>
<script>
var respecConfig = {
github: "w3c/geolocation-api",
specStatus: "base",
editors: [
{
name: "Marcos Cáceres",
company: "Apple Inc.",
companyURL: "https://apple.com",
w3cid: 39125,
},
{
name: "Reilly Grant",
company: "Google",
companyURL: "https://google.com",
w3cid: "83788",
},
],
latestVersion: null,
group: [ "das", "webapps" ],
format: "markdown",
logos: [
{
alt:"W3C",
src:"https://www.w3.org/StyleSheets/TR/2021/logos/W3C",
width: "72",
height:"48"
}
],
postProcess: [hideRedundantParts]
};
function hideRedundantParts() {
const details = document.querySelector("body > div.head > details");
details.style = "display: none";
}
</script>
</head>
<body>
<section id="abstract">
## Abstract
This document catalogues errata for the [[[Geolocation-API]]] W3C Recommendation.
</section>
## Process for submitting errata
Please [file an issue](https://github.com/w3c/geolocation/issues/new) on Github.
## Unaddressed errata
[See issues on Github](https://github.com/w3c/geolocation/labels/errata)
## Errata approved by the Working Group
<script class="removeOnSave">
function removeCommits(commit) {
const { message, hash } = commit;
if (["ef098b1", "f8b930f"].includes(hash)) {
return false;
}
return !/^chore|^tidy|^editorial|^Editiorial|^edtiorial|^refactor|^tests?|^docs|^typo|^nit/i.test(message);
}
</script>
<rs-changelog from="REC-2022" filter="removeCommits">
</rs-changelog>
</body>
</html>