Skip to content

Commit ee7b699

Browse files
author
reffy-bot
committed
Update of ED report from new reffy run
Using reffy commit 17.2.10.
1 parent 98db012 commit ee7b699

File tree

8 files changed

+4550
-4415
lines changed

8 files changed

+4550
-4415
lines changed

ed/algorithms/html.json

Lines changed: 56 additions & 27 deletions
Large diffs are not rendered by default.

ed/dfns/html.json

Lines changed: 82 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5836,6 +5836,86 @@
58365836
},
58375837
"definedIn": "pre"
58385838
},
5839+
{
5840+
"id": "showpopoveroptions",
5841+
"href": "https://html.spec.whatwg.org/multipage/dom.html#showpopoveroptions",
5842+
"linkingText": [
5843+
"ShowPopoverOptions"
5844+
],
5845+
"localLinkingText": [],
5846+
"type": "dictionary",
5847+
"for": [],
5848+
"access": "public",
5849+
"informative": false,
5850+
"heading": {
5851+
"id": "elements-in-the-dom",
5852+
"href": "https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom",
5853+
"title": "Elements in the DOM",
5854+
"number": "3.2.2"
5855+
},
5856+
"definedIn": "pre"
5857+
},
5858+
{
5859+
"id": "dom-showpopoveroptions-source",
5860+
"href": "https://html.spec.whatwg.org/multipage/dom.html#dom-showpopoveroptions-source",
5861+
"linkingText": [
5862+
"source"
5863+
],
5864+
"localLinkingText": [],
5865+
"type": "dict-member",
5866+
"for": [
5867+
"ShowPopoverOptions"
5868+
],
5869+
"access": "public",
5870+
"informative": false,
5871+
"heading": {
5872+
"id": "elements-in-the-dom",
5873+
"href": "https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom",
5874+
"title": "Elements in the DOM",
5875+
"number": "3.2.2"
5876+
},
5877+
"definedIn": "pre"
5878+
},
5879+
{
5880+
"id": "togglepopoveroptions",
5881+
"href": "https://html.spec.whatwg.org/multipage/dom.html#togglepopoveroptions",
5882+
"linkingText": [
5883+
"TogglePopoverOptions"
5884+
],
5885+
"localLinkingText": [],
5886+
"type": "dictionary",
5887+
"for": [],
5888+
"access": "public",
5889+
"informative": false,
5890+
"heading": {
5891+
"id": "elements-in-the-dom",
5892+
"href": "https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom",
5893+
"title": "Elements in the DOM",
5894+
"number": "3.2.2"
5895+
},
5896+
"definedIn": "pre"
5897+
},
5898+
{
5899+
"id": "dom-togglepopoveroptions-force",
5900+
"href": "https://html.spec.whatwg.org/multipage/dom.html#dom-togglepopoveroptions-force",
5901+
"linkingText": [
5902+
"force"
5903+
],
5904+
"localLinkingText": [],
5905+
"type": "dict-member",
5906+
"for": [
5907+
"TogglePopoverOptions"
5908+
],
5909+
"access": "public",
5910+
"informative": false,
5911+
"heading": {
5912+
"id": "elements-in-the-dom",
5913+
"href": "https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom",
5914+
"title": "Elements in the DOM",
5915+
"number": "3.2.2"
5916+
},
5917+
"definedIn": "pre"
5918+
},
58395919
{
58405920
"id": "htmlunknownelement",
58415921
"href": "https://html.spec.whatwg.org/multipage/dom.html#htmlunknownelement",
@@ -59111,7 +59191,7 @@
5911159191
"id": "dom-showpopover",
5911259192
"href": "https://html.spec.whatwg.org/multipage/popover.html#dom-showpopover",
5911359193
"linkingText": [
59114-
"showPopover()"
59194+
"showPopover(options)"
5911559195
],
5911659196
"localLinkingText": [],
5911759197
"type": "method",
@@ -59210,7 +59290,7 @@
5921059290
"id": "dom-togglepopover",
5921159291
"href": "https://html.spec.whatwg.org/multipage/popover.html#dom-togglepopover",
5921259292
"linkingText": [
59213-
"togglePopover(force)"
59293+
"togglePopover(options)"
5921459294
],
5921559295
"localLinkingText": [],
5921659296
"type": "method",

ed/idl/html.idl

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,20 @@ interface HTMLElement : Element {
133133
ElementInternals attachInternals();
134134

135135
// The popover API
136-
undefined showPopover();
136+
undefined showPopover(optional ShowPopoverOptions options = {});
137137
undefined hidePopover();
138-
boolean togglePopover(optional boolean force);
138+
boolean togglePopover(optional (TogglePopoverOptions or boolean) options = {});
139139
[CEReactions] attribute DOMString? popover;
140140
};
141141

142+
dictionary ShowPopoverOptions {
143+
HTMLElement source;
144+
};
145+
146+
dictionary TogglePopoverOptions : ShowPopoverOptions {
147+
boolean force;
148+
};
149+
142150
HTMLElement includes GlobalEventHandlers;
143151
HTMLElement includes ElementContentEditable;
144152
HTMLElement includes HTMLOrSVGElement;

ed/ids/ecmascript.json

Lines changed: 4336 additions & 4337 deletions
Large diffs are not rendered by default.

ed/ids/html.json

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1749,6 +1749,7 @@
17491749
"https://html.spec.whatwg.org/multipage/infrastructure.html#'content-visibility'",
17501750
"https://html.spec.whatwg.org/multipage/infrastructure.html#content-visibility-auto",
17511751
"https://html.spec.whatwg.org/multipage/infrastructure.html#dependencies%3A'content-visibility'",
1752+
"https://html.spec.whatwg.org/multipage/infrastructure.html#implicit-anchor-element",
17521753
"https://html.spec.whatwg.org/multipage/infrastructure.html#run-the-update-intersection-observations-steps",
17531754
"https://html.spec.whatwg.org/multipage/infrastructure.html#intersectionobserver",
17541755
"https://html.spec.whatwg.org/multipage/infrastructure.html#intersectionobserverinit",
@@ -4267,20 +4268,28 @@
42674268
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aelementinternals",
42684269
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Adom-attachinternals",
42694270
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Adom-showpopover",
4271+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ashowpopoveroptions",
42704272
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Adom-hidepopover",
42714273
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Adom-togglepopover",
4274+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Atogglepopoveroptions",
42724275
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Acereactions-15",
42734276
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Adom-popover",
4277+
"https://html.spec.whatwg.org/multipage/dom.html#showpopoveroptions",
42744278
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-2",
4275-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aglobaleventhandlers",
4279+
"https://html.spec.whatwg.org/multipage/dom.html#dom-showpopoveroptions-source",
4280+
"https://html.spec.whatwg.org/multipage/dom.html#togglepopoveroptions",
4281+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ashowpopoveroptions-2",
4282+
"https://html.spec.whatwg.org/multipage/dom.html#dom-togglepopoveroptions-force",
42764283
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-3",
4277-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aelementcontenteditable",
4284+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aglobaleventhandlers",
42784285
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-4",
4286+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aelementcontenteditable",
4287+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-5",
42794288
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlorsvgelement",
42804289
"https://html.spec.whatwg.org/multipage/dom.html#htmlunknownelement",
4281-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-5",
4282-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlconstructor-2",
42834290
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-6",
4291+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlconstructor-2",
4292+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-7",
42844293
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aelement-interface",
42854294
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtml-namespace-2",
42864295
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aapplet",
@@ -4304,20 +4313,20 @@
43044313
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Artc",
43054314
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Astrike",
43064315
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Att",
4307-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-7",
4316+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-8",
43084317
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Alisting",
43094318
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Axmp",
43104319
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlpreelement",
43114320
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aelement-type",
43124321
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aother-applicable-specifications",
43134322
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Avalid-custom-element-name",
4314-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-8",
4315-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlunknownelement-2",
43164323
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-9",
4324+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlunknownelement-2",
4325+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-10",
43174326
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlunknownelement-3",
43184327
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Avalid-custom-element-name-2",
43194328
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Aupgrades",
4320-
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-10",
4329+
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlelement-11",
43214330
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlunknownelement-4",
43224331
"https://html.spec.whatwg.org/multipage/dom.html#elements-in-the-dom%3Ahtmlorsvgelement-2",
43234332
"https://html.spec.whatwg.org/multipage/dom.html#htmlorsvgelement",
@@ -35803,6 +35812,8 @@
3580335812
"https://html.spec.whatwg.org/multipage/popover.html#dom-hidepopover-dev",
3580435813
"https://html.spec.whatwg.org/multipage/popover.html#dom-togglepopover-dev",
3580535814
"https://html.spec.whatwg.org/multipage/popover.html#dom-showpopover",
35815+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Adom-showpopoveroptions-source",
35816+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Amap-exists",
3580635817
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Ashow-popover",
3580735818
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Athis",
3580835819
"https://html.spec.whatwg.org/multipage/popover.html#show-popover",
@@ -35855,6 +35866,7 @@
3585535866
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-visibility-state-2",
3585635867
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-showing-state-2",
3585735868
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-invoker-2",
35869+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aimplicit-anchor-element",
3585835870
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-focusing-steps",
3585935871
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aattr-popover-14",
3586035872
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aattr-popover-none-state",
@@ -35915,6 +35927,7 @@
3591535927
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aevent-beforetoggle-5",
3591635928
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aattr-popover-17",
3591735929
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Arequest-an-element-to-be-removed-from-the-top-layer",
35930+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aimplicit-anchor-element-2",
3591835931
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Aremove-an-element-from-the-top-layer-immediately",
3591935932
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-visibility-state-3",
3592035933
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-hidden-state-2",
@@ -35926,6 +35939,11 @@
3592635939
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Ashadow-including-inclusive-descendant",
3592735940
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Afocusing-steps",
3592835941
"https://html.spec.whatwg.org/multipage/popover.html#dom-togglepopover",
35942+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Adom-togglepopoveroptions-force",
35943+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Amap-exists-2",
35944+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Adom-togglepopoveroptions-force-2",
35945+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Adom-showpopoveroptions-source-2",
35946+
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Amap-exists-3",
3592935947
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Athis-3",
3593035948
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-visibility-state-4",
3593135949
"https://html.spec.whatwg.org/multipage/popover.html#the-popover-attribute%3Apopover-showing-state-3",
@@ -37432,6 +37450,9 @@
3743237450
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Atermination-nesting-level",
3743337451
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aentry-global-object",
3743437452
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aconcept-document-window",
37453+
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aencoding-parsing-a-url",
37454+
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Asyntaxerror",
37455+
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Adomexception",
3743537456
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aconcept-window-open-features-tokenize",
3743637457
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Amap-exists",
3743737458
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aconcept-window-open-features-parse-boolean",
@@ -37451,20 +37472,12 @@
3745137472
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Anav-bc-2",
3745237473
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aurl-record",
3745337474
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aabout%3Ablank-2",
37454-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aencoding-parsing-a-url",
37455-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aentry-settings-object",
37456-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Asyntaxerror",
37457-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Adomexception",
3745837475
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Amatches-about%3Ablank",
3745937476
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aurl-and-history-update-steps",
3746037477
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Anav-document",
3746137478
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Anavigate",
3746237479
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Anavigation-referrer-policy",
3746337480
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aexceptions-enabled",
37464-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aencoding-parsing-a-url-2",
37465-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aentry-settings-object-2",
37466-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Asyntaxerror-2",
37467-
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Adomexception-2",
3746837481
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Anavigate-2",
3746937482
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Anavigation-referrer-policy-2",
3747037483
"https://html.spec.whatwg.org/multipage/nav-history-apis.html#apis-for-creating-and-navigating-browsing-contexts-by-name%3Aexceptions-enabled-2",
@@ -65600,6 +65613,7 @@
6560065613
"https://html.spec.whatwg.org/multipage/references.html#refsCSP",
6560165614
"https://html.spec.whatwg.org/multipage/references.html#refsCSS",
6560265615
"https://html.spec.whatwg.org/multipage/references.html#refsCSSALIGN",
65616+
"https://html.spec.whatwg.org/multipage/references.html#refsCSSANCHOR",
6560365617
"https://html.spec.whatwg.org/multipage/references.html#refsCSSANIMATIONS",
6560465618
"https://html.spec.whatwg.org/multipage/references.html#refsCSSATTR",
6560565619
"https://html.spec.whatwg.org/multipage/references.html#refsCSSBG",

0 commit comments

Comments
 (0)