Skip to content

Commit

Permalink
Publish curated data from a264e96
Browse files Browse the repository at this point in the history
Curated data generated from raw data at a264e96
  • Loading branch information
curation-bot committed Jan 15, 2025
1 parent 4af5e98 commit e6af7e4
Show file tree
Hide file tree
Showing 12 changed files with 1,018 additions and 166 deletions.
299 changes: 244 additions & 55 deletions ed/algorithms/html.json

Large diffs are not rendered by default.

430 changes: 430 additions & 0 deletions ed/dfns/html.json

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions ed/headings/html.json
Original file line number Diff line number Diff line change
Expand Up @@ -3355,6 +3355,13 @@
"title": "The dialog element",
"number": "4.11.4"
},
{
"id": "dialog-light-dismiss",
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#dialog-light-dismiss",
"level": 4,
"title": "Dialog light dismiss",
"number": "4.11.5"
},
{
"id": "scripting-3",
"href": "https://html.spec.whatwg.org/multipage/scripting.html#scripting-3",
Expand Down
2 changes: 1 addition & 1 deletion ed/headings/tc39-temporal.json
Original file line number Diff line number Diff line change
Expand Up @@ -3675,7 +3675,7 @@
{
"id": "sec-temporal-iso8601grammar",
"href": "https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar",
"title": "ISO 8601 grammar",
"title": "RFC 9557 / ISO 8601 grammar",
"level": 2,
"number": "13.30"
},
Expand Down
2 changes: 2 additions & 0 deletions ed/idl/html.idl
Original file line number Diff line number Diff line change
Expand Up @@ -1222,9 +1222,11 @@ interface HTMLDialogElement : HTMLElement {

[CEReactions] attribute boolean open;
attribute DOMString returnValue;
[CEReactions] attribute DOMString closedBy;
[CEReactions] undefined show();
[CEReactions] undefined showModal();
[CEReactions] undefined close(optional DOMString returnValue);
[CEReactions] undefined requestClose(optional DOMString returnValue);
};

[Exposed=Window]
Expand Down
2 changes: 2 additions & 0 deletions ed/idlnames/HTMLDialogElement.idl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ interface HTMLDialogElement : HTMLElement {

[CEReactions] attribute boolean open;
attribute DOMString returnValue;
[CEReactions] attribute DOMString closedBy;
[CEReactions] undefined show();
[CEReactions] undefined showModal();
[CEReactions] undefined close(optional DOMString returnValue);
[CEReactions] undefined requestClose(optional DOMString returnValue);
};
2 changes: 1 addition & 1 deletion ed/idlnamesparsed/HTMLDialogElement.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"title": "HTML Standard",
"url": "https://html.spec.whatwg.org/multipage/"
},
"fragment": "[Exposed=Window]\ninterface HTMLDialogElement : HTMLElement {\n [HTMLConstructor] constructor();\n\n [CEReactions] attribute boolean open;\n attribute DOMString returnValue;\n [CEReactions] undefined show();\n [CEReactions] undefined showModal();\n [CEReactions] undefined close(optional DOMString returnValue);\n};",
"fragment": "[Exposed=Window]\ninterface HTMLDialogElement : HTMLElement {\n [HTMLConstructor] constructor();\n\n [CEReactions] attribute boolean open;\n attribute DOMString returnValue;\n [CEReactions] attribute DOMString closedBy;\n [CEReactions] undefined show();\n [CEReactions] undefined showModal();\n [CEReactions] undefined close(optional DOMString returnValue);\n [CEReactions] undefined requestClose(optional DOMString returnValue);\n};",
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#htmldialogelement"
},
"extended": [],
Expand Down
65 changes: 64 additions & 1 deletion ed/idlparsed/html.json
Original file line number Diff line number Diff line change
Expand Up @@ -15383,7 +15383,7 @@
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#htmldetailselement"
},
"HTMLDialogElement": {
"fragment": "[Exposed=Window]\ninterface HTMLDialogElement : HTMLElement {\n [HTMLConstructor] constructor();\n\n [CEReactions] attribute boolean open;\n attribute DOMString returnValue;\n [CEReactions] undefined show();\n [CEReactions] undefined showModal();\n [CEReactions] undefined close(optional DOMString returnValue);\n};",
"fragment": "[Exposed=Window]\ninterface HTMLDialogElement : HTMLElement {\n [HTMLConstructor] constructor();\n\n [CEReactions] attribute boolean open;\n attribute DOMString returnValue;\n [CEReactions] attribute DOMString closedBy;\n [CEReactions] undefined show();\n [CEReactions] undefined showModal();\n [CEReactions] undefined close(optional DOMString returnValue);\n [CEReactions] undefined requestClose(optional DOMString returnValue);\n};",
"type": "interface",
"name": "HTMLDialogElement",
"inheritance": "HTMLElement",
Expand Down Expand Up @@ -15439,6 +15439,29 @@
"readonly": false,
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-dialog-returnvalue"
},
{
"type": "attribute",
"name": "closedBy",
"idlType": {
"type": "attribute-type",
"extAttrs": [],
"generic": "",
"nullable": false,
"union": false,
"idlType": "DOMString"
},
"extAttrs": [
{
"type": "extended-attribute",
"name": "CEReactions",
"rhs": null,
"arguments": []
}
],
"special": "",
"readonly": false,
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-dialog-closedby"
},
{
"type": "operation",
"name": "show",
Expand Down Expand Up @@ -15524,6 +15547,46 @@
],
"special": "",
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-dialog-close"
},
{
"type": "operation",
"name": "requestClose",
"idlType": {
"type": "return-type",
"extAttrs": [],
"generic": "",
"nullable": false,
"union": false,
"idlType": "undefined"
},
"arguments": [
{
"type": "argument",
"name": "returnValue",
"extAttrs": [],
"idlType": {
"type": "argument-type",
"extAttrs": [],
"generic": "",
"nullable": false,
"union": false,
"idlType": "DOMString"
},
"default": null,
"optional": true,
"variadic": false
}
],
"extAttrs": [
{
"type": "extended-attribute",
"name": "CEReactions",
"rhs": null,
"arguments": []
}
],
"special": "",
"href": "https://html.spec.whatwg.org/multipage/interactive-elements.html#dom-dialog-requestclose"
}
],
"extAttrs": [
Expand Down
Loading

0 comments on commit e6af7e4

Please sign in to comment.