Skip to content

Commit 8abb850

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit e1c950514334ccbce543d6da69c01fae26002391.
1 parent 53404d0 commit 8abb850

36 files changed

+472
-483
lines changed

ed/crawl.json

Lines changed: 201 additions & 227 deletions
Large diffs are not rendered by default.

ed/dfns/content-index.json

Lines changed: 10 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -745,16 +745,14 @@
745745
"definedIn": "pre"
746746
},
747747
{
748-
"id": "dom-contentindexevent-contentindexevent",
749-
"href": "https://wicg.github.io/content-index/spec/#dom-contentindexevent-contentindexevent",
748+
"id": "contentindexevent",
749+
"href": "https://wicg.github.io/content-index/spec/#contentindexevent",
750750
"linkingText": [
751-
"ContentIndexEvent(type, init)"
752-
],
753-
"localLinkingText": [],
754-
"type": "constructor",
755-
"for": [
756751
"ContentIndexEvent"
757752
],
753+
"localLinkingText": [],
754+
"type": "interface",
755+
"for": [],
758756
"access": "public",
759757
"informative": false,
760758
"heading": {
@@ -765,15 +763,15 @@
765763
"definedIn": "pre"
766764
},
767765
{
768-
"id": "dom-contentindexevent-contentindexevent-type-init-type",
769-
"href": "https://wicg.github.io/content-index/spec/#dom-contentindexevent-contentindexevent-type-init-type",
766+
"id": "dom-contentindexevent-type",
767+
"href": "https://wicg.github.io/content-index/spec/#dom-contentindexevent-type",
770768
"linkingText": [
771769
"type"
772770
],
773771
"localLinkingText": [],
774772
"type": "argument",
775773
"for": [
776-
"ContentIndexEvent/ContentIndexEvent(type, init)"
774+
"ContentIndexEvent"
777775
],
778776
"access": "public",
779777
"informative": false,
@@ -785,34 +783,16 @@
785783
"definedIn": "pre"
786784
},
787785
{
788-
"id": "dom-contentindexevent-contentindexevent-type-init-init",
789-
"href": "https://wicg.github.io/content-index/spec/#dom-contentindexevent-contentindexevent-type-init-init",
786+
"id": "dom-contentindexevent-init",
787+
"href": "https://wicg.github.io/content-index/spec/#dom-contentindexevent-init",
790788
"linkingText": [
791789
"init"
792790
],
793791
"localLinkingText": [],
794792
"type": "argument",
795793
"for": [
796-
"ContentIndexEvent/ContentIndexEvent(type, init)"
797-
],
798-
"access": "public",
799-
"informative": false,
800-
"heading": {
801-
"id": "content-index-event",
802-
"title": "ContentIndexEvent",
803-
"number": "5.4"
804-
},
805-
"definedIn": "pre"
806-
},
807-
{
808-
"id": "contentindexevent",
809-
"href": "https://wicg.github.io/content-index/spec/#contentindexevent",
810-
"linkingText": [
811794
"ContentIndexEvent"
812795
],
813-
"localLinkingText": [],
814-
"type": "interface",
815-
"for": [],
816796
"access": "public",
817797
"informative": false,
818798
"heading": {

ed/headings/SRI.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{
1313
"id": "subtitle",
1414
"level": 2,
15-
"title": "Editor’s Draft, 4 January 2020"
15+
"title": "Editor’s Draft, 18 February 2021"
1616
},
1717
{
1818
"id": "abstract",

ed/headings/content-index.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{
1313
"id": "subtitle",
1414
"level": 2,
15-
"title": "Editor’s Draft, 13 May 2020"
15+
"title": "Editor’s Draft, 18 February 2021"
1616
},
1717
{
1818
"id": "abstract",

ed/headings/wasm-core-1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{
1313
"id": "subtitle",
1414
"level": 2,
15-
"title": "Editor’s Draft, 9 February 2021"
15+
"title": "Editor’s Draft, 18 February 2021"
1616
},
1717
{
1818
"id": "abstract",

ed/headings/wasm-js-api-1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{
1313
"id": "subtitle",
1414
"level": 2,
15-
"title": "Editor’s Draft, 9 February 2021"
15+
"title": "Editor’s Draft, 18 February 2021"
1616
},
1717
{
1818
"id": "abstract",

ed/headings/wasm-web-api-1.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
{
1313
"id": "subtitle",
1414
"level": 2,
15-
"title": "Editor’s Draft, 9 February 2021"
15+
"title": "Editor’s Draft, 18 February 2021"
1616
},
1717
{
1818
"id": "abstract",

ed/idl/content-index.idl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ dictionary ContentIndexEventInit : ExtendableEventInit {
3939
required DOMString id;
4040
};
4141

42-
[Constructor(DOMString type, ContentIndexEventInit init), Exposed=ServiceWorker]
42+
[Exposed=ServiceWorker]
4343
interface ContentIndexEvent : ExtendableEvent {
44+
constructor(DOMString type, ContentIndexEventInit init);
4445
readonly attribute DOMString id;
4546
};

ed/idlnames/ContentIndexEvent.idl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Source: Content Index (https://wicg.github.io/content-index/spec/)
2-
[Constructor(DOMString type, ContentIndexEventInit init), Exposed=ServiceWorker]
2+
[Exposed=ServiceWorker]
33
interface ContentIndexEvent : ExtendableEvent {
4+
constructor(DOMString type, ContentIndexEventInit init);
45
readonly attribute DOMString id;
56
};

ed/idlnamesparsed/ContentIndexEvent.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"title": "Content Index",
66
"url": "https://wicg.github.io/content-index/spec/"
77
},
8-
"fragment": "[Constructor(DOMString type, ContentIndexEventInit init), Exposed=ServiceWorker]\ninterface ContentIndexEvent : ExtendableEvent {\n readonly attribute DOMString id;\n};",
8+
"fragment": "[Exposed=ServiceWorker]\ninterface ContentIndexEvent : ExtendableEvent {\n constructor(DOMString type, ContentIndexEventInit init);\n readonly attribute DOMString id;\n};",
99
"href": "https://wicg.github.io/content-index/spec/#contentindexevent"
1010
},
1111
"extended": [],

0 commit comments

Comments
 (0)