@nextwebwg/html-next 1.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (196) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +26 -0
  3. package/dist/ast.d.ts +7 -0
  4. package/dist/ast.d.ts.map +1 -0
  5. package/dist/ast.js +2 -0
  6. package/dist/ast.js.map +1 -0
  7. package/dist/browser-loader.bundle.js +9 -0
  8. package/dist/browser-loader.d.ts +35 -0
  9. package/dist/browser-loader.d.ts.map +1 -0
  10. package/dist/browser-loader.js +83 -0
  11. package/dist/browser-loader.js.map +1 -0
  12. package/dist/browser-source.d.ts +10 -0
  13. package/dist/browser-source.d.ts.map +1 -0
  14. package/dist/browser-source.js +97 -0
  15. package/dist/browser-source.js.map +1 -0
  16. package/dist/browser.d.ts +5 -0
  17. package/dist/browser.d.ts.map +1 -0
  18. package/dist/browser.js +9 -0
  19. package/dist/browser.js.map +1 -0
  20. package/dist/cli.d.ts +31 -0
  21. package/dist/cli.d.ts.map +1 -0
  22. package/dist/cli.js +138 -0
  23. package/dist/cli.js.map +1 -0
  24. package/dist/component-styles-build.d.ts +11 -0
  25. package/dist/component-styles-build.d.ts.map +1 -0
  26. package/dist/component-styles-build.js +74 -0
  27. package/dist/component-styles-build.js.map +1 -0
  28. package/dist/component-styles.d.ts +37 -0
  29. package/dist/component-styles.d.ts.map +1 -0
  30. package/dist/component-styles.js +236 -0
  31. package/dist/component-styles.js.map +1 -0
  32. package/dist/contract-platform.d.ts +5 -0
  33. package/dist/contract-platform.d.ts.map +1 -0
  34. package/dist/contract-platform.js +8 -0
  35. package/dist/contract-platform.js.map +1 -0
  36. package/dist/contract.d.ts +14 -0
  37. package/dist/contract.d.ts.map +1 -0
  38. package/dist/contract.js +234 -0
  39. package/dist/contract.js.map +1 -0
  40. package/dist/controller-files.d.ts +10 -0
  41. package/dist/controller-files.d.ts.map +1 -0
  42. package/dist/controller-files.js +54 -0
  43. package/dist/controller-files.js.map +1 -0
  44. package/dist/controller.d.ts +15 -0
  45. package/dist/controller.d.ts.map +1 -0
  46. package/dist/controller.js +33 -0
  47. package/dist/controller.js.map +1 -0
  48. package/dist/data.d.ts +28 -0
  49. package/dist/data.d.ts.map +1 -0
  50. package/dist/data.js +100 -0
  51. package/dist/data.js.map +1 -0
  52. package/dist/diagnostics.d.ts +11 -0
  53. package/dist/diagnostics.d.ts.map +1 -0
  54. package/dist/diagnostics.js +13 -0
  55. package/dist/diagnostics.js.map +1 -0
  56. package/dist/expression.d.ts +80 -0
  57. package/dist/expression.d.ts.map +1 -0
  58. package/dist/expression.js +474 -0
  59. package/dist/expression.js.map +1 -0
  60. package/dist/freeze.d.ts +2 -0
  61. package/dist/freeze.d.ts.map +1 -0
  62. package/dist/freeze.js +8 -0
  63. package/dist/freeze.js.map +1 -0
  64. package/dist/generate.d.ts +11 -0
  65. package/dist/generate.d.ts.map +1 -0
  66. package/dist/generate.js +41 -0
  67. package/dist/generate.js.map +1 -0
  68. package/dist/generated/dom-properties.d.ts +8 -0
  69. package/dist/generated/dom-properties.d.ts.map +1 -0
  70. package/dist/generated/dom-properties.js +1410 -0
  71. package/dist/generated/dom-properties.js.map +1 -0
  72. package/dist/generated-runtime.d.ts +42 -0
  73. package/dist/generated-runtime.d.ts.map +1 -0
  74. package/dist/generated-runtime.js +266 -0
  75. package/dist/generated-runtime.js.map +1 -0
  76. package/dist/graph.d.ts +37 -0
  77. package/dist/graph.d.ts.map +1 -0
  78. package/dist/graph.js +81 -0
  79. package/dist/graph.js.map +1 -0
  80. package/dist/index.d.ts +29 -0
  81. package/dist/index.d.ts.map +1 -0
  82. package/dist/index.js +23 -0
  83. package/dist/index.js.map +1 -0
  84. package/dist/language.d.ts +7 -0
  85. package/dist/language.d.ts.map +1 -0
  86. package/dist/language.js +43 -0
  87. package/dist/language.js.map +1 -0
  88. package/dist/names.d.ts +4 -0
  89. package/dist/names.d.ts.map +1 -0
  90. package/dist/names.js +19 -0
  91. package/dist/names.js.map +1 -0
  92. package/dist/node-loader.d.ts +22 -0
  93. package/dist/node-loader.d.ts.map +1 -0
  94. package/dist/node-loader.js +109 -0
  95. package/dist/node-loader.js.map +1 -0
  96. package/dist/package-config.d.ts +22 -0
  97. package/dist/package-config.d.ts.map +1 -0
  98. package/dist/package-config.js +2 -0
  99. package/dist/package-config.js.map +1 -0
  100. package/dist/package.d.ts +9 -0
  101. package/dist/package.d.ts.map +1 -0
  102. package/dist/package.js +208 -0
  103. package/dist/package.js.map +1 -0
  104. package/dist/parser.d.ts +11 -0
  105. package/dist/parser.d.ts.map +1 -0
  106. package/dist/parser.js +938 -0
  107. package/dist/parser.js.map +1 -0
  108. package/dist/platform.d.ts +3 -0
  109. package/dist/platform.d.ts.map +1 -0
  110. package/dist/platform.js +26 -0
  111. package/dist/platform.js.map +1 -0
  112. package/dist/reactivity.d.ts +88 -0
  113. package/dist/reactivity.d.ts.map +1 -0
  114. package/dist/reactivity.js +594 -0
  115. package/dist/reactivity.js.map +1 -0
  116. package/dist/registry.d.ts +14 -0
  117. package/dist/registry.d.ts.map +1 -0
  118. package/dist/registry.js +39 -0
  119. package/dist/registry.js.map +1 -0
  120. package/dist/resolve.d.ts +24 -0
  121. package/dist/resolve.d.ts.map +1 -0
  122. package/dist/resolve.js +65 -0
  123. package/dist/resolve.js.map +1 -0
  124. package/dist/runtime.d.ts +110 -0
  125. package/dist/runtime.d.ts.map +1 -0
  126. package/dist/runtime.js +1926 -0
  127. package/dist/runtime.js.map +1 -0
  128. package/dist/sanitize.d.ts +8 -0
  129. package/dist/sanitize.d.ts.map +1 -0
  130. package/dist/sanitize.js +38 -0
  131. package/dist/sanitize.js.map +1 -0
  132. package/dist/source-graph.d.ts +5 -0
  133. package/dist/source-graph.d.ts.map +1 -0
  134. package/dist/source-graph.js +60 -0
  135. package/dist/source-graph.js.map +1 -0
  136. package/dist/source-parser.d.ts +4 -0
  137. package/dist/source-parser.d.ts.map +1 -0
  138. package/dist/source-parser.js +38 -0
  139. package/dist/source-parser.js.map +1 -0
  140. package/dist/source.d.ts +4 -0
  141. package/dist/source.d.ts.map +1 -0
  142. package/dist/source.js +6 -0
  143. package/dist/source.js.map +1 -0
  144. package/dist/targets/backend.d.ts +28 -0
  145. package/dist/targets/backend.d.ts.map +1 -0
  146. package/dist/targets/backend.js +42 -0
  147. package/dist/targets/backend.js.map +1 -0
  148. package/dist/targets/docs.d.ts +3 -0
  149. package/dist/targets/docs.d.ts.map +1 -0
  150. package/dist/targets/docs.js +85 -0
  151. package/dist/targets/docs.js.map +1 -0
  152. package/dist/targets/native-reactive.d.ts +41 -0
  153. package/dist/targets/native-reactive.d.ts.map +1 -0
  154. package/dist/targets/native-reactive.js +169 -0
  155. package/dist/targets/native-reactive.js.map +1 -0
  156. package/dist/targets/shared.d.ts +15 -0
  157. package/dist/targets/shared.d.ts.map +1 -0
  158. package/dist/targets/shared.js +122 -0
  159. package/dist/targets/shared.js.map +1 -0
  160. package/dist/targets/vanilla.d.ts +6 -0
  161. package/dist/targets/vanilla.d.ts.map +1 -0
  162. package/dist/targets/vanilla.js +442 -0
  163. package/dist/targets/vanilla.js.map +1 -0
  164. package/dist/targets/vue.d.ts +3 -0
  165. package/dist/targets/vue.d.ts.map +1 -0
  166. package/dist/targets/vue.js +577 -0
  167. package/dist/targets/vue.js.map +1 -0
  168. package/dist/template.d.ts +172 -0
  169. package/dist/template.d.ts.map +1 -0
  170. package/dist/template.js +2 -0
  171. package/dist/template.js.map +1 -0
  172. package/dist/type-system.d.ts +80 -0
  173. package/dist/type-system.d.ts.map +1 -0
  174. package/dist/type-system.js +414 -0
  175. package/dist/type-system.js.map +1 -0
  176. package/dist/types.d.ts +51 -0
  177. package/dist/types.d.ts.map +1 -0
  178. package/dist/types.js +2 -0
  179. package/dist/types.js.map +1 -0
  180. package/dist/validate.d.ts +38 -0
  181. package/dist/validate.d.ts.map +1 -0
  182. package/dist/validate.js +297 -0
  183. package/dist/validate.js.map +1 -0
  184. package/dist/validation.d.ts +6 -0
  185. package/dist/validation.d.ts.map +1 -0
  186. package/dist/validation.js +6 -0
  187. package/dist/validation.js.map +1 -0
  188. package/dist/validity-css.d.ts +6 -0
  189. package/dist/validity-css.d.ts.map +1 -0
  190. package/dist/validity-css.js +11 -0
  191. package/dist/validity-css.js.map +1 -0
  192. package/dist/validity.d.ts +45 -0
  193. package/dist/validity.d.ts.map +1 -0
  194. package/dist/validity.js +445 -0
  195. package/dist/validity.js.map +1 -0
  196. package/package.json +124 -0
@@ -0,0 +1,1410 @@
1
+ // Generated by scripts/generate-dom-properties.ts.
2
+ // Do not edit by hand.
3
+ export const DOM_PROPERTY_DATA_VERSION = "typescript@7.0.2";
4
+ export const DOM_TAG_INTERFACES = {
5
+ "a": "HTMLAnchorElement",
6
+ "abbr": "HTMLElement",
7
+ "address": "HTMLElement",
8
+ "area": "HTMLAreaElement",
9
+ "article": "HTMLElement",
10
+ "aside": "HTMLElement",
11
+ "audio": "HTMLAudioElement",
12
+ "b": "HTMLElement",
13
+ "base": "HTMLBaseElement",
14
+ "bdi": "HTMLElement",
15
+ "bdo": "HTMLElement",
16
+ "blockquote": "HTMLQuoteElement",
17
+ "body": "HTMLBodyElement",
18
+ "br": "HTMLBRElement",
19
+ "button": "HTMLButtonElement",
20
+ "canvas": "HTMLCanvasElement",
21
+ "caption": "HTMLTableCaptionElement",
22
+ "cite": "HTMLElement",
23
+ "code": "HTMLElement",
24
+ "col": "HTMLTableColElement",
25
+ "colgroup": "HTMLTableColElement",
26
+ "data": "HTMLDataElement",
27
+ "datalist": "HTMLDataListElement",
28
+ "dd": "HTMLElement",
29
+ "del": "HTMLModElement",
30
+ "details": "HTMLDetailsElement",
31
+ "dfn": "HTMLElement",
32
+ "dialog": "HTMLDialogElement",
33
+ "div": "HTMLDivElement",
34
+ "dl": "HTMLDListElement",
35
+ "dt": "HTMLElement",
36
+ "em": "HTMLElement",
37
+ "embed": "HTMLEmbedElement",
38
+ "fieldset": "HTMLFieldSetElement",
39
+ "figcaption": "HTMLElement",
40
+ "figure": "HTMLElement",
41
+ "footer": "HTMLElement",
42
+ "form": "HTMLFormElement",
43
+ "h1": "HTMLHeadingElement",
44
+ "h2": "HTMLHeadingElement",
45
+ "h3": "HTMLHeadingElement",
46
+ "h4": "HTMLHeadingElement",
47
+ "h5": "HTMLHeadingElement",
48
+ "h6": "HTMLHeadingElement",
49
+ "head": "HTMLHeadElement",
50
+ "header": "HTMLElement",
51
+ "hgroup": "HTMLElement",
52
+ "hr": "HTMLHRElement",
53
+ "html": "HTMLHtmlElement",
54
+ "i": "HTMLElement",
55
+ "iframe": "HTMLIFrameElement",
56
+ "img": "HTMLImageElement",
57
+ "input": "HTMLInputElement",
58
+ "ins": "HTMLModElement",
59
+ "kbd": "HTMLElement",
60
+ "label": "HTMLLabelElement",
61
+ "legend": "HTMLLegendElement",
62
+ "li": "HTMLLIElement",
63
+ "link": "HTMLLinkElement",
64
+ "main": "HTMLElement",
65
+ "map": "HTMLMapElement",
66
+ "mark": "HTMLElement",
67
+ "menu": "HTMLMenuElement",
68
+ "meta": "HTMLMetaElement",
69
+ "meter": "HTMLMeterElement",
70
+ "nav": "HTMLElement",
71
+ "noscript": "HTMLElement",
72
+ "object": "HTMLObjectElement",
73
+ "ol": "HTMLOListElement",
74
+ "optgroup": "HTMLOptGroupElement",
75
+ "option": "HTMLOptionElement",
76
+ "output": "HTMLOutputElement",
77
+ "p": "HTMLParagraphElement",
78
+ "picture": "HTMLPictureElement",
79
+ "pre": "HTMLPreElement",
80
+ "progress": "HTMLProgressElement",
81
+ "q": "HTMLQuoteElement",
82
+ "rp": "HTMLElement",
83
+ "rt": "HTMLElement",
84
+ "ruby": "HTMLElement",
85
+ "s": "HTMLElement",
86
+ "samp": "HTMLElement",
87
+ "script": "HTMLScriptElement",
88
+ "search": "HTMLElement",
89
+ "section": "HTMLElement",
90
+ "select": "HTMLSelectElement",
91
+ "slot": "HTMLSlotElement",
92
+ "small": "HTMLElement",
93
+ "source": "HTMLSourceElement",
94
+ "span": "HTMLSpanElement",
95
+ "strong": "HTMLElement",
96
+ "style": "HTMLStyleElement",
97
+ "sub": "HTMLElement",
98
+ "summary": "HTMLElement",
99
+ "sup": "HTMLElement",
100
+ "table": "HTMLTableElement",
101
+ "tbody": "HTMLTableSectionElement",
102
+ "td": "HTMLTableCellElement",
103
+ "template": "HTMLTemplateElement",
104
+ "textarea": "HTMLTextAreaElement",
105
+ "tfoot": "HTMLTableSectionElement",
106
+ "th": "HTMLTableCellElement",
107
+ "thead": "HTMLTableSectionElement",
108
+ "time": "HTMLTimeElement",
109
+ "title": "HTMLTitleElement",
110
+ "tr": "HTMLTableRowElement",
111
+ "track": "HTMLTrackElement",
112
+ "u": "HTMLElement",
113
+ "ul": "HTMLUListElement",
114
+ "var": "HTMLElement",
115
+ "video": "HTMLVideoElement",
116
+ "wbr": "HTMLElement"
117
+ };
118
+ export const DOM_INTERFACES = {
119
+ "ARIAMixin": {
120
+ "extends": [],
121
+ "properties": {
122
+ "ariaactivedescendantelement": "ariaActiveDescendantElement",
123
+ "ariaatomic": "ariaAtomic",
124
+ "ariaautocomplete": "ariaAutoComplete",
125
+ "ariabraillelabel": "ariaBrailleLabel",
126
+ "ariabrailleroledescription": "ariaBrailleRoleDescription",
127
+ "ariabusy": "ariaBusy",
128
+ "ariachecked": "ariaChecked",
129
+ "ariacolcount": "ariaColCount",
130
+ "ariacolindex": "ariaColIndex",
131
+ "ariacolindextext": "ariaColIndexText",
132
+ "ariacolspan": "ariaColSpan",
133
+ "ariacontrolselements": "ariaControlsElements",
134
+ "ariacurrent": "ariaCurrent",
135
+ "ariadescribedbyelements": "ariaDescribedByElements",
136
+ "ariadescription": "ariaDescription",
137
+ "ariadetailselements": "ariaDetailsElements",
138
+ "ariadisabled": "ariaDisabled",
139
+ "ariaerrormessageelements": "ariaErrorMessageElements",
140
+ "ariaexpanded": "ariaExpanded",
141
+ "ariaflowtoelements": "ariaFlowToElements",
142
+ "ariahaspopup": "ariaHasPopup",
143
+ "ariahidden": "ariaHidden",
144
+ "ariainvalid": "ariaInvalid",
145
+ "ariakeyshortcuts": "ariaKeyShortcuts",
146
+ "arialabel": "ariaLabel",
147
+ "arialabelledbyelements": "ariaLabelledByElements",
148
+ "arialevel": "ariaLevel",
149
+ "arialive": "ariaLive",
150
+ "ariamodal": "ariaModal",
151
+ "ariamultiline": "ariaMultiLine",
152
+ "ariamultiselectable": "ariaMultiSelectable",
153
+ "ariaorientation": "ariaOrientation",
154
+ "ariaownselements": "ariaOwnsElements",
155
+ "ariaplaceholder": "ariaPlaceholder",
156
+ "ariaposinset": "ariaPosInSet",
157
+ "ariapressed": "ariaPressed",
158
+ "ariareadonly": "ariaReadOnly",
159
+ "ariarelevant": "ariaRelevant",
160
+ "ariarequired": "ariaRequired",
161
+ "ariaroledescription": "ariaRoleDescription",
162
+ "ariarowcount": "ariaRowCount",
163
+ "ariarowindex": "ariaRowIndex",
164
+ "ariarowindextext": "ariaRowIndexText",
165
+ "ariarowspan": "ariaRowSpan",
166
+ "ariaselected": "ariaSelected",
167
+ "ariasetsize": "ariaSetSize",
168
+ "ariasort": "ariaSort",
169
+ "ariavaluemax": "ariaValueMax",
170
+ "ariavaluemin": "ariaValueMin",
171
+ "ariavaluenow": "ariaValueNow",
172
+ "ariavaluetext": "ariaValueText",
173
+ "role": "role"
174
+ }
175
+ },
176
+ "Animatable": {
177
+ "extends": [],
178
+ "properties": {}
179
+ },
180
+ "ChildNode": {
181
+ "extends": [
182
+ "Node"
183
+ ],
184
+ "properties": {}
185
+ },
186
+ "Element": {
187
+ "extends": [
188
+ "ARIAMixin",
189
+ "Animatable",
190
+ "ChildNode",
191
+ "Node",
192
+ "NonDocumentTypeChildNode",
193
+ "ParentNode",
194
+ "Slottable"
195
+ ],
196
+ "properties": {
197
+ "attributes": "attributes",
198
+ "classname": "className",
199
+ "clientheight": "clientHeight",
200
+ "clientleft": "clientLeft",
201
+ "clienttop": "clientTop",
202
+ "clientwidth": "clientWidth",
203
+ "currentcsszoom": "currentCSSZoom",
204
+ "customelementregistry": "customElementRegistry",
205
+ "id": "id",
206
+ "innerhtml": "innerHTML",
207
+ "localname": "localName",
208
+ "namespaceuri": "namespaceURI",
209
+ "onfullscreenchange": "onfullscreenchange",
210
+ "onfullscreenerror": "onfullscreenerror",
211
+ "outerhtml": "outerHTML",
212
+ "ownerdocument": "ownerDocument",
213
+ "prefix": "prefix",
214
+ "scrollheight": "scrollHeight",
215
+ "scrollleft": "scrollLeft",
216
+ "scrolltop": "scrollTop",
217
+ "scrollwidth": "scrollWidth",
218
+ "shadowroot": "shadowRoot",
219
+ "slot": "slot",
220
+ "tagname": "tagName"
221
+ }
222
+ },
223
+ "ElementCSSInlineStyle": {
224
+ "extends": [],
225
+ "properties": {
226
+ "attributestylemap": "attributeStyleMap"
227
+ }
228
+ },
229
+ "ElementContentEditable": {
230
+ "extends": [],
231
+ "properties": {
232
+ "contenteditable": "contentEditable",
233
+ "enterkeyhint": "enterKeyHint",
234
+ "inputmode": "inputMode",
235
+ "iscontenteditable": "isContentEditable"
236
+ }
237
+ },
238
+ "EventTarget": {
239
+ "extends": [],
240
+ "properties": {}
241
+ },
242
+ "GlobalEventHandlers": {
243
+ "extends": [],
244
+ "properties": {
245
+ "onabort": "onabort",
246
+ "onanimationcancel": "onanimationcancel",
247
+ "onanimationend": "onanimationend",
248
+ "onanimationiteration": "onanimationiteration",
249
+ "onanimationstart": "onanimationstart",
250
+ "onauxclick": "onauxclick",
251
+ "onbeforeinput": "onbeforeinput",
252
+ "onbeforematch": "onbeforematch",
253
+ "onbeforetoggle": "onbeforetoggle",
254
+ "onblur": "onblur",
255
+ "oncancel": "oncancel",
256
+ "oncanplay": "oncanplay",
257
+ "oncanplaythrough": "oncanplaythrough",
258
+ "onchange": "onchange",
259
+ "onclick": "onclick",
260
+ "onclose": "onclose",
261
+ "oncommand": "oncommand",
262
+ "oncontextlost": "oncontextlost",
263
+ "oncontextmenu": "oncontextmenu",
264
+ "oncontextrestored": "oncontextrestored",
265
+ "oncopy": "oncopy",
266
+ "oncuechange": "oncuechange",
267
+ "oncut": "oncut",
268
+ "ondblclick": "ondblclick",
269
+ "ondrag": "ondrag",
270
+ "ondragend": "ondragend",
271
+ "ondragenter": "ondragenter",
272
+ "ondragleave": "ondragleave",
273
+ "ondragover": "ondragover",
274
+ "ondragstart": "ondragstart",
275
+ "ondrop": "ondrop",
276
+ "ondurationchange": "ondurationchange",
277
+ "onemptied": "onemptied",
278
+ "onended": "onended",
279
+ "onerror": "onerror",
280
+ "onfocus": "onfocus",
281
+ "onformdata": "onformdata",
282
+ "ongotpointercapture": "ongotpointercapture",
283
+ "oninput": "oninput",
284
+ "oninvalid": "oninvalid",
285
+ "onkeydown": "onkeydown",
286
+ "onkeypress": "onkeypress",
287
+ "onkeyup": "onkeyup",
288
+ "onload": "onload",
289
+ "onloadeddata": "onloadeddata",
290
+ "onloadedmetadata": "onloadedmetadata",
291
+ "onloadstart": "onloadstart",
292
+ "onlostpointercapture": "onlostpointercapture",
293
+ "onmousedown": "onmousedown",
294
+ "onmouseenter": "onmouseenter",
295
+ "onmouseleave": "onmouseleave",
296
+ "onmousemove": "onmousemove",
297
+ "onmouseout": "onmouseout",
298
+ "onmouseover": "onmouseover",
299
+ "onmouseup": "onmouseup",
300
+ "onpaste": "onpaste",
301
+ "onpause": "onpause",
302
+ "onplay": "onplay",
303
+ "onplaying": "onplaying",
304
+ "onpointercancel": "onpointercancel",
305
+ "onpointerdown": "onpointerdown",
306
+ "onpointerenter": "onpointerenter",
307
+ "onpointerleave": "onpointerleave",
308
+ "onpointermove": "onpointermove",
309
+ "onpointerout": "onpointerout",
310
+ "onpointerover": "onpointerover",
311
+ "onpointerrawupdate": "onpointerrawupdate",
312
+ "onpointerup": "onpointerup",
313
+ "onprogress": "onprogress",
314
+ "onratechange": "onratechange",
315
+ "onreset": "onreset",
316
+ "onresize": "onresize",
317
+ "onscroll": "onscroll",
318
+ "onscrollend": "onscrollend",
319
+ "onsecuritypolicyviolation": "onsecuritypolicyviolation",
320
+ "onseeked": "onseeked",
321
+ "onseeking": "onseeking",
322
+ "onselect": "onselect",
323
+ "onselectionchange": "onselectionchange",
324
+ "onselectstart": "onselectstart",
325
+ "onslotchange": "onslotchange",
326
+ "onstalled": "onstalled",
327
+ "onsubmit": "onsubmit",
328
+ "onsuspend": "onsuspend",
329
+ "ontimeupdate": "ontimeupdate",
330
+ "ontoggle": "ontoggle",
331
+ "ontouchcancel": "ontouchcancel",
332
+ "ontouchend": "ontouchend",
333
+ "ontouchmove": "ontouchmove",
334
+ "ontouchstart": "ontouchstart",
335
+ "ontransitioncancel": "ontransitioncancel",
336
+ "ontransitionend": "ontransitionend",
337
+ "ontransitionrun": "ontransitionrun",
338
+ "ontransitionstart": "ontransitionstart",
339
+ "onvolumechange": "onvolumechange",
340
+ "onwaiting": "onwaiting",
341
+ "onwebkitanimationend": "onwebkitanimationend",
342
+ "onwebkitanimationiteration": "onwebkitanimationiteration",
343
+ "onwebkitanimationstart": "onwebkitanimationstart",
344
+ "onwebkittransitionend": "onwebkittransitionend",
345
+ "onwheel": "onwheel"
346
+ }
347
+ },
348
+ "HTMLAnchorElement": {
349
+ "extends": [
350
+ "HTMLElement",
351
+ "HTMLHyperlinkElementUtils"
352
+ ],
353
+ "properties": {
354
+ "charset": "charset",
355
+ "coords": "coords",
356
+ "download": "download",
357
+ "hreflang": "hreflang",
358
+ "name": "name",
359
+ "ping": "ping",
360
+ "referrerpolicy": "referrerPolicy",
361
+ "rel": "rel",
362
+ "rev": "rev",
363
+ "shape": "shape",
364
+ "target": "target",
365
+ "text": "text",
366
+ "type": "type"
367
+ }
368
+ },
369
+ "HTMLAreaElement": {
370
+ "extends": [
371
+ "HTMLElement",
372
+ "HTMLHyperlinkElementUtils"
373
+ ],
374
+ "properties": {
375
+ "alt": "alt",
376
+ "coords": "coords",
377
+ "download": "download",
378
+ "nohref": "noHref",
379
+ "ping": "ping",
380
+ "referrerpolicy": "referrerPolicy",
381
+ "rel": "rel",
382
+ "shape": "shape",
383
+ "target": "target"
384
+ }
385
+ },
386
+ "HTMLAudioElement": {
387
+ "extends": [
388
+ "HTMLMediaElement"
389
+ ],
390
+ "properties": {}
391
+ },
392
+ "HTMLBRElement": {
393
+ "extends": [
394
+ "HTMLElement"
395
+ ],
396
+ "properties": {
397
+ "clear": "clear"
398
+ }
399
+ },
400
+ "HTMLBaseElement": {
401
+ "extends": [
402
+ "HTMLElement"
403
+ ],
404
+ "properties": {
405
+ "href": "href",
406
+ "target": "target"
407
+ }
408
+ },
409
+ "HTMLBodyElement": {
410
+ "extends": [
411
+ "HTMLElement",
412
+ "WindowEventHandlers"
413
+ ],
414
+ "properties": {
415
+ "alink": "aLink",
416
+ "background": "background",
417
+ "bgcolor": "bgColor",
418
+ "link": "link",
419
+ "text": "text",
420
+ "vlink": "vLink"
421
+ }
422
+ },
423
+ "HTMLButtonElement": {
424
+ "extends": [
425
+ "HTMLElement",
426
+ "PopoverTargetAttributes"
427
+ ],
428
+ "properties": {
429
+ "command": "command",
430
+ "commandforelement": "commandForElement",
431
+ "disabled": "disabled",
432
+ "form": "form",
433
+ "formaction": "formAction",
434
+ "formenctype": "formEnctype",
435
+ "formmethod": "formMethod",
436
+ "formnovalidate": "formNoValidate",
437
+ "formtarget": "formTarget",
438
+ "labels": "labels",
439
+ "name": "name",
440
+ "type": "type",
441
+ "validationmessage": "validationMessage",
442
+ "validity": "validity",
443
+ "value": "value",
444
+ "willvalidate": "willValidate"
445
+ }
446
+ },
447
+ "HTMLCanvasElement": {
448
+ "extends": [
449
+ "HTMLElement"
450
+ ],
451
+ "properties": {
452
+ "height": "height",
453
+ "width": "width"
454
+ }
455
+ },
456
+ "HTMLDListElement": {
457
+ "extends": [
458
+ "HTMLElement"
459
+ ],
460
+ "properties": {
461
+ "compact": "compact"
462
+ }
463
+ },
464
+ "HTMLDataElement": {
465
+ "extends": [
466
+ "HTMLElement"
467
+ ],
468
+ "properties": {
469
+ "value": "value"
470
+ }
471
+ },
472
+ "HTMLDataListElement": {
473
+ "extends": [
474
+ "HTMLElement"
475
+ ],
476
+ "properties": {
477
+ "options": "options"
478
+ }
479
+ },
480
+ "HTMLDetailsElement": {
481
+ "extends": [
482
+ "HTMLElement"
483
+ ],
484
+ "properties": {
485
+ "name": "name",
486
+ "open": "open"
487
+ }
488
+ },
489
+ "HTMLDialogElement": {
490
+ "extends": [
491
+ "HTMLElement"
492
+ ],
493
+ "properties": {
494
+ "closedby": "closedBy",
495
+ "open": "open",
496
+ "returnvalue": "returnValue"
497
+ }
498
+ },
499
+ "HTMLDivElement": {
500
+ "extends": [
501
+ "HTMLElement"
502
+ ],
503
+ "properties": {
504
+ "align": "align"
505
+ }
506
+ },
507
+ "HTMLElement": {
508
+ "extends": [
509
+ "Element",
510
+ "ElementCSSInlineStyle",
511
+ "ElementContentEditable",
512
+ "GlobalEventHandlers",
513
+ "HTMLOrSVGElement"
514
+ ],
515
+ "properties": {
516
+ "accesskey": "accessKey",
517
+ "accesskeylabel": "accessKeyLabel",
518
+ "autocapitalize": "autocapitalize",
519
+ "autocorrect": "autocorrect",
520
+ "dir": "dir",
521
+ "draggable": "draggable",
522
+ "hidden": "hidden",
523
+ "inert": "inert",
524
+ "innertext": "innerText",
525
+ "lang": "lang",
526
+ "offsetheight": "offsetHeight",
527
+ "offsetleft": "offsetLeft",
528
+ "offsetparent": "offsetParent",
529
+ "offsettop": "offsetTop",
530
+ "offsetwidth": "offsetWidth",
531
+ "outertext": "outerText",
532
+ "popover": "popover",
533
+ "spellcheck": "spellcheck",
534
+ "title": "title",
535
+ "translate": "translate",
536
+ "writingsuggestions": "writingSuggestions"
537
+ }
538
+ },
539
+ "HTMLEmbedElement": {
540
+ "extends": [
541
+ "HTMLElement"
542
+ ],
543
+ "properties": {
544
+ "align": "align",
545
+ "height": "height",
546
+ "name": "name",
547
+ "src": "src",
548
+ "type": "type",
549
+ "width": "width"
550
+ }
551
+ },
552
+ "HTMLFieldSetElement": {
553
+ "extends": [
554
+ "HTMLElement"
555
+ ],
556
+ "properties": {
557
+ "disabled": "disabled",
558
+ "elements": "elements",
559
+ "form": "form",
560
+ "name": "name",
561
+ "type": "type",
562
+ "validationmessage": "validationMessage",
563
+ "validity": "validity",
564
+ "willvalidate": "willValidate"
565
+ }
566
+ },
567
+ "HTMLFormElement": {
568
+ "extends": [
569
+ "HTMLElement"
570
+ ],
571
+ "properties": {
572
+ "acceptcharset": "acceptCharset",
573
+ "action": "action",
574
+ "autocomplete": "autocomplete",
575
+ "elements": "elements",
576
+ "encoding": "encoding",
577
+ "enctype": "enctype",
578
+ "length": "length",
579
+ "method": "method",
580
+ "name": "name",
581
+ "novalidate": "noValidate",
582
+ "rel": "rel",
583
+ "target": "target"
584
+ }
585
+ },
586
+ "HTMLHRElement": {
587
+ "extends": [
588
+ "HTMLElement"
589
+ ],
590
+ "properties": {
591
+ "align": "align",
592
+ "color": "color",
593
+ "noshade": "noShade",
594
+ "size": "size",
595
+ "width": "width"
596
+ }
597
+ },
598
+ "HTMLHeadElement": {
599
+ "extends": [
600
+ "HTMLElement"
601
+ ],
602
+ "properties": {}
603
+ },
604
+ "HTMLHeadingElement": {
605
+ "extends": [
606
+ "HTMLElement"
607
+ ],
608
+ "properties": {
609
+ "align": "align"
610
+ }
611
+ },
612
+ "HTMLHtmlElement": {
613
+ "extends": [
614
+ "HTMLElement"
615
+ ],
616
+ "properties": {
617
+ "version": "version"
618
+ }
619
+ },
620
+ "HTMLHyperlinkElementUtils": {
621
+ "extends": [],
622
+ "properties": {
623
+ "hash": "hash",
624
+ "host": "host",
625
+ "hostname": "hostname",
626
+ "href": "href",
627
+ "origin": "origin",
628
+ "password": "password",
629
+ "pathname": "pathname",
630
+ "port": "port",
631
+ "protocol": "protocol",
632
+ "search": "search",
633
+ "username": "username"
634
+ }
635
+ },
636
+ "HTMLIFrameElement": {
637
+ "extends": [
638
+ "HTMLElement"
639
+ ],
640
+ "properties": {
641
+ "align": "align",
642
+ "allow": "allow",
643
+ "allowfullscreen": "allowFullscreen",
644
+ "contentdocument": "contentDocument",
645
+ "contentwindow": "contentWindow",
646
+ "frameborder": "frameBorder",
647
+ "height": "height",
648
+ "loading": "loading",
649
+ "longdesc": "longDesc",
650
+ "marginheight": "marginHeight",
651
+ "marginwidth": "marginWidth",
652
+ "name": "name",
653
+ "referrerpolicy": "referrerPolicy",
654
+ "scrolling": "scrolling",
655
+ "src": "src",
656
+ "srcdoc": "srcdoc",
657
+ "width": "width"
658
+ }
659
+ },
660
+ "HTMLImageElement": {
661
+ "extends": [
662
+ "HTMLElement"
663
+ ],
664
+ "properties": {
665
+ "align": "align",
666
+ "alt": "alt",
667
+ "border": "border",
668
+ "complete": "complete",
669
+ "crossorigin": "crossOrigin",
670
+ "currentsrc": "currentSrc",
671
+ "decoding": "decoding",
672
+ "fetchpriority": "fetchPriority",
673
+ "height": "height",
674
+ "hspace": "hspace",
675
+ "ismap": "isMap",
676
+ "loading": "loading",
677
+ "longdesc": "longDesc",
678
+ "lowsrc": "lowsrc",
679
+ "name": "name",
680
+ "naturalheight": "naturalHeight",
681
+ "naturalwidth": "naturalWidth",
682
+ "referrerpolicy": "referrerPolicy",
683
+ "sizes": "sizes",
684
+ "src": "src",
685
+ "srcset": "srcset",
686
+ "usemap": "useMap",
687
+ "vspace": "vspace",
688
+ "width": "width",
689
+ "x": "x",
690
+ "y": "y"
691
+ }
692
+ },
693
+ "HTMLInputElement": {
694
+ "extends": [
695
+ "HTMLElement",
696
+ "PopoverTargetAttributes"
697
+ ],
698
+ "properties": {
699
+ "accept": "accept",
700
+ "align": "align",
701
+ "alt": "alt",
702
+ "autocomplete": "autocomplete",
703
+ "capture": "capture",
704
+ "checked": "checked",
705
+ "defaultchecked": "defaultChecked",
706
+ "defaultvalue": "defaultValue",
707
+ "dirname": "dirName",
708
+ "disabled": "disabled",
709
+ "files": "files",
710
+ "form": "form",
711
+ "formaction": "formAction",
712
+ "formenctype": "formEnctype",
713
+ "formmethod": "formMethod",
714
+ "formnovalidate": "formNoValidate",
715
+ "formtarget": "formTarget",
716
+ "height": "height",
717
+ "indeterminate": "indeterminate",
718
+ "labels": "labels",
719
+ "list": "list",
720
+ "max": "max",
721
+ "maxlength": "maxLength",
722
+ "min": "min",
723
+ "minlength": "minLength",
724
+ "multiple": "multiple",
725
+ "name": "name",
726
+ "pattern": "pattern",
727
+ "placeholder": "placeholder",
728
+ "readonly": "readOnly",
729
+ "required": "required",
730
+ "selectiondirection": "selectionDirection",
731
+ "selectionend": "selectionEnd",
732
+ "selectionstart": "selectionStart",
733
+ "size": "size",
734
+ "src": "src",
735
+ "step": "step",
736
+ "type": "type",
737
+ "usemap": "useMap",
738
+ "validationmessage": "validationMessage",
739
+ "validity": "validity",
740
+ "value": "value",
741
+ "valueasdate": "valueAsDate",
742
+ "valueasnumber": "valueAsNumber",
743
+ "webkitdirectory": "webkitdirectory",
744
+ "webkitentries": "webkitEntries",
745
+ "width": "width",
746
+ "willvalidate": "willValidate"
747
+ }
748
+ },
749
+ "HTMLLIElement": {
750
+ "extends": [
751
+ "HTMLElement"
752
+ ],
753
+ "properties": {
754
+ "type": "type",
755
+ "value": "value"
756
+ }
757
+ },
758
+ "HTMLLabelElement": {
759
+ "extends": [
760
+ "HTMLElement"
761
+ ],
762
+ "properties": {
763
+ "control": "control",
764
+ "form": "form",
765
+ "htmlfor": "htmlFor"
766
+ }
767
+ },
768
+ "HTMLLegendElement": {
769
+ "extends": [
770
+ "HTMLElement"
771
+ ],
772
+ "properties": {
773
+ "align": "align",
774
+ "form": "form"
775
+ }
776
+ },
777
+ "HTMLLinkElement": {
778
+ "extends": [
779
+ "HTMLElement",
780
+ "LinkStyle"
781
+ ],
782
+ "properties": {
783
+ "as": "as",
784
+ "charset": "charset",
785
+ "crossorigin": "crossOrigin",
786
+ "disabled": "disabled",
787
+ "fetchpriority": "fetchPriority",
788
+ "href": "href",
789
+ "hreflang": "hreflang",
790
+ "imagesizes": "imageSizes",
791
+ "imagesrcset": "imageSrcset",
792
+ "integrity": "integrity",
793
+ "media": "media",
794
+ "referrerpolicy": "referrerPolicy",
795
+ "rel": "rel",
796
+ "rev": "rev",
797
+ "target": "target",
798
+ "type": "type"
799
+ }
800
+ },
801
+ "HTMLMapElement": {
802
+ "extends": [
803
+ "HTMLElement"
804
+ ],
805
+ "properties": {
806
+ "areas": "areas",
807
+ "name": "name"
808
+ }
809
+ },
810
+ "HTMLMediaElement": {
811
+ "extends": [
812
+ "HTMLElement"
813
+ ],
814
+ "properties": {
815
+ "autoplay": "autoplay",
816
+ "buffered": "buffered",
817
+ "controls": "controls",
818
+ "crossorigin": "crossOrigin",
819
+ "currentsrc": "currentSrc",
820
+ "currenttime": "currentTime",
821
+ "defaultmuted": "defaultMuted",
822
+ "defaultplaybackrate": "defaultPlaybackRate",
823
+ "disableremoteplayback": "disableRemotePlayback",
824
+ "duration": "duration",
825
+ "ended": "ended",
826
+ "error": "error",
827
+ "have_current_data": "HAVE_CURRENT_DATA",
828
+ "have_enough_data": "HAVE_ENOUGH_DATA",
829
+ "have_future_data": "HAVE_FUTURE_DATA",
830
+ "have_metadata": "HAVE_METADATA",
831
+ "have_nothing": "HAVE_NOTHING",
832
+ "loop": "loop",
833
+ "mediakeys": "mediaKeys",
834
+ "muted": "muted",
835
+ "network_empty": "NETWORK_EMPTY",
836
+ "network_idle": "NETWORK_IDLE",
837
+ "network_loading": "NETWORK_LOADING",
838
+ "network_no_source": "NETWORK_NO_SOURCE",
839
+ "networkstate": "networkState",
840
+ "onencrypted": "onencrypted",
841
+ "onwaitingforkey": "onwaitingforkey",
842
+ "paused": "paused",
843
+ "playbackrate": "playbackRate",
844
+ "played": "played",
845
+ "preload": "preload",
846
+ "preservespitch": "preservesPitch",
847
+ "readystate": "readyState",
848
+ "remote": "remote",
849
+ "seekable": "seekable",
850
+ "seeking": "seeking",
851
+ "sinkid": "sinkId",
852
+ "src": "src",
853
+ "srcobject": "srcObject",
854
+ "texttracks": "textTracks",
855
+ "volume": "volume"
856
+ }
857
+ },
858
+ "HTMLMenuElement": {
859
+ "extends": [
860
+ "HTMLElement"
861
+ ],
862
+ "properties": {
863
+ "compact": "compact"
864
+ }
865
+ },
866
+ "HTMLMetaElement": {
867
+ "extends": [
868
+ "HTMLElement"
869
+ ],
870
+ "properties": {
871
+ "content": "content",
872
+ "httpequiv": "httpEquiv",
873
+ "media": "media",
874
+ "name": "name",
875
+ "scheme": "scheme"
876
+ }
877
+ },
878
+ "HTMLMeterElement": {
879
+ "extends": [
880
+ "HTMLElement"
881
+ ],
882
+ "properties": {
883
+ "high": "high",
884
+ "labels": "labels",
885
+ "low": "low",
886
+ "max": "max",
887
+ "min": "min",
888
+ "optimum": "optimum",
889
+ "value": "value"
890
+ }
891
+ },
892
+ "HTMLModElement": {
893
+ "extends": [
894
+ "HTMLElement"
895
+ ],
896
+ "properties": {
897
+ "cite": "cite",
898
+ "datetime": "dateTime"
899
+ }
900
+ },
901
+ "HTMLOListElement": {
902
+ "extends": [
903
+ "HTMLElement"
904
+ ],
905
+ "properties": {
906
+ "compact": "compact",
907
+ "reversed": "reversed",
908
+ "start": "start",
909
+ "type": "type"
910
+ }
911
+ },
912
+ "HTMLObjectElement": {
913
+ "extends": [
914
+ "HTMLElement"
915
+ ],
916
+ "properties": {
917
+ "align": "align",
918
+ "archive": "archive",
919
+ "border": "border",
920
+ "code": "code",
921
+ "codebase": "codeBase",
922
+ "codetype": "codeType",
923
+ "contentdocument": "contentDocument",
924
+ "contentwindow": "contentWindow",
925
+ "data": "data",
926
+ "declare": "declare",
927
+ "form": "form",
928
+ "height": "height",
929
+ "hspace": "hspace",
930
+ "name": "name",
931
+ "standby": "standby",
932
+ "type": "type",
933
+ "usemap": "useMap",
934
+ "validationmessage": "validationMessage",
935
+ "validity": "validity",
936
+ "vspace": "vspace",
937
+ "width": "width",
938
+ "willvalidate": "willValidate"
939
+ }
940
+ },
941
+ "HTMLOptGroupElement": {
942
+ "extends": [
943
+ "HTMLElement"
944
+ ],
945
+ "properties": {
946
+ "disabled": "disabled",
947
+ "label": "label"
948
+ }
949
+ },
950
+ "HTMLOptionElement": {
951
+ "extends": [
952
+ "HTMLElement"
953
+ ],
954
+ "properties": {
955
+ "defaultselected": "defaultSelected",
956
+ "disabled": "disabled",
957
+ "form": "form",
958
+ "index": "index",
959
+ "label": "label",
960
+ "selected": "selected",
961
+ "text": "text",
962
+ "value": "value"
963
+ }
964
+ },
965
+ "HTMLOrSVGElement": {
966
+ "extends": [],
967
+ "properties": {
968
+ "autofocus": "autofocus",
969
+ "dataset": "dataset",
970
+ "nonce": "nonce",
971
+ "tabindex": "tabIndex"
972
+ }
973
+ },
974
+ "HTMLOutputElement": {
975
+ "extends": [
976
+ "HTMLElement"
977
+ ],
978
+ "properties": {
979
+ "defaultvalue": "defaultValue",
980
+ "form": "form",
981
+ "labels": "labels",
982
+ "name": "name",
983
+ "type": "type",
984
+ "validationmessage": "validationMessage",
985
+ "validity": "validity",
986
+ "value": "value",
987
+ "willvalidate": "willValidate"
988
+ }
989
+ },
990
+ "HTMLParagraphElement": {
991
+ "extends": [
992
+ "HTMLElement"
993
+ ],
994
+ "properties": {
995
+ "align": "align"
996
+ }
997
+ },
998
+ "HTMLPictureElement": {
999
+ "extends": [
1000
+ "HTMLElement"
1001
+ ],
1002
+ "properties": {}
1003
+ },
1004
+ "HTMLPreElement": {
1005
+ "extends": [
1006
+ "HTMLElement"
1007
+ ],
1008
+ "properties": {
1009
+ "width": "width"
1010
+ }
1011
+ },
1012
+ "HTMLProgressElement": {
1013
+ "extends": [
1014
+ "HTMLElement"
1015
+ ],
1016
+ "properties": {
1017
+ "labels": "labels",
1018
+ "max": "max",
1019
+ "position": "position",
1020
+ "value": "value"
1021
+ }
1022
+ },
1023
+ "HTMLQuoteElement": {
1024
+ "extends": [
1025
+ "HTMLElement"
1026
+ ],
1027
+ "properties": {
1028
+ "cite": "cite"
1029
+ }
1030
+ },
1031
+ "HTMLScriptElement": {
1032
+ "extends": [
1033
+ "HTMLElement"
1034
+ ],
1035
+ "properties": {
1036
+ "async": "async",
1037
+ "charset": "charset",
1038
+ "crossorigin": "crossOrigin",
1039
+ "defer": "defer",
1040
+ "event": "event",
1041
+ "fetchpriority": "fetchPriority",
1042
+ "htmlfor": "htmlFor",
1043
+ "integrity": "integrity",
1044
+ "nomodule": "noModule",
1045
+ "referrerpolicy": "referrerPolicy",
1046
+ "src": "src",
1047
+ "text": "text",
1048
+ "type": "type"
1049
+ }
1050
+ },
1051
+ "HTMLSelectElement": {
1052
+ "extends": [
1053
+ "HTMLElement"
1054
+ ],
1055
+ "properties": {
1056
+ "autocomplete": "autocomplete",
1057
+ "disabled": "disabled",
1058
+ "form": "form",
1059
+ "labels": "labels",
1060
+ "length": "length",
1061
+ "multiple": "multiple",
1062
+ "name": "name",
1063
+ "options": "options",
1064
+ "required": "required",
1065
+ "selectedindex": "selectedIndex",
1066
+ "selectedoptions": "selectedOptions",
1067
+ "size": "size",
1068
+ "type": "type",
1069
+ "validationmessage": "validationMessage",
1070
+ "validity": "validity",
1071
+ "value": "value",
1072
+ "willvalidate": "willValidate"
1073
+ }
1074
+ },
1075
+ "HTMLSlotElement": {
1076
+ "extends": [
1077
+ "HTMLElement"
1078
+ ],
1079
+ "properties": {
1080
+ "name": "name"
1081
+ }
1082
+ },
1083
+ "HTMLSourceElement": {
1084
+ "extends": [
1085
+ "HTMLElement"
1086
+ ],
1087
+ "properties": {
1088
+ "height": "height",
1089
+ "media": "media",
1090
+ "sizes": "sizes",
1091
+ "src": "src",
1092
+ "srcset": "srcset",
1093
+ "type": "type",
1094
+ "width": "width"
1095
+ }
1096
+ },
1097
+ "HTMLSpanElement": {
1098
+ "extends": [
1099
+ "HTMLElement"
1100
+ ],
1101
+ "properties": {}
1102
+ },
1103
+ "HTMLStyleElement": {
1104
+ "extends": [
1105
+ "HTMLElement",
1106
+ "LinkStyle"
1107
+ ],
1108
+ "properties": {
1109
+ "disabled": "disabled",
1110
+ "media": "media",
1111
+ "type": "type"
1112
+ }
1113
+ },
1114
+ "HTMLTableCaptionElement": {
1115
+ "extends": [
1116
+ "HTMLElement"
1117
+ ],
1118
+ "properties": {
1119
+ "align": "align"
1120
+ }
1121
+ },
1122
+ "HTMLTableCellElement": {
1123
+ "extends": [
1124
+ "HTMLElement"
1125
+ ],
1126
+ "properties": {
1127
+ "abbr": "abbr",
1128
+ "align": "align",
1129
+ "axis": "axis",
1130
+ "bgcolor": "bgColor",
1131
+ "cellindex": "cellIndex",
1132
+ "ch": "ch",
1133
+ "choff": "chOff",
1134
+ "colspan": "colSpan",
1135
+ "headers": "headers",
1136
+ "height": "height",
1137
+ "nowrap": "noWrap",
1138
+ "rowspan": "rowSpan",
1139
+ "scope": "scope",
1140
+ "valign": "vAlign",
1141
+ "width": "width"
1142
+ }
1143
+ },
1144
+ "HTMLTableColElement": {
1145
+ "extends": [
1146
+ "HTMLElement"
1147
+ ],
1148
+ "properties": {
1149
+ "align": "align",
1150
+ "ch": "ch",
1151
+ "choff": "chOff",
1152
+ "span": "span",
1153
+ "valign": "vAlign",
1154
+ "width": "width"
1155
+ }
1156
+ },
1157
+ "HTMLTableElement": {
1158
+ "extends": [
1159
+ "HTMLElement"
1160
+ ],
1161
+ "properties": {
1162
+ "align": "align",
1163
+ "bgcolor": "bgColor",
1164
+ "border": "border",
1165
+ "caption": "caption",
1166
+ "cellpadding": "cellPadding",
1167
+ "cellspacing": "cellSpacing",
1168
+ "frame": "frame",
1169
+ "rows": "rows",
1170
+ "rules": "rules",
1171
+ "summary": "summary",
1172
+ "tbodies": "tBodies",
1173
+ "tfoot": "tFoot",
1174
+ "thead": "tHead",
1175
+ "width": "width"
1176
+ }
1177
+ },
1178
+ "HTMLTableRowElement": {
1179
+ "extends": [
1180
+ "HTMLElement"
1181
+ ],
1182
+ "properties": {
1183
+ "align": "align",
1184
+ "bgcolor": "bgColor",
1185
+ "cells": "cells",
1186
+ "ch": "ch",
1187
+ "choff": "chOff",
1188
+ "rowindex": "rowIndex",
1189
+ "sectionrowindex": "sectionRowIndex",
1190
+ "valign": "vAlign"
1191
+ }
1192
+ },
1193
+ "HTMLTableSectionElement": {
1194
+ "extends": [
1195
+ "HTMLElement"
1196
+ ],
1197
+ "properties": {
1198
+ "align": "align",
1199
+ "ch": "ch",
1200
+ "choff": "chOff",
1201
+ "rows": "rows",
1202
+ "valign": "vAlign"
1203
+ }
1204
+ },
1205
+ "HTMLTemplateElement": {
1206
+ "extends": [
1207
+ "HTMLElement"
1208
+ ],
1209
+ "properties": {
1210
+ "content": "content",
1211
+ "shadowrootclonable": "shadowRootClonable",
1212
+ "shadowrootcustomelementregistry": "shadowRootCustomElementRegistry",
1213
+ "shadowrootdelegatesfocus": "shadowRootDelegatesFocus",
1214
+ "shadowrootmode": "shadowRootMode",
1215
+ "shadowrootserializable": "shadowRootSerializable"
1216
+ }
1217
+ },
1218
+ "HTMLTextAreaElement": {
1219
+ "extends": [
1220
+ "HTMLElement"
1221
+ ],
1222
+ "properties": {
1223
+ "autocomplete": "autocomplete",
1224
+ "cols": "cols",
1225
+ "defaultvalue": "defaultValue",
1226
+ "dirname": "dirName",
1227
+ "disabled": "disabled",
1228
+ "form": "form",
1229
+ "labels": "labels",
1230
+ "maxlength": "maxLength",
1231
+ "minlength": "minLength",
1232
+ "name": "name",
1233
+ "placeholder": "placeholder",
1234
+ "readonly": "readOnly",
1235
+ "required": "required",
1236
+ "rows": "rows",
1237
+ "selectiondirection": "selectionDirection",
1238
+ "selectionend": "selectionEnd",
1239
+ "selectionstart": "selectionStart",
1240
+ "textlength": "textLength",
1241
+ "type": "type",
1242
+ "validationmessage": "validationMessage",
1243
+ "validity": "validity",
1244
+ "value": "value",
1245
+ "willvalidate": "willValidate",
1246
+ "wrap": "wrap"
1247
+ }
1248
+ },
1249
+ "HTMLTimeElement": {
1250
+ "extends": [
1251
+ "HTMLElement"
1252
+ ],
1253
+ "properties": {
1254
+ "datetime": "dateTime"
1255
+ }
1256
+ },
1257
+ "HTMLTitleElement": {
1258
+ "extends": [
1259
+ "HTMLElement"
1260
+ ],
1261
+ "properties": {
1262
+ "text": "text"
1263
+ }
1264
+ },
1265
+ "HTMLTrackElement": {
1266
+ "extends": [
1267
+ "HTMLElement"
1268
+ ],
1269
+ "properties": {
1270
+ "default": "default",
1271
+ "error": "ERROR",
1272
+ "kind": "kind",
1273
+ "label": "label",
1274
+ "loaded": "LOADED",
1275
+ "loading": "LOADING",
1276
+ "none": "NONE",
1277
+ "readystate": "readyState",
1278
+ "src": "src",
1279
+ "srclang": "srclang",
1280
+ "track": "track"
1281
+ }
1282
+ },
1283
+ "HTMLUListElement": {
1284
+ "extends": [
1285
+ "HTMLElement"
1286
+ ],
1287
+ "properties": {
1288
+ "compact": "compact",
1289
+ "type": "type"
1290
+ }
1291
+ },
1292
+ "HTMLVideoElement": {
1293
+ "extends": [
1294
+ "HTMLMediaElement"
1295
+ ],
1296
+ "properties": {
1297
+ "disablepictureinpicture": "disablePictureInPicture",
1298
+ "height": "height",
1299
+ "onenterpictureinpicture": "onenterpictureinpicture",
1300
+ "onleavepictureinpicture": "onleavepictureinpicture",
1301
+ "playsinline": "playsInline",
1302
+ "poster": "poster",
1303
+ "videoheight": "videoHeight",
1304
+ "videowidth": "videoWidth",
1305
+ "width": "width"
1306
+ }
1307
+ },
1308
+ "LinkStyle": {
1309
+ "extends": [],
1310
+ "properties": {
1311
+ "sheet": "sheet"
1312
+ }
1313
+ },
1314
+ "Node": {
1315
+ "extends": [
1316
+ "EventTarget"
1317
+ ],
1318
+ "properties": {
1319
+ "attribute_node": "ATTRIBUTE_NODE",
1320
+ "baseuri": "baseURI",
1321
+ "cdata_section_node": "CDATA_SECTION_NODE",
1322
+ "childnodes": "childNodes",
1323
+ "comment_node": "COMMENT_NODE",
1324
+ "document_fragment_node": "DOCUMENT_FRAGMENT_NODE",
1325
+ "document_node": "DOCUMENT_NODE",
1326
+ "document_position_contained_by": "DOCUMENT_POSITION_CONTAINED_BY",
1327
+ "document_position_contains": "DOCUMENT_POSITION_CONTAINS",
1328
+ "document_position_disconnected": "DOCUMENT_POSITION_DISCONNECTED",
1329
+ "document_position_following": "DOCUMENT_POSITION_FOLLOWING",
1330
+ "document_position_implementation_specific": "DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC",
1331
+ "document_position_preceding": "DOCUMENT_POSITION_PRECEDING",
1332
+ "document_type_node": "DOCUMENT_TYPE_NODE",
1333
+ "element_node": "ELEMENT_NODE",
1334
+ "entity_node": "ENTITY_NODE",
1335
+ "entity_reference_node": "ENTITY_REFERENCE_NODE",
1336
+ "firstchild": "firstChild",
1337
+ "isconnected": "isConnected",
1338
+ "lastchild": "lastChild",
1339
+ "nextsibling": "nextSibling",
1340
+ "nodename": "nodeName",
1341
+ "nodetype": "nodeType",
1342
+ "nodevalue": "nodeValue",
1343
+ "notation_node": "NOTATION_NODE",
1344
+ "ownerdocument": "ownerDocument",
1345
+ "parentelement": "parentElement",
1346
+ "parentnode": "parentNode",
1347
+ "previoussibling": "previousSibling",
1348
+ "processing_instruction_node": "PROCESSING_INSTRUCTION_NODE",
1349
+ "text_node": "TEXT_NODE",
1350
+ "textcontent": "textContent"
1351
+ }
1352
+ },
1353
+ "NonDocumentTypeChildNode": {
1354
+ "extends": [],
1355
+ "properties": {
1356
+ "nextelementsibling": "nextElementSibling",
1357
+ "previouselementsibling": "previousElementSibling"
1358
+ }
1359
+ },
1360
+ "ParentNode": {
1361
+ "extends": [
1362
+ "Node"
1363
+ ],
1364
+ "properties": {
1365
+ "childelementcount": "childElementCount",
1366
+ "children": "children",
1367
+ "firstelementchild": "firstElementChild",
1368
+ "lastelementchild": "lastElementChild"
1369
+ }
1370
+ },
1371
+ "PopoverTargetAttributes": {
1372
+ "extends": [],
1373
+ "properties": {
1374
+ "popovertargetaction": "popoverTargetAction",
1375
+ "popovertargetelement": "popoverTargetElement"
1376
+ }
1377
+ },
1378
+ "Slottable": {
1379
+ "extends": [],
1380
+ "properties": {
1381
+ "assignedslot": "assignedSlot"
1382
+ }
1383
+ },
1384
+ "WindowEventHandlers": {
1385
+ "extends": [],
1386
+ "properties": {
1387
+ "onafterprint": "onafterprint",
1388
+ "onbeforeprint": "onbeforeprint",
1389
+ "onbeforeunload": "onbeforeunload",
1390
+ "ongamepadconnected": "ongamepadconnected",
1391
+ "ongamepaddisconnected": "ongamepaddisconnected",
1392
+ "onhashchange": "onhashchange",
1393
+ "onlanguagechange": "onlanguagechange",
1394
+ "onmessage": "onmessage",
1395
+ "onmessageerror": "onmessageerror",
1396
+ "onoffline": "onoffline",
1397
+ "ononline": "ononline",
1398
+ "onpagehide": "onpagehide",
1399
+ "onpagereveal": "onpagereveal",
1400
+ "onpageshow": "onpageshow",
1401
+ "onpageswap": "onpageswap",
1402
+ "onpopstate": "onpopstate",
1403
+ "onrejectionhandled": "onrejectionhandled",
1404
+ "onstorage": "onstorage",
1405
+ "onunhandledrejection": "onunhandledrejection",
1406
+ "onunload": "onunload"
1407
+ }
1408
+ }
1409
+ };
1410
+ //# sourceMappingURL=dom-properties.js.map