chrome-devtools-frontend 1.0.1013237 → 1.0.1013875
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.
- package/docs/workflows.md +28 -0
- package/front_end/core/i18n/locales/en-US.json +4 -1
- package/front_end/core/i18n/locales/en-XL.json +4 -1
- package/front_end/models/issues_manager/DeprecationIssue.ts +14 -2
- package/front_end/models/javascript_metadata/DOMPinnedProperties.ts +1754 -0
- package/front_end/models/source_map_scopes/NamesResolver.ts +48 -19
- package/front_end/models/workspace/UISourceCode.ts +1 -1
- package/front_end/panels/sources/TabbedEditorContainer.ts +16 -4
- package/front_end/ui/components/linear_memory_inspector/ValueInterpreterDisplay.ts +6 -6
- package/front_end/ui/components/linear_memory_inspector/valueInterpreterDisplay.css +8 -0
- package/package.json +1 -1
- package/scripts/devtools_paths.js +1 -1
- package/scripts/webidl-properties/config.js +279 -0
- package/scripts/webidl-properties/get-props.js +139 -0
- package/scripts/webidl-properties/index.js +85 -0
- package/scripts/webidl-properties/package.json +9 -0
- package/scripts/webidl-properties/tests.js +118 -0
- package/scripts/webidl-properties/util.js +81 -0
@@ -0,0 +1,1754 @@
|
|
1
|
+
|
2
|
+
// Copyright 2022 The Chromium Authors. All rights reserved.
|
3
|
+
// Use of this source code is governed by a BSD-style license that can be
|
4
|
+
// found in the LICENSE file.
|
5
|
+
// Generated from scripts/webidl-properties/index.js
|
6
|
+
|
7
|
+
/**
|
8
|
+
* All the specs used when generating the DOM pinned properties dataset.
|
9
|
+
*/
|
10
|
+
export const SPECS = {
|
11
|
+
'html': 1,
|
12
|
+
'dom': 2,
|
13
|
+
'uievents': 4,
|
14
|
+
'pointerevents': 8,
|
15
|
+
'cssom': 16,
|
16
|
+
'wai-aria': 32,
|
17
|
+
};
|
18
|
+
|
19
|
+
export interface DOMPinnedWebIDLProp {
|
20
|
+
// A flag specifying whether it's a "global" attribute.
|
21
|
+
global?: boolean;
|
22
|
+
// A bitfield of the specs in which the property is found.
|
23
|
+
// If missing, it implies the default spec: "html".
|
24
|
+
specs?: number;
|
25
|
+
}
|
26
|
+
|
27
|
+
export interface DOMPinnedWebIDLType {
|
28
|
+
// An inherited Type.
|
29
|
+
inheritance?: string;
|
30
|
+
// A set of Types to also include properties from.
|
31
|
+
includes?: Array<string>;
|
32
|
+
// The properties defined on this Type.
|
33
|
+
props?: {
|
34
|
+
// A property name such as "checked".
|
35
|
+
[PropName: string]: DOMPinnedWebIDLProp,
|
36
|
+
};
|
37
|
+
// The "states" in which only certain properties are "applicable".
|
38
|
+
states?: {
|
39
|
+
// A CSS selector such as "[type=checkbox]".
|
40
|
+
[State: string]: {
|
41
|
+
[PropName: string]: DOMPinnedWebIDLProp,
|
42
|
+
},
|
43
|
+
};
|
44
|
+
}
|
45
|
+
|
46
|
+
export interface DOMPinnedPropertiesDataset {
|
47
|
+
[TypeName: string]: DOMPinnedWebIDLType;
|
48
|
+
}
|
49
|
+
|
50
|
+
/**
|
51
|
+
* The DOM pinned properties dataset. Generated from WebIDL data parsed from
|
52
|
+
* the SPECS above.
|
53
|
+
*
|
54
|
+
* This is an object with WebIDL type names as keys and their WebIDL properties
|
55
|
+
* and inheritance/include chains as values.
|
56
|
+
*/
|
57
|
+
export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
58
|
+
'HTMLAllCollection': {'props': {'length': {}}},
|
59
|
+
'HTMLFormControlsCollection': {'inheritance': 'HTMLCollection'},
|
60
|
+
'RadioNodeList': {'inheritance': 'NodeList', 'props': {'value': {}}},
|
61
|
+
'HTMLOptionsCollection': {'inheritance': 'HTMLCollection', 'props': {'length': {}, 'selectedIndex': {}}},
|
62
|
+
'DOMStringList': {'props': {'length': {}}},
|
63
|
+
'Document': {
|
64
|
+
'inheritance': 'Node',
|
65
|
+
'includes': [
|
66
|
+
'GlobalEventHandlers',
|
67
|
+
'DocumentAndElementEventHandlers',
|
68
|
+
'NonElementParentNode',
|
69
|
+
'DocumentOrShadowRoot',
|
70
|
+
'ParentNode',
|
71
|
+
'XPathEvaluatorBase',
|
72
|
+
],
|
73
|
+
'props': {
|
74
|
+
'location': {},
|
75
|
+
'domain': {},
|
76
|
+
'referrer': {},
|
77
|
+
'cookie': {},
|
78
|
+
'lastModified': {},
|
79
|
+
'readyState': {},
|
80
|
+
'title': {'global': true},
|
81
|
+
'dir': {'global': true},
|
82
|
+
'body': {},
|
83
|
+
'head': {},
|
84
|
+
'images': {},
|
85
|
+
'embeds': {},
|
86
|
+
'plugins': {},
|
87
|
+
'links': {},
|
88
|
+
'forms': {},
|
89
|
+
'scripts': {},
|
90
|
+
'currentScript': {},
|
91
|
+
'defaultView': {},
|
92
|
+
'designMode': {},
|
93
|
+
'hidden': {'global': true},
|
94
|
+
'visibilityState': {},
|
95
|
+
'onreadystatechange': {},
|
96
|
+
'onvisibilitychange': {},
|
97
|
+
'fgColor': {},
|
98
|
+
'linkColor': {},
|
99
|
+
'vlinkColor': {},
|
100
|
+
'alinkColor': {},
|
101
|
+
'bgColor': {},
|
102
|
+
'anchors': {},
|
103
|
+
'applets': {},
|
104
|
+
'all': {},
|
105
|
+
'implementation': {'specs': 2},
|
106
|
+
'URL': {'specs': 2},
|
107
|
+
'documentURI': {'specs': 2},
|
108
|
+
'compatMode': {'specs': 2},
|
109
|
+
'characterSet': {'specs': 2},
|
110
|
+
'charset': {'specs': 2},
|
111
|
+
'inputEncoding': {'specs': 2},
|
112
|
+
'contentType': {'specs': 2},
|
113
|
+
'doctype': {'specs': 2},
|
114
|
+
'documentElement': {'specs': 2},
|
115
|
+
},
|
116
|
+
},
|
117
|
+
'DocumentOrShadowRoot':
|
118
|
+
{'props': {'activeElement': {}, 'styleSheets': {'specs': 16}, 'adoptedStyleSheets': {'specs': 16}}},
|
119
|
+
'HTMLElement': {
|
120
|
+
'inheritance': 'Element',
|
121
|
+
'includes': [
|
122
|
+
'GlobalEventHandlers',
|
123
|
+
'DocumentAndElementEventHandlers',
|
124
|
+
'ElementContentEditable',
|
125
|
+
'HTMLOrSVGElement',
|
126
|
+
'ElementCSSInlineStyle',
|
127
|
+
],
|
128
|
+
'props': {
|
129
|
+
'title': {'global': true},
|
130
|
+
'lang': {'global': true},
|
131
|
+
'translate': {'global': true},
|
132
|
+
'dir': {'global': true},
|
133
|
+
'hidden': {'global': true},
|
134
|
+
'inert': {},
|
135
|
+
'accessKey': {},
|
136
|
+
'accessKeyLabel': {},
|
137
|
+
'draggable': {'global': true},
|
138
|
+
'spellcheck': {'global': true},
|
139
|
+
'autocapitalize': {'global': true},
|
140
|
+
'innerText': {},
|
141
|
+
'outerText': {},
|
142
|
+
},
|
143
|
+
},
|
144
|
+
'HTMLUnknownElement': {'inheritance': 'HTMLElement'},
|
145
|
+
'HTMLOrSVGElement':
|
146
|
+
{'props': {'dataset': {}, 'nonce': {'global': true}, 'autofocus': {'global': true}, 'tabIndex': {}}},
|
147
|
+
'HTMLHtmlElement': {'inheritance': 'HTMLElement', 'props': {'version': {}}},
|
148
|
+
'HTMLHeadElement': {'inheritance': 'HTMLElement'},
|
149
|
+
'HTMLTitleElement': {'inheritance': 'HTMLElement', 'props': {'text': {}}},
|
150
|
+
'HTMLBaseElement': {'inheritance': 'HTMLElement', 'props': {'href': {}, 'target': {}}},
|
151
|
+
'HTMLLinkElement': {
|
152
|
+
'inheritance': 'HTMLElement',
|
153
|
+
'includes': ['LinkStyle'],
|
154
|
+
'props': {
|
155
|
+
'href': {},
|
156
|
+
'crossOrigin': {},
|
157
|
+
'rel': {},
|
158
|
+
'as': {},
|
159
|
+
'relList': {},
|
160
|
+
'media': {},
|
161
|
+
'integrity': {},
|
162
|
+
'hreflang': {},
|
163
|
+
'type': {},
|
164
|
+
'sizes': {},
|
165
|
+
'imageSrcset': {},
|
166
|
+
'imageSizes': {},
|
167
|
+
'referrerPolicy': {},
|
168
|
+
'blocking': {},
|
169
|
+
'disabled': {},
|
170
|
+
'charset': {},
|
171
|
+
'rev': {},
|
172
|
+
'target': {},
|
173
|
+
},
|
174
|
+
},
|
175
|
+
'HTMLMetaElement':
|
176
|
+
{'inheritance': 'HTMLElement', 'props': {'name': {}, 'httpEquiv': {}, 'content': {}, 'media': {}, 'scheme': {}}},
|
177
|
+
'HTMLStyleElement': {
|
178
|
+
'inheritance': 'HTMLElement',
|
179
|
+
'includes': ['LinkStyle'],
|
180
|
+
'props': {'disabled': {}, 'media': {}, 'blocking': {}, 'type': {}},
|
181
|
+
},
|
182
|
+
'HTMLBodyElement': {
|
183
|
+
'inheritance': 'HTMLElement',
|
184
|
+
'includes': ['WindowEventHandlers'],
|
185
|
+
'props': {'text': {}, 'link': {}, 'vLink': {}, 'aLink': {}, 'bgColor': {}, 'background': {}},
|
186
|
+
},
|
187
|
+
'HTMLHeadingElement': {'inheritance': 'HTMLElement', 'props': {'align': {}}},
|
188
|
+
'HTMLParagraphElement': {'inheritance': 'HTMLElement', 'props': {'align': {}}},
|
189
|
+
'HTMLHRElement':
|
190
|
+
{'inheritance': 'HTMLElement', 'props': {'align': {}, 'color': {}, 'noShade': {}, 'size': {}, 'width': {}}},
|
191
|
+
'HTMLPreElement': {'inheritance': 'HTMLElement', 'props': {'width': {}}},
|
192
|
+
'HTMLQuoteElement': {'inheritance': 'HTMLElement', 'props': {'cite': {}}},
|
193
|
+
'HTMLOListElement': {'inheritance': 'HTMLElement', 'props': {'reversed': {}, 'start': {}, 'type': {}, 'compact': {}}},
|
194
|
+
'HTMLUListElement': {'inheritance': 'HTMLElement', 'props': {'compact': {}, 'type': {}}},
|
195
|
+
'HTMLMenuElement': {'inheritance': 'HTMLElement', 'props': {'compact': {}}},
|
196
|
+
'HTMLLIElement': {'inheritance': 'HTMLElement', 'props': {'value': {}, 'type': {}}},
|
197
|
+
'HTMLDListElement': {'inheritance': 'HTMLElement', 'props': {'compact': {}}},
|
198
|
+
'HTMLDivElement': {'inheritance': 'HTMLElement', 'props': {'align': {}}},
|
199
|
+
'HTMLAnchorElement': {
|
200
|
+
'inheritance': 'HTMLElement',
|
201
|
+
'includes': ['HTMLHyperlinkElementUtils'],
|
202
|
+
'props': {
|
203
|
+
'target': {},
|
204
|
+
'download': {},
|
205
|
+
'ping': {},
|
206
|
+
'rel': {},
|
207
|
+
'relList': {},
|
208
|
+
'hreflang': {},
|
209
|
+
'type': {},
|
210
|
+
'text': {},
|
211
|
+
'referrerPolicy': {},
|
212
|
+
'coords': {},
|
213
|
+
'charset': {},
|
214
|
+
'name': {},
|
215
|
+
'rev': {},
|
216
|
+
'shape': {},
|
217
|
+
},
|
218
|
+
},
|
219
|
+
'HTMLDataElement': {'inheritance': 'HTMLElement', 'props': {'value': {}}},
|
220
|
+
'HTMLTimeElement': {'inheritance': 'HTMLElement', 'props': {'dateTime': {}}},
|
221
|
+
'HTMLSpanElement': {'inheritance': 'HTMLElement'},
|
222
|
+
'HTMLBRElement': {'inheritance': 'HTMLElement', 'props': {'clear': {}}},
|
223
|
+
'HTMLHyperlinkElementUtils': {
|
224
|
+
'props': {
|
225
|
+
'href': {},
|
226
|
+
'origin': {},
|
227
|
+
'protocol': {},
|
228
|
+
'username': {},
|
229
|
+
'password': {},
|
230
|
+
'host': {},
|
231
|
+
'hostname': {},
|
232
|
+
'port': {},
|
233
|
+
'pathname': {},
|
234
|
+
'search': {},
|
235
|
+
'hash': {},
|
236
|
+
},
|
237
|
+
},
|
238
|
+
'HTMLModElement': {'inheritance': 'HTMLElement', 'props': {'cite': {}, 'dateTime': {}}},
|
239
|
+
'HTMLPictureElement': {'inheritance': 'HTMLElement'},
|
240
|
+
'HTMLSourceElement': {
|
241
|
+
'inheritance': 'HTMLElement',
|
242
|
+
'props': {'src': {}, 'type': {}, 'srcset': {}, 'sizes': {}, 'media': {}, 'width': {}, 'height': {}},
|
243
|
+
},
|
244
|
+
'HTMLImageElement': {
|
245
|
+
'inheritance': 'HTMLElement',
|
246
|
+
'props': {
|
247
|
+
'alt': {},
|
248
|
+
'src': {},
|
249
|
+
'srcset': {},
|
250
|
+
'sizes': {},
|
251
|
+
'crossOrigin': {},
|
252
|
+
'useMap': {},
|
253
|
+
'isMap': {},
|
254
|
+
'width': {},
|
255
|
+
'height': {},
|
256
|
+
'naturalWidth': {},
|
257
|
+
'naturalHeight': {},
|
258
|
+
'complete': {},
|
259
|
+
'currentSrc': {},
|
260
|
+
'referrerPolicy': {},
|
261
|
+
'decoding': {},
|
262
|
+
'loading': {},
|
263
|
+
'name': {},
|
264
|
+
'lowsrc': {},
|
265
|
+
'align': {},
|
266
|
+
'hspace': {},
|
267
|
+
'vspace': {},
|
268
|
+
'longDesc': {},
|
269
|
+
'border': {},
|
270
|
+
},
|
271
|
+
},
|
272
|
+
'HTMLIFrameElement': {
|
273
|
+
'inheritance': 'HTMLElement',
|
274
|
+
'props': {
|
275
|
+
'src': {},
|
276
|
+
'srcdoc': {},
|
277
|
+
'name': {},
|
278
|
+
'sandbox': {},
|
279
|
+
'allow': {},
|
280
|
+
'allowFullscreen': {},
|
281
|
+
'width': {},
|
282
|
+
'height': {},
|
283
|
+
'referrerPolicy': {},
|
284
|
+
'loading': {},
|
285
|
+
'contentDocument': {},
|
286
|
+
'contentWindow': {},
|
287
|
+
'align': {},
|
288
|
+
'scrolling': {},
|
289
|
+
'frameBorder': {},
|
290
|
+
'longDesc': {},
|
291
|
+
'marginHeight': {},
|
292
|
+
'marginWidth': {},
|
293
|
+
},
|
294
|
+
},
|
295
|
+
'HTMLEmbedElement': {
|
296
|
+
'inheritance': 'HTMLElement',
|
297
|
+
'props': {'src': {}, 'type': {}, 'width': {}, 'height': {}, 'align': {}, 'name': {}},
|
298
|
+
},
|
299
|
+
'HTMLObjectElement': {
|
300
|
+
'inheritance': 'HTMLElement',
|
301
|
+
'props': {
|
302
|
+
'data': {},
|
303
|
+
'type': {},
|
304
|
+
'name': {},
|
305
|
+
'form': {},
|
306
|
+
'width': {},
|
307
|
+
'height': {},
|
308
|
+
'contentDocument': {},
|
309
|
+
'contentWindow': {},
|
310
|
+
'willValidate': {},
|
311
|
+
'validity': {},
|
312
|
+
'validationMessage': {},
|
313
|
+
'align': {},
|
314
|
+
'archive': {},
|
315
|
+
'code': {},
|
316
|
+
'declare': {},
|
317
|
+
'hspace': {},
|
318
|
+
'standby': {},
|
319
|
+
'vspace': {},
|
320
|
+
'codeBase': {},
|
321
|
+
'codeType': {},
|
322
|
+
'useMap': {},
|
323
|
+
'border': {},
|
324
|
+
},
|
325
|
+
},
|
326
|
+
'HTMLVideoElement': {
|
327
|
+
'inheritance': 'HTMLMediaElement',
|
328
|
+
'props': {'width': {}, 'height': {}, 'videoWidth': {}, 'videoHeight': {}, 'poster': {}, 'playsInline': {}},
|
329
|
+
},
|
330
|
+
'HTMLAudioElement': {'inheritance': 'HTMLMediaElement'},
|
331
|
+
'HTMLTrackElement': {
|
332
|
+
'inheritance': 'HTMLElement',
|
333
|
+
'props': {'kind': {}, 'src': {}, 'srclang': {}, 'label': {}, 'default': {}, 'readyState': {}, 'track': {}},
|
334
|
+
},
|
335
|
+
'HTMLMediaElement': {
|
336
|
+
'inheritance': 'HTMLElement',
|
337
|
+
'props': {
|
338
|
+
'error': {},
|
339
|
+
'src': {},
|
340
|
+
'srcObject': {},
|
341
|
+
'currentSrc': {},
|
342
|
+
'crossOrigin': {},
|
343
|
+
'networkState': {},
|
344
|
+
'preload': {},
|
345
|
+
'buffered': {},
|
346
|
+
'readyState': {},
|
347
|
+
'seeking': {},
|
348
|
+
'currentTime': {},
|
349
|
+
'duration': {},
|
350
|
+
'paused': {},
|
351
|
+
'defaultPlaybackRate': {},
|
352
|
+
'playbackRate': {},
|
353
|
+
'preservesPitch': {},
|
354
|
+
'played': {},
|
355
|
+
'seekable': {},
|
356
|
+
'ended': {},
|
357
|
+
'autoplay': {},
|
358
|
+
'loop': {},
|
359
|
+
'controls': {},
|
360
|
+
'volume': {},
|
361
|
+
'muted': {},
|
362
|
+
'defaultMuted': {},
|
363
|
+
'audioTracks': {},
|
364
|
+
'videoTracks': {},
|
365
|
+
'textTracks': {},
|
366
|
+
},
|
367
|
+
},
|
368
|
+
'MediaError': {'props': {'code': {}, 'message': {}}},
|
369
|
+
'AudioTrackList':
|
370
|
+
{'inheritance': 'EventTarget', 'props': {'length': {}, 'onchange': {}, 'onaddtrack': {}, 'onremovetrack': {}}},
|
371
|
+
'AudioTrack': {'props': {'id': {}, 'kind': {}, 'label': {}, 'language': {}, 'enabled': {}}},
|
372
|
+
'VideoTrackList': {
|
373
|
+
'inheritance': 'EventTarget',
|
374
|
+
'props': {'length': {}, 'selectedIndex': {}, 'onchange': {}, 'onaddtrack': {}, 'onremovetrack': {}},
|
375
|
+
},
|
376
|
+
'VideoTrack': {'props': {'id': {}, 'kind': {}, 'label': {}, 'language': {}, 'selected': {}}},
|
377
|
+
'TextTrackList':
|
378
|
+
{'inheritance': 'EventTarget', 'props': {'length': {}, 'onchange': {}, 'onaddtrack': {}, 'onremovetrack': {}}},
|
379
|
+
'TextTrack': {
|
380
|
+
'inheritance': 'EventTarget',
|
381
|
+
'props': {
|
382
|
+
'kind': {},
|
383
|
+
'label': {},
|
384
|
+
'language': {},
|
385
|
+
'id': {},
|
386
|
+
'inBandMetadataTrackDispatchType': {},
|
387
|
+
'mode': {},
|
388
|
+
'cues': {},
|
389
|
+
'activeCues': {},
|
390
|
+
'oncuechange': {},
|
391
|
+
},
|
392
|
+
},
|
393
|
+
'TextTrackCueList': {'props': {'length': {}}},
|
394
|
+
'TextTrackCue': {
|
395
|
+
'inheritance': 'EventTarget',
|
396
|
+
'props': {'track': {}, 'id': {}, 'startTime': {}, 'endTime': {}, 'pauseOnExit': {}, 'onenter': {}, 'onexit': {}},
|
397
|
+
},
|
398
|
+
'TimeRanges': {'props': {'length': {}}},
|
399
|
+
'TrackEvent': {'inheritance': 'Event', 'props': {'track': {}}},
|
400
|
+
'TrackEventInit': {'inheritance': 'EventInit', 'props': {'track': {}}},
|
401
|
+
'HTMLMapElement': {'inheritance': 'HTMLElement', 'props': {'name': {}, 'areas': {}}},
|
402
|
+
'HTMLAreaElement': {
|
403
|
+
'inheritance': 'HTMLElement',
|
404
|
+
'includes': ['HTMLHyperlinkElementUtils'],
|
405
|
+
'props': {
|
406
|
+
'alt': {},
|
407
|
+
'coords': {},
|
408
|
+
'shape': {},
|
409
|
+
'target': {},
|
410
|
+
'download': {},
|
411
|
+
'ping': {},
|
412
|
+
'rel': {},
|
413
|
+
'relList': {},
|
414
|
+
'referrerPolicy': {},
|
415
|
+
'noHref': {},
|
416
|
+
},
|
417
|
+
},
|
418
|
+
'HTMLTableElement': {
|
419
|
+
'inheritance': 'HTMLElement',
|
420
|
+
'props': {
|
421
|
+
'caption': {},
|
422
|
+
'tHead': {},
|
423
|
+
'tFoot': {},
|
424
|
+
'tBodies': {},
|
425
|
+
'rows': {},
|
426
|
+
'align': {},
|
427
|
+
'border': {},
|
428
|
+
'frame': {},
|
429
|
+
'rules': {},
|
430
|
+
'summary': {},
|
431
|
+
'width': {},
|
432
|
+
'bgColor': {},
|
433
|
+
'cellPadding': {},
|
434
|
+
'cellSpacing': {},
|
435
|
+
},
|
436
|
+
},
|
437
|
+
'HTMLTableCaptionElement': {'inheritance': 'HTMLElement', 'props': {'align': {}}},
|
438
|
+
'HTMLTableColElement': {
|
439
|
+
'inheritance': 'HTMLElement',
|
440
|
+
'props': {'span': {}, 'align': {}, 'ch': {}, 'chOff': {}, 'vAlign': {}, 'width': {}},
|
441
|
+
},
|
442
|
+
'HTMLTableSectionElement':
|
443
|
+
{'inheritance': 'HTMLElement', 'props': {'rows': {}, 'align': {}, 'ch': {}, 'chOff': {}, 'vAlign': {}}},
|
444
|
+
'HTMLTableRowElement': {
|
445
|
+
'inheritance': 'HTMLElement',
|
446
|
+
'props': {
|
447
|
+
'rowIndex': {},
|
448
|
+
'sectionRowIndex': {},
|
449
|
+
'cells': {},
|
450
|
+
'align': {},
|
451
|
+
'ch': {},
|
452
|
+
'chOff': {},
|
453
|
+
'vAlign': {},
|
454
|
+
'bgColor': {},
|
455
|
+
},
|
456
|
+
},
|
457
|
+
'HTMLTableCellElement': {
|
458
|
+
'inheritance': 'HTMLElement',
|
459
|
+
'props': {
|
460
|
+
'colSpan': {},
|
461
|
+
'rowSpan': {},
|
462
|
+
'headers': {},
|
463
|
+
'cellIndex': {},
|
464
|
+
'scope': {},
|
465
|
+
'abbr': {},
|
466
|
+
'align': {},
|
467
|
+
'axis': {},
|
468
|
+
'height': {},
|
469
|
+
'width': {},
|
470
|
+
'ch': {},
|
471
|
+
'chOff': {},
|
472
|
+
'noWrap': {},
|
473
|
+
'vAlign': {},
|
474
|
+
'bgColor': {},
|
475
|
+
},
|
476
|
+
},
|
477
|
+
'HTMLFormElement': {
|
478
|
+
'inheritance': 'HTMLElement',
|
479
|
+
'props': {
|
480
|
+
'acceptCharset': {},
|
481
|
+
'action': {},
|
482
|
+
'autocomplete': {},
|
483
|
+
'enctype': {},
|
484
|
+
'encoding': {},
|
485
|
+
'method': {},
|
486
|
+
'name': {},
|
487
|
+
'noValidate': {},
|
488
|
+
'target': {},
|
489
|
+
'rel': {},
|
490
|
+
'relList': {},
|
491
|
+
'elements': {},
|
492
|
+
'length': {},
|
493
|
+
},
|
494
|
+
},
|
495
|
+
'HTMLLabelElement': {'inheritance': 'HTMLElement', 'props': {'form': {}, 'htmlFor': {}, 'control': {}}},
|
496
|
+
'HTMLInputElement': {
|
497
|
+
'inheritance': 'HTMLElement',
|
498
|
+
'props': {
|
499
|
+
'accept': {},
|
500
|
+
'alt': {},
|
501
|
+
'autocomplete': {},
|
502
|
+
'defaultChecked': {},
|
503
|
+
'checked': {},
|
504
|
+
'dirName': {},
|
505
|
+
'disabled': {},
|
506
|
+
'form': {},
|
507
|
+
'files': {},
|
508
|
+
'formAction': {},
|
509
|
+
'formEnctype': {},
|
510
|
+
'formMethod': {},
|
511
|
+
'formNoValidate': {},
|
512
|
+
'formTarget': {},
|
513
|
+
'height': {},
|
514
|
+
'indeterminate': {},
|
515
|
+
'list': {},
|
516
|
+
'max': {},
|
517
|
+
'maxLength': {},
|
518
|
+
'min': {},
|
519
|
+
'minLength': {},
|
520
|
+
'multiple': {},
|
521
|
+
'name': {},
|
522
|
+
'pattern': {},
|
523
|
+
'placeholder': {},
|
524
|
+
'readOnly': {},
|
525
|
+
'required': {},
|
526
|
+
'size': {},
|
527
|
+
'src': {},
|
528
|
+
'step': {},
|
529
|
+
'type': {},
|
530
|
+
'defaultValue': {},
|
531
|
+
'value': {},
|
532
|
+
'valueAsDate': {},
|
533
|
+
'valueAsNumber': {},
|
534
|
+
'width': {},
|
535
|
+
'willValidate': {},
|
536
|
+
'validity': {},
|
537
|
+
'validationMessage': {},
|
538
|
+
'labels': {},
|
539
|
+
'selectionStart': {},
|
540
|
+
'selectionEnd': {},
|
541
|
+
'selectionDirection': {},
|
542
|
+
'align': {},
|
543
|
+
'useMap': {},
|
544
|
+
},
|
545
|
+
'states': {
|
546
|
+
'[type=hidden]': {'autocomplete': {}, 'value': {}},
|
547
|
+
'[type=text]': {
|
548
|
+
'autocomplete': {},
|
549
|
+
'dirName': {},
|
550
|
+
'list': {},
|
551
|
+
'maxLength': {},
|
552
|
+
'minLength': {},
|
553
|
+
'pattern': {},
|
554
|
+
'placeholder': {},
|
555
|
+
'readOnly': {},
|
556
|
+
'required': {},
|
557
|
+
'size': {},
|
558
|
+
'value': {},
|
559
|
+
'selectionStart': {},
|
560
|
+
'selectionEnd': {},
|
561
|
+
'selectionDirection': {},
|
562
|
+
},
|
563
|
+
'[type=search]': {
|
564
|
+
'autocomplete': {},
|
565
|
+
'dirName': {},
|
566
|
+
'list': {},
|
567
|
+
'maxLength': {},
|
568
|
+
'minLength': {},
|
569
|
+
'pattern': {},
|
570
|
+
'placeholder': {},
|
571
|
+
'readOnly': {},
|
572
|
+
'required': {},
|
573
|
+
'size': {},
|
574
|
+
'value': {},
|
575
|
+
'selectionStart': {},
|
576
|
+
'selectionEnd': {},
|
577
|
+
'selectionDirection': {},
|
578
|
+
},
|
579
|
+
'[type=url]': {
|
580
|
+
'autocomplete': {},
|
581
|
+
'list': {},
|
582
|
+
'maxLength': {},
|
583
|
+
'minLength': {},
|
584
|
+
'pattern': {},
|
585
|
+
'placeholder': {},
|
586
|
+
'readOnly': {},
|
587
|
+
'required': {},
|
588
|
+
'size': {},
|
589
|
+
'value': {},
|
590
|
+
'selectionStart': {},
|
591
|
+
'selectionEnd': {},
|
592
|
+
'selectionDirection': {},
|
593
|
+
},
|
594
|
+
'[type=tel]': {
|
595
|
+
'autocomplete': {},
|
596
|
+
'list': {},
|
597
|
+
'maxLength': {},
|
598
|
+
'minLength': {},
|
599
|
+
'pattern': {},
|
600
|
+
'placeholder': {},
|
601
|
+
'readOnly': {},
|
602
|
+
'required': {},
|
603
|
+
'size': {},
|
604
|
+
'value': {},
|
605
|
+
'selectionStart': {},
|
606
|
+
'selectionEnd': {},
|
607
|
+
'selectionDirection': {},
|
608
|
+
},
|
609
|
+
'[type=email]': {
|
610
|
+
'autocomplete': {},
|
611
|
+
'list': {},
|
612
|
+
'maxLength': {},
|
613
|
+
'minLength': {},
|
614
|
+
'multiple': {},
|
615
|
+
'pattern': {},
|
616
|
+
'placeholder': {},
|
617
|
+
'readOnly': {},
|
618
|
+
'required': {},
|
619
|
+
'size': {},
|
620
|
+
'value': {},
|
621
|
+
},
|
622
|
+
'[type=password]': {
|
623
|
+
'autocomplete': {},
|
624
|
+
'maxLength': {},
|
625
|
+
'minLength': {},
|
626
|
+
'pattern': {},
|
627
|
+
'placeholder': {},
|
628
|
+
'readOnly': {},
|
629
|
+
'required': {},
|
630
|
+
'size': {},
|
631
|
+
'value': {},
|
632
|
+
'selectionStart': {},
|
633
|
+
'selectionEnd': {},
|
634
|
+
'selectionDirection': {},
|
635
|
+
},
|
636
|
+
'[type=date]': {
|
637
|
+
'autocomplete': {},
|
638
|
+
'list': {},
|
639
|
+
'max': {},
|
640
|
+
'min': {},
|
641
|
+
'readOnly': {},
|
642
|
+
'required': {},
|
643
|
+
'step': {},
|
644
|
+
'value': {},
|
645
|
+
'valueAsDate': {},
|
646
|
+
'valueAsNumber': {},
|
647
|
+
},
|
648
|
+
'[type=month]': {
|
649
|
+
'autocomplete': {},
|
650
|
+
'list': {},
|
651
|
+
'max': {},
|
652
|
+
'min': {},
|
653
|
+
'readOnly': {},
|
654
|
+
'required': {},
|
655
|
+
'step': {},
|
656
|
+
'value': {},
|
657
|
+
'valueAsDate': {},
|
658
|
+
'valueAsNumber': {},
|
659
|
+
},
|
660
|
+
'[type=week]': {
|
661
|
+
'autocomplete': {},
|
662
|
+
'list': {},
|
663
|
+
'max': {},
|
664
|
+
'min': {},
|
665
|
+
'readOnly': {},
|
666
|
+
'required': {},
|
667
|
+
'step': {},
|
668
|
+
'value': {},
|
669
|
+
'valueAsDate': {},
|
670
|
+
'valueAsNumber': {},
|
671
|
+
},
|
672
|
+
'[type=time]': {
|
673
|
+
'autocomplete': {},
|
674
|
+
'list': {},
|
675
|
+
'max': {},
|
676
|
+
'min': {},
|
677
|
+
'readOnly': {},
|
678
|
+
'required': {},
|
679
|
+
'step': {},
|
680
|
+
'value': {},
|
681
|
+
'valueAsDate': {},
|
682
|
+
'valueAsNumber': {},
|
683
|
+
},
|
684
|
+
'[type=datetime-local]': {
|
685
|
+
'autocomplete': {},
|
686
|
+
'list': {},
|
687
|
+
'max': {},
|
688
|
+
'min': {},
|
689
|
+
'readOnly': {},
|
690
|
+
'required': {},
|
691
|
+
'step': {},
|
692
|
+
'value': {},
|
693
|
+
'valueAsNumber': {},
|
694
|
+
},
|
695
|
+
'[type=number]': {
|
696
|
+
'autocomplete': {},
|
697
|
+
'list': {},
|
698
|
+
'max': {},
|
699
|
+
'min': {},
|
700
|
+
'placeholder': {},
|
701
|
+
'readOnly': {},
|
702
|
+
'required': {},
|
703
|
+
'step': {},
|
704
|
+
'value': {},
|
705
|
+
'valueAsNumber': {},
|
706
|
+
},
|
707
|
+
'[type=range]':
|
708
|
+
{'autocomplete': {}, 'list': {}, 'max': {}, 'min': {}, 'step': {}, 'value': {}, 'valueAsNumber': {}},
|
709
|
+
'[type=color]': {'autocomplete': {}, 'list': {}, 'value': {}},
|
710
|
+
'[type=checkbox]': {'checked': {}, 'required': {}, 'value': {}},
|
711
|
+
'[type=radio]': {'checked': {}, 'required': {}, 'value': {}},
|
712
|
+
'[type=file]': {'accept': {}, 'files': {}, 'multiple': {}, 'required': {}, 'value': {}},
|
713
|
+
'[type=submit]':
|
714
|
+
{'formAction': {}, 'formEnctype': {}, 'formMethod': {}, 'formNoValidate': {}, 'formTarget': {}, 'value': {}},
|
715
|
+
'[type=image]': {
|
716
|
+
'alt': {},
|
717
|
+
'formAction': {},
|
718
|
+
'formEnctype': {},
|
719
|
+
'formMethod': {},
|
720
|
+
'formNoValidate': {},
|
721
|
+
'formTarget': {},
|
722
|
+
'height': {},
|
723
|
+
'src': {},
|
724
|
+
'value': {},
|
725
|
+
'width': {},
|
726
|
+
},
|
727
|
+
'[type=reset]': {'value': {}},
|
728
|
+
'[type=button]': {'value': {}},
|
729
|
+
},
|
730
|
+
},
|
731
|
+
'HTMLButtonElement': {
|
732
|
+
'inheritance': 'HTMLElement',
|
733
|
+
'props': {
|
734
|
+
'disabled': {},
|
735
|
+
'form': {},
|
736
|
+
'formAction': {},
|
737
|
+
'formEnctype': {},
|
738
|
+
'formMethod': {},
|
739
|
+
'formNoValidate': {},
|
740
|
+
'formTarget': {},
|
741
|
+
'name': {},
|
742
|
+
'type': {},
|
743
|
+
'value': {},
|
744
|
+
'willValidate': {},
|
745
|
+
'validity': {},
|
746
|
+
'validationMessage': {},
|
747
|
+
'labels': {},
|
748
|
+
},
|
749
|
+
},
|
750
|
+
'HTMLSelectElement': {
|
751
|
+
'inheritance': 'HTMLElement',
|
752
|
+
'props': {
|
753
|
+
'autocomplete': {},
|
754
|
+
'disabled': {},
|
755
|
+
'form': {},
|
756
|
+
'multiple': {},
|
757
|
+
'name': {},
|
758
|
+
'required': {},
|
759
|
+
'size': {},
|
760
|
+
'type': {},
|
761
|
+
'options': {},
|
762
|
+
'length': {},
|
763
|
+
'selectedOptions': {},
|
764
|
+
'selectedIndex': {},
|
765
|
+
'value': {},
|
766
|
+
'willValidate': {},
|
767
|
+
'validity': {},
|
768
|
+
'validationMessage': {},
|
769
|
+
'labels': {},
|
770
|
+
},
|
771
|
+
},
|
772
|
+
'HTMLDataListElement': {'inheritance': 'HTMLElement', 'props': {'options': {}}},
|
773
|
+
'HTMLOptGroupElement': {'inheritance': 'HTMLElement', 'props': {'disabled': {}, 'label': {}}},
|
774
|
+
'HTMLOptionElement': {
|
775
|
+
'inheritance': 'HTMLElement',
|
776
|
+
'props': {
|
777
|
+
'disabled': {},
|
778
|
+
'form': {},
|
779
|
+
'label': {},
|
780
|
+
'defaultSelected': {},
|
781
|
+
'selected': {},
|
782
|
+
'value': {},
|
783
|
+
'text': {},
|
784
|
+
'index': {},
|
785
|
+
},
|
786
|
+
},
|
787
|
+
'HTMLTextAreaElement': {
|
788
|
+
'inheritance': 'HTMLElement',
|
789
|
+
'props': {
|
790
|
+
'autocomplete': {},
|
791
|
+
'cols': {},
|
792
|
+
'dirName': {},
|
793
|
+
'disabled': {},
|
794
|
+
'form': {},
|
795
|
+
'maxLength': {},
|
796
|
+
'minLength': {},
|
797
|
+
'name': {},
|
798
|
+
'placeholder': {},
|
799
|
+
'readOnly': {},
|
800
|
+
'required': {},
|
801
|
+
'rows': {},
|
802
|
+
'wrap': {},
|
803
|
+
'type': {},
|
804
|
+
'defaultValue': {},
|
805
|
+
'value': {},
|
806
|
+
'textLength': {},
|
807
|
+
'willValidate': {},
|
808
|
+
'validity': {},
|
809
|
+
'validationMessage': {},
|
810
|
+
'labels': {},
|
811
|
+
'selectionStart': {},
|
812
|
+
'selectionEnd': {},
|
813
|
+
'selectionDirection': {},
|
814
|
+
},
|
815
|
+
},
|
816
|
+
'HTMLOutputElement': {
|
817
|
+
'inheritance': 'HTMLElement',
|
818
|
+
'props': {
|
819
|
+
'htmlFor': {},
|
820
|
+
'form': {},
|
821
|
+
'name': {},
|
822
|
+
'type': {},
|
823
|
+
'defaultValue': {},
|
824
|
+
'value': {},
|
825
|
+
'willValidate': {},
|
826
|
+
'validity': {},
|
827
|
+
'validationMessage': {},
|
828
|
+
'labels': {},
|
829
|
+
},
|
830
|
+
},
|
831
|
+
'HTMLProgressElement':
|
832
|
+
{'inheritance': 'HTMLElement', 'props': {'value': {}, 'max': {}, 'position': {}, 'labels': {}}},
|
833
|
+
'HTMLMeterElement': {
|
834
|
+
'inheritance': 'HTMLElement',
|
835
|
+
'props': {'value': {}, 'min': {}, 'max': {}, 'low': {}, 'high': {}, 'optimum': {}, 'labels': {}},
|
836
|
+
},
|
837
|
+
'HTMLFieldSetElement': {
|
838
|
+
'inheritance': 'HTMLElement',
|
839
|
+
'props': {
|
840
|
+
'disabled': {},
|
841
|
+
'form': {},
|
842
|
+
'name': {},
|
843
|
+
'type': {},
|
844
|
+
'elements': {},
|
845
|
+
'willValidate': {},
|
846
|
+
'validity': {},
|
847
|
+
'validationMessage': {},
|
848
|
+
},
|
849
|
+
},
|
850
|
+
'HTMLLegendElement': {'inheritance': 'HTMLElement', 'props': {'form': {}, 'align': {}}},
|
851
|
+
'ValidityState': {
|
852
|
+
'props': {
|
853
|
+
'valueMissing': {},
|
854
|
+
'typeMismatch': {},
|
855
|
+
'patternMismatch': {},
|
856
|
+
'tooLong': {},
|
857
|
+
'tooShort': {},
|
858
|
+
'rangeUnderflow': {},
|
859
|
+
'rangeOverflow': {},
|
860
|
+
'stepMismatch': {},
|
861
|
+
'badInput': {},
|
862
|
+
'customError': {},
|
863
|
+
'valid': {},
|
864
|
+
},
|
865
|
+
},
|
866
|
+
'SubmitEvent': {'inheritance': 'Event', 'props': {'submitter': {}}},
|
867
|
+
'SubmitEventInit': {'inheritance': 'EventInit', 'props': {'submitter': {}}},
|
868
|
+
'FormDataEvent': {'inheritance': 'Event', 'props': {'formData': {}}},
|
869
|
+
'FormDataEventInit': {'inheritance': 'EventInit', 'props': {'formData': {}}},
|
870
|
+
'HTMLDetailsElement': {'inheritance': 'HTMLElement', 'props': {'open': {}}},
|
871
|
+
'HTMLDialogElement': {'inheritance': 'HTMLElement', 'props': {'open': {}, 'returnValue': {}}},
|
872
|
+
'HTMLScriptElement': {
|
873
|
+
'inheritance': 'HTMLElement',
|
874
|
+
'props': {
|
875
|
+
'src': {},
|
876
|
+
'type': {},
|
877
|
+
'noModule': {},
|
878
|
+
'async': {},
|
879
|
+
'defer': {},
|
880
|
+
'crossOrigin': {},
|
881
|
+
'text': {},
|
882
|
+
'integrity': {},
|
883
|
+
'referrerPolicy': {},
|
884
|
+
'blocking': {},
|
885
|
+
'charset': {},
|
886
|
+
'event': {},
|
887
|
+
'htmlFor': {},
|
888
|
+
},
|
889
|
+
},
|
890
|
+
'HTMLTemplateElement': {'inheritance': 'HTMLElement', 'props': {'content': {}}},
|
891
|
+
'HTMLSlotElement': {'inheritance': 'HTMLElement', 'props': {'name': {}}},
|
892
|
+
'AssignedNodesOptions': {'props': {'flatten': {}}},
|
893
|
+
'HTMLCanvasElement': {'inheritance': 'HTMLElement', 'props': {'width': {}, 'height': {}}},
|
894
|
+
'CanvasRenderingContext2DSettings':
|
895
|
+
{'props': {'alpha': {}, 'desynchronized': {}, 'colorSpace': {}, 'willReadFrequently': {}}},
|
896
|
+
'CanvasRenderingContext2D': {
|
897
|
+
'includes': [
|
898
|
+
'CanvasState',
|
899
|
+
'CanvasTransform',
|
900
|
+
'CanvasCompositing',
|
901
|
+
'CanvasImageSmoothing',
|
902
|
+
'CanvasFillStrokeStyles',
|
903
|
+
'CanvasShadowStyles',
|
904
|
+
'CanvasFilters',
|
905
|
+
'CanvasRect',
|
906
|
+
'CanvasDrawPath',
|
907
|
+
'CanvasUserInterface',
|
908
|
+
'CanvasText',
|
909
|
+
'CanvasDrawImage',
|
910
|
+
'CanvasImageData',
|
911
|
+
'CanvasPathDrawingStyles',
|
912
|
+
'CanvasTextDrawingStyles',
|
913
|
+
'CanvasPath',
|
914
|
+
],
|
915
|
+
'props': {'canvas': {}},
|
916
|
+
},
|
917
|
+
'CanvasCompositing': {'props': {'globalAlpha': {}, 'globalCompositeOperation': {}}},
|
918
|
+
'CanvasImageSmoothing': {'props': {'imageSmoothingEnabled': {}, 'imageSmoothingQuality': {}}},
|
919
|
+
'CanvasFillStrokeStyles': {'props': {'strokeStyle': {}, 'fillStyle': {}}},
|
920
|
+
'CanvasShadowStyles': {'props': {'shadowOffsetX': {}, 'shadowOffsetY': {}, 'shadowBlur': {}, 'shadowColor': {}}},
|
921
|
+
'CanvasFilters': {'props': {'filter': {}}},
|
922
|
+
'CanvasPathDrawingStyles':
|
923
|
+
{'props': {'lineWidth': {}, 'lineCap': {}, 'lineJoin': {}, 'miterLimit': {}, 'lineDashOffset': {}}},
|
924
|
+
'CanvasTextDrawingStyles': {
|
925
|
+
'props': {
|
926
|
+
'font': {},
|
927
|
+
'textAlign': {},
|
928
|
+
'textBaseline': {},
|
929
|
+
'direction': {},
|
930
|
+
'letterSpacing': {},
|
931
|
+
'fontKerning': {},
|
932
|
+
'fontStretch': {},
|
933
|
+
'fontVariantCaps': {},
|
934
|
+
'textRendering': {},
|
935
|
+
'wordSpacing': {},
|
936
|
+
},
|
937
|
+
},
|
938
|
+
'TextMetrics': {
|
939
|
+
'props': {
|
940
|
+
'width': {},
|
941
|
+
'actualBoundingBoxLeft': {},
|
942
|
+
'actualBoundingBoxRight': {},
|
943
|
+
'fontBoundingBoxAscent': {},
|
944
|
+
'fontBoundingBoxDescent': {},
|
945
|
+
'actualBoundingBoxAscent': {},
|
946
|
+
'actualBoundingBoxDescent': {},
|
947
|
+
'emHeightAscent': {},
|
948
|
+
'emHeightDescent': {},
|
949
|
+
'hangingBaseline': {},
|
950
|
+
'alphabeticBaseline': {},
|
951
|
+
'ideographicBaseline': {},
|
952
|
+
},
|
953
|
+
},
|
954
|
+
'ImageDataSettings': {'props': {'colorSpace': {}}},
|
955
|
+
'ImageData': {'props': {'width': {}, 'height': {}, 'data': {}, 'colorSpace': {}}},
|
956
|
+
'Path2D': {'includes': ['CanvasPath']},
|
957
|
+
'ImageBitmapRenderingContext': {'props': {'canvas': {}}},
|
958
|
+
'ImageBitmapRenderingContextSettings': {'props': {'alpha': {}}},
|
959
|
+
'ImageEncodeOptions': {'props': {'type': {}, 'quality': {}}},
|
960
|
+
'OffscreenCanvas': {
|
961
|
+
'inheritance': 'EventTarget',
|
962
|
+
'props': {'width': {}, 'height': {}, 'oncontextlost': {}, 'oncontextrestored': {}},
|
963
|
+
},
|
964
|
+
'OffscreenCanvasRenderingContext2D': {
|
965
|
+
'includes': [
|
966
|
+
'CanvasState',
|
967
|
+
'CanvasTransform',
|
968
|
+
'CanvasCompositing',
|
969
|
+
'CanvasImageSmoothing',
|
970
|
+
'CanvasFillStrokeStyles',
|
971
|
+
'CanvasShadowStyles',
|
972
|
+
'CanvasFilters',
|
973
|
+
'CanvasRect',
|
974
|
+
'CanvasDrawPath',
|
975
|
+
'CanvasText',
|
976
|
+
'CanvasDrawImage',
|
977
|
+
'CanvasImageData',
|
978
|
+
'CanvasPathDrawingStyles',
|
979
|
+
'CanvasTextDrawingStyles',
|
980
|
+
'CanvasPath',
|
981
|
+
],
|
982
|
+
'props': {'canvas': {}},
|
983
|
+
},
|
984
|
+
'ElementDefinitionOptions': {'props': {'extends': {}}},
|
985
|
+
'ElementInternals': {
|
986
|
+
'includes': ['ARIAMixin'],
|
987
|
+
'props': {'shadowRoot': {}, 'form': {}, 'willValidate': {}, 'validity': {}, 'validationMessage': {}, 'labels': {}},
|
988
|
+
},
|
989
|
+
'ValidityStateFlags': {
|
990
|
+
'props': {
|
991
|
+
'valueMissing': {},
|
992
|
+
'typeMismatch': {},
|
993
|
+
'patternMismatch': {},
|
994
|
+
'tooLong': {},
|
995
|
+
'tooShort': {},
|
996
|
+
'rangeUnderflow': {},
|
997
|
+
'rangeOverflow': {},
|
998
|
+
'stepMismatch': {},
|
999
|
+
'badInput': {},
|
1000
|
+
'customError': {},
|
1001
|
+
},
|
1002
|
+
},
|
1003
|
+
'FocusOptions': {'props': {'preventScroll': {}}},
|
1004
|
+
'ElementContentEditable':
|
1005
|
+
{'props': {'contentEditable': {}, 'enterKeyHint': {}, 'isContentEditable': {}, 'inputMode': {}}},
|
1006
|
+
'DataTransfer': {'props': {'dropEffect': {}, 'effectAllowed': {}, 'items': {}, 'types': {}, 'files': {}}},
|
1007
|
+
'DataTransferItemList': {'props': {'length': {}}},
|
1008
|
+
'DataTransferItem': {'props': {'kind': {}, 'type': {}}},
|
1009
|
+
'DragEvent': {'inheritance': 'MouseEvent', 'props': {'dataTransfer': {}}},
|
1010
|
+
'DragEventInit': {'inheritance': 'MouseEventInit', 'props': {'dataTransfer': {}}},
|
1011
|
+
'Window': {
|
1012
|
+
'inheritance': 'EventTarget',
|
1013
|
+
'includes': [
|
1014
|
+
'GlobalEventHandlers',
|
1015
|
+
'WindowEventHandlers',
|
1016
|
+
'WindowOrWorkerGlobalScope',
|
1017
|
+
'AnimationFrameProvider',
|
1018
|
+
'WindowSessionStorage',
|
1019
|
+
'WindowLocalStorage',
|
1020
|
+
],
|
1021
|
+
'props': {
|
1022
|
+
'window': {},
|
1023
|
+
'self': {},
|
1024
|
+
'document': {},
|
1025
|
+
'name': {},
|
1026
|
+
'location': {},
|
1027
|
+
'history': {},
|
1028
|
+
'customElements': {},
|
1029
|
+
'locationbar': {},
|
1030
|
+
'menubar': {},
|
1031
|
+
'personalbar': {},
|
1032
|
+
'scrollbars': {},
|
1033
|
+
'statusbar': {},
|
1034
|
+
'toolbar': {},
|
1035
|
+
'status': {},
|
1036
|
+
'closed': {},
|
1037
|
+
'frames': {},
|
1038
|
+
'length': {},
|
1039
|
+
'top': {},
|
1040
|
+
'opener': {},
|
1041
|
+
'parent': {},
|
1042
|
+
'frameElement': {},
|
1043
|
+
'navigator': {},
|
1044
|
+
'clientInformation': {},
|
1045
|
+
'originAgentCluster': {},
|
1046
|
+
'external': {},
|
1047
|
+
'event': {'specs': 2},
|
1048
|
+
},
|
1049
|
+
},
|
1050
|
+
'WindowPostMessageOptions': {'inheritance': 'StructuredSerializeOptions', 'props': {'targetOrigin': {}}},
|
1051
|
+
'BarProp': {'props': {'visible': {}}},
|
1052
|
+
'History': {'props': {'length': {}, 'scrollRestoration': {}, 'state': {}}},
|
1053
|
+
'Location': {
|
1054
|
+
'props': {
|
1055
|
+
'href': {},
|
1056
|
+
'origin': {},
|
1057
|
+
'protocol': {},
|
1058
|
+
'host': {},
|
1059
|
+
'hostname': {},
|
1060
|
+
'port': {},
|
1061
|
+
'pathname': {},
|
1062
|
+
'search': {},
|
1063
|
+
'hash': {},
|
1064
|
+
'ancestorOrigins': {},
|
1065
|
+
},
|
1066
|
+
},
|
1067
|
+
'PopStateEvent': {'inheritance': 'Event', 'props': {'state': {}}},
|
1068
|
+
'PopStateEventInit': {'inheritance': 'EventInit', 'props': {'state': {}}},
|
1069
|
+
'HashChangeEvent': {'inheritance': 'Event', 'props': {'oldURL': {}, 'newURL': {}}},
|
1070
|
+
'HashChangeEventInit': {'inheritance': 'EventInit', 'props': {'oldURL': {}, 'newURL': {}}},
|
1071
|
+
'PageTransitionEvent': {'inheritance': 'Event', 'props': {'persisted': {}}},
|
1072
|
+
'PageTransitionEventInit': {'inheritance': 'EventInit', 'props': {'persisted': {}}},
|
1073
|
+
'BeforeUnloadEvent': {'inheritance': 'Event', 'props': {'returnValue': {}}},
|
1074
|
+
'ErrorEvent':
|
1075
|
+
{'inheritance': 'Event', 'props': {'message': {}, 'filename': {}, 'lineno': {}, 'colno': {}, 'error': {}}},
|
1076
|
+
'ErrorEventInit':
|
1077
|
+
{'inheritance': 'EventInit', 'props': {'message': {}, 'filename': {}, 'lineno': {}, 'colno': {}, 'error': {}}},
|
1078
|
+
'PromiseRejectionEvent': {'inheritance': 'Event', 'props': {'promise': {}, 'reason': {}}},
|
1079
|
+
'PromiseRejectionEventInit': {'inheritance': 'EventInit', 'props': {'promise': {}, 'reason': {}}},
|
1080
|
+
'GlobalEventHandlers': {
|
1081
|
+
'props': {
|
1082
|
+
'onabort': {},
|
1083
|
+
'onauxclick': {},
|
1084
|
+
'onbeforematch': {},
|
1085
|
+
'onblur': {},
|
1086
|
+
'oncancel': {},
|
1087
|
+
'oncanplay': {},
|
1088
|
+
'oncanplaythrough': {},
|
1089
|
+
'onchange': {},
|
1090
|
+
'onclick': {},
|
1091
|
+
'onclose': {},
|
1092
|
+
'oncontextlost': {},
|
1093
|
+
'oncontextmenu': {},
|
1094
|
+
'oncontextrestored': {},
|
1095
|
+
'oncuechange': {},
|
1096
|
+
'ondblclick': {},
|
1097
|
+
'ondrag': {},
|
1098
|
+
'ondragend': {},
|
1099
|
+
'ondragenter': {},
|
1100
|
+
'ondragleave': {},
|
1101
|
+
'ondragover': {},
|
1102
|
+
'ondragstart': {},
|
1103
|
+
'ondrop': {},
|
1104
|
+
'ondurationchange': {},
|
1105
|
+
'onemptied': {},
|
1106
|
+
'onended': {},
|
1107
|
+
'onerror': {},
|
1108
|
+
'onfocus': {},
|
1109
|
+
'onformdata': {},
|
1110
|
+
'oninput': {},
|
1111
|
+
'oninvalid': {},
|
1112
|
+
'onkeydown': {},
|
1113
|
+
'onkeypress': {},
|
1114
|
+
'onkeyup': {},
|
1115
|
+
'onload': {},
|
1116
|
+
'onloadeddata': {},
|
1117
|
+
'onloadedmetadata': {},
|
1118
|
+
'onloadstart': {},
|
1119
|
+
'onmousedown': {},
|
1120
|
+
'onmouseenter': {},
|
1121
|
+
'onmouseleave': {},
|
1122
|
+
'onmousemove': {},
|
1123
|
+
'onmouseout': {},
|
1124
|
+
'onmouseover': {},
|
1125
|
+
'onmouseup': {},
|
1126
|
+
'onpause': {},
|
1127
|
+
'onplay': {},
|
1128
|
+
'onplaying': {},
|
1129
|
+
'onprogress': {},
|
1130
|
+
'onratechange': {},
|
1131
|
+
'onreset': {},
|
1132
|
+
'onresize': {},
|
1133
|
+
'onscroll': {},
|
1134
|
+
'onsecuritypolicyviolation': {},
|
1135
|
+
'onseeked': {},
|
1136
|
+
'onseeking': {},
|
1137
|
+
'onselect': {},
|
1138
|
+
'onslotchange': {},
|
1139
|
+
'onstalled': {},
|
1140
|
+
'onsubmit': {},
|
1141
|
+
'onsuspend': {},
|
1142
|
+
'ontimeupdate': {},
|
1143
|
+
'ontoggle': {},
|
1144
|
+
'onvolumechange': {},
|
1145
|
+
'onwaiting': {},
|
1146
|
+
'onwebkitanimationend': {},
|
1147
|
+
'onwebkitanimationiteration': {},
|
1148
|
+
'onwebkitanimationstart': {},
|
1149
|
+
'onwebkittransitionend': {},
|
1150
|
+
'onwheel': {},
|
1151
|
+
'ongotpointercapture': {'specs': 8},
|
1152
|
+
'onlostpointercapture': {'specs': 8},
|
1153
|
+
'onpointerdown': {'specs': 8},
|
1154
|
+
'onpointermove': {'specs': 8},
|
1155
|
+
'onpointerrawupdate': {'specs': 8},
|
1156
|
+
'onpointerup': {'specs': 8},
|
1157
|
+
'onpointercancel': {'specs': 8},
|
1158
|
+
'onpointerover': {'specs': 8},
|
1159
|
+
'onpointerout': {'specs': 8},
|
1160
|
+
'onpointerenter': {'specs': 8},
|
1161
|
+
'onpointerleave': {'specs': 8},
|
1162
|
+
},
|
1163
|
+
},
|
1164
|
+
'WindowEventHandlers': {
|
1165
|
+
'props': {
|
1166
|
+
'onafterprint': {},
|
1167
|
+
'onbeforeprint': {},
|
1168
|
+
'onbeforeunload': {},
|
1169
|
+
'onhashchange': {},
|
1170
|
+
'onlanguagechange': {},
|
1171
|
+
'onmessage': {},
|
1172
|
+
'onmessageerror': {},
|
1173
|
+
'onoffline': {},
|
1174
|
+
'ononline': {},
|
1175
|
+
'onpagehide': {},
|
1176
|
+
'onpageshow': {},
|
1177
|
+
'onpopstate': {},
|
1178
|
+
'onrejectionhandled': {},
|
1179
|
+
'onstorage': {},
|
1180
|
+
'onunhandledrejection': {},
|
1181
|
+
'onunload': {},
|
1182
|
+
},
|
1183
|
+
},
|
1184
|
+
'DocumentAndElementEventHandlers': {'props': {'oncopy': {}, 'oncut': {}, 'onpaste': {}}},
|
1185
|
+
'WindowOrWorkerGlobalScope': {'props': {'origin': {}, 'isSecureContext': {}, 'crossOriginIsolated': {}}},
|
1186
|
+
'WorkerGlobalScope': {
|
1187
|
+
'inheritance': 'EventTarget',
|
1188
|
+
'includes': ['WindowOrWorkerGlobalScope'],
|
1189
|
+
'props': {
|
1190
|
+
'self': {},
|
1191
|
+
'location': {},
|
1192
|
+
'navigator': {},
|
1193
|
+
'onerror': {},
|
1194
|
+
'onlanguagechange': {},
|
1195
|
+
'onoffline': {},
|
1196
|
+
'ononline': {},
|
1197
|
+
'onrejectionhandled': {},
|
1198
|
+
'onunhandledrejection': {},
|
1199
|
+
},
|
1200
|
+
},
|
1201
|
+
'Navigator': {
|
1202
|
+
'includes': [
|
1203
|
+
'NavigatorID',
|
1204
|
+
'NavigatorLanguage',
|
1205
|
+
'NavigatorOnLine',
|
1206
|
+
'NavigatorContentUtils',
|
1207
|
+
'NavigatorCookies',
|
1208
|
+
'NavigatorPlugins',
|
1209
|
+
'NavigatorConcurrentHardware',
|
1210
|
+
],
|
1211
|
+
'props': {'maxTouchPoints': {'specs': 8}},
|
1212
|
+
},
|
1213
|
+
'NavigatorID': {
|
1214
|
+
'props': {
|
1215
|
+
'appCodeName': {},
|
1216
|
+
'appName': {},
|
1217
|
+
'appVersion': {},
|
1218
|
+
'platform': {},
|
1219
|
+
'product': {},
|
1220
|
+
'productSub': {},
|
1221
|
+
'userAgent': {},
|
1222
|
+
'vendor': {},
|
1223
|
+
'vendorSub': {},
|
1224
|
+
'oscpu': {},
|
1225
|
+
},
|
1226
|
+
},
|
1227
|
+
'NavigatorLanguage': {'props': {'language': {}, 'languages': {}}},
|
1228
|
+
'NavigatorOnLine': {'props': {'onLine': {}}},
|
1229
|
+
'NavigatorCookies': {'props': {'cookieEnabled': {}}},
|
1230
|
+
'NavigatorPlugins': {'props': {'plugins': {}, 'mimeTypes': {}, 'pdfViewerEnabled': {}}},
|
1231
|
+
'PluginArray': {'props': {'length': {}}},
|
1232
|
+
'MimeTypeArray': {'props': {'length': {}}},
|
1233
|
+
'Plugin': {'props': {'name': {}, 'description': {}, 'filename': {}, 'length': {}}},
|
1234
|
+
'MimeType': {'props': {'type': {}, 'description': {}, 'suffixes': {}, 'enabledPlugin': {}}},
|
1235
|
+
'ImageBitmap': {'props': {'width': {}, 'height': {}}},
|
1236
|
+
'ImageBitmapOptions': {
|
1237
|
+
'props': {
|
1238
|
+
'imageOrientation': {},
|
1239
|
+
'premultiplyAlpha': {},
|
1240
|
+
'colorSpaceConversion': {},
|
1241
|
+
'resizeWidth': {},
|
1242
|
+
'resizeHeight': {},
|
1243
|
+
'resizeQuality': {},
|
1244
|
+
},
|
1245
|
+
},
|
1246
|
+
'DedicatedWorkerGlobalScope': {
|
1247
|
+
'inheritance': 'WorkerGlobalScope',
|
1248
|
+
'includes': ['AnimationFrameProvider'],
|
1249
|
+
'props': {'name': {}, 'onmessage': {}, 'onmessageerror': {}},
|
1250
|
+
},
|
1251
|
+
'MessageEvent':
|
1252
|
+
{'inheritance': 'Event', 'props': {'data': {}, 'origin': {}, 'lastEventId': {}, 'source': {}, 'ports': {}}},
|
1253
|
+
'MessageEventInit':
|
1254
|
+
{'inheritance': 'EventInit', 'props': {'data': {}, 'origin': {}, 'lastEventId': {}, 'source': {}, 'ports': {}}},
|
1255
|
+
'EventSource': {
|
1256
|
+
'inheritance': 'EventTarget',
|
1257
|
+
'props': {'url': {}, 'withCredentials': {}, 'readyState': {}, 'onopen': {}, 'onmessage': {}, 'onerror': {}},
|
1258
|
+
},
|
1259
|
+
'EventSourceInit': {'props': {'withCredentials': {}}},
|
1260
|
+
'MessageChannel': {'props': {'port1': {}, 'port2': {}}},
|
1261
|
+
'MessagePort': {'inheritance': 'EventTarget', 'props': {'onmessage': {}, 'onmessageerror': {}}},
|
1262
|
+
'StructuredSerializeOptions': {'props': {'transfer': {}}},
|
1263
|
+
'BroadcastChannel': {'inheritance': 'EventTarget', 'props': {'name': {}, 'onmessage': {}, 'onmessageerror': {}}},
|
1264
|
+
'SharedWorkerGlobalScope': {'inheritance': 'WorkerGlobalScope', 'props': {'name': {}, 'onconnect': {}}},
|
1265
|
+
'AbstractWorker': {'props': {'onerror': {}}},
|
1266
|
+
'Worker':
|
1267
|
+
{'inheritance': 'EventTarget', 'includes': ['AbstractWorker'], 'props': {'onmessage': {}, 'onmessageerror': {}}},
|
1268
|
+
'WorkerOptions': {'props': {'type': {}, 'credentials': {}, 'name': {}}},
|
1269
|
+
'SharedWorker': {'inheritance': 'EventTarget', 'includes': ['AbstractWorker'], 'props': {'port': {}}},
|
1270
|
+
'NavigatorConcurrentHardware': {'props': {'hardwareConcurrency': {}}},
|
1271
|
+
'WorkerNavigator':
|
1272
|
+
{'includes': ['NavigatorID', 'NavigatorLanguage', 'NavigatorOnLine', 'NavigatorConcurrentHardware']},
|
1273
|
+
'WorkerLocation': {
|
1274
|
+
'props': {
|
1275
|
+
'href': {},
|
1276
|
+
'origin': {},
|
1277
|
+
'protocol': {},
|
1278
|
+
'host': {},
|
1279
|
+
'hostname': {},
|
1280
|
+
'port': {},
|
1281
|
+
'pathname': {},
|
1282
|
+
'search': {},
|
1283
|
+
'hash': {},
|
1284
|
+
},
|
1285
|
+
},
|
1286
|
+
'WorkletOptions': {'props': {'credentials': {}}},
|
1287
|
+
'Storage': {'props': {'length': {}}},
|
1288
|
+
'WindowSessionStorage': {'props': {'sessionStorage': {}}},
|
1289
|
+
'WindowLocalStorage': {'props': {'localStorage': {}}},
|
1290
|
+
'StorageEvent':
|
1291
|
+
{'inheritance': 'Event', 'props': {'key': {}, 'oldValue': {}, 'newValue': {}, 'url': {}, 'storageArea': {}}},
|
1292
|
+
'StorageEventInit':
|
1293
|
+
{'inheritance': 'EventInit', 'props': {'key': {}, 'oldValue': {}, 'newValue': {}, 'url': {}, 'storageArea': {}}},
|
1294
|
+
'HTMLMarqueeElement': {
|
1295
|
+
'inheritance': 'HTMLElement',
|
1296
|
+
'props': {
|
1297
|
+
'behavior': {},
|
1298
|
+
'bgColor': {},
|
1299
|
+
'direction': {},
|
1300
|
+
'height': {},
|
1301
|
+
'hspace': {},
|
1302
|
+
'loop': {},
|
1303
|
+
'scrollAmount': {},
|
1304
|
+
'scrollDelay': {},
|
1305
|
+
'trueSpeed': {},
|
1306
|
+
'vspace': {},
|
1307
|
+
'width': {},
|
1308
|
+
},
|
1309
|
+
},
|
1310
|
+
'HTMLFrameSetElement':
|
1311
|
+
{'inheritance': 'HTMLElement', 'includes': ['WindowEventHandlers'], 'props': {'cols': {}, 'rows': {}}},
|
1312
|
+
'HTMLFrameElement': {
|
1313
|
+
'inheritance': 'HTMLElement',
|
1314
|
+
'props': {
|
1315
|
+
'name': {},
|
1316
|
+
'scrolling': {},
|
1317
|
+
'src': {},
|
1318
|
+
'frameBorder': {},
|
1319
|
+
'longDesc': {},
|
1320
|
+
'noResize': {},
|
1321
|
+
'contentDocument': {},
|
1322
|
+
'contentWindow': {},
|
1323
|
+
'marginHeight': {},
|
1324
|
+
'marginWidth': {},
|
1325
|
+
},
|
1326
|
+
},
|
1327
|
+
'HTMLDirectoryElement': {'inheritance': 'HTMLElement', 'props': {'compact': {}}},
|
1328
|
+
'HTMLFontElement': {'inheritance': 'HTMLElement', 'props': {'color': {}, 'face': {}, 'size': {}}},
|
1329
|
+
'HTMLParamElement': {'inheritance': 'HTMLElement', 'props': {'name': {}, 'value': {}, 'type': {}, 'valueType': {}}},
|
1330
|
+
'Event': {
|
1331
|
+
'props': {
|
1332
|
+
'type': {'specs': 2},
|
1333
|
+
'target': {'specs': 2},
|
1334
|
+
'srcElement': {'specs': 2},
|
1335
|
+
'currentTarget': {'specs': 2},
|
1336
|
+
'eventPhase': {'specs': 2},
|
1337
|
+
'cancelBubble': {'specs': 2},
|
1338
|
+
'bubbles': {'specs': 2},
|
1339
|
+
'cancelable': {'specs': 2},
|
1340
|
+
'returnValue': {'specs': 2},
|
1341
|
+
'defaultPrevented': {'specs': 2},
|
1342
|
+
'composed': {'specs': 2},
|
1343
|
+
'isTrusted': {'specs': 2},
|
1344
|
+
'timeStamp': {'specs': 2},
|
1345
|
+
},
|
1346
|
+
},
|
1347
|
+
'EventInit': {'props': {'bubbles': {'specs': 2}, 'cancelable': {'specs': 2}, 'composed': {'specs': 2}}},
|
1348
|
+
'CustomEvent': {'inheritance': 'Event', 'props': {'detail': {'specs': 2}}},
|
1349
|
+
'CustomEventInit': {'inheritance': 'EventInit', 'props': {'detail': {'specs': 2}}},
|
1350
|
+
'EventListenerOptions': {'props': {'capture': {'specs': 2}}},
|
1351
|
+
'AddEventListenerOptions': {
|
1352
|
+
'inheritance': 'EventListenerOptions',
|
1353
|
+
'props': {'passive': {'specs': 2}, 'once': {'specs': 2}, 'signal': {'specs': 2}},
|
1354
|
+
},
|
1355
|
+
'AbortController': {'props': {'signal': {'specs': 2}}},
|
1356
|
+
'AbortSignal': {
|
1357
|
+
'inheritance': 'EventTarget',
|
1358
|
+
'props': {'aborted': {'specs': 2}, 'reason': {'specs': 2}, 'onabort': {'specs': 2}},
|
1359
|
+
},
|
1360
|
+
'DocumentFragment': {'inheritance': 'Node', 'includes': ['NonElementParentNode', 'ParentNode']},
|
1361
|
+
'ShadowRoot': {
|
1362
|
+
'inheritance': 'DocumentFragment',
|
1363
|
+
'includes': ['DocumentOrShadowRoot'],
|
1364
|
+
'props': {
|
1365
|
+
'mode': {'specs': 2},
|
1366
|
+
'delegatesFocus': {'specs': 2},
|
1367
|
+
'slotAssignment': {'specs': 2},
|
1368
|
+
'host': {'specs': 2},
|
1369
|
+
'onslotchange': {'specs': 2},
|
1370
|
+
},
|
1371
|
+
},
|
1372
|
+
'ParentNode': {
|
1373
|
+
'props': {
|
1374
|
+
'children': {'specs': 2},
|
1375
|
+
'firstElementChild': {'specs': 2},
|
1376
|
+
'lastElementChild': {'specs': 2},
|
1377
|
+
'childElementCount': {'specs': 2},
|
1378
|
+
},
|
1379
|
+
},
|
1380
|
+
'Element': {
|
1381
|
+
'inheritance': 'Node',
|
1382
|
+
'includes': ['ParentNode', 'NonDocumentTypeChildNode', 'ChildNode', 'Slottable', 'ARIAMixin'],
|
1383
|
+
'props': {
|
1384
|
+
'namespaceURI': {'specs': 2},
|
1385
|
+
'prefix': {'specs': 2},
|
1386
|
+
'localName': {'specs': 2},
|
1387
|
+
'tagName': {'specs': 2},
|
1388
|
+
'id': {'specs': 2},
|
1389
|
+
'className': {'specs': 2},
|
1390
|
+
'classList': {'specs': 2},
|
1391
|
+
'slot': {'specs': 2},
|
1392
|
+
'attributes': {'specs': 2},
|
1393
|
+
'shadowRoot': {'specs': 2},
|
1394
|
+
},
|
1395
|
+
},
|
1396
|
+
'NonDocumentTypeChildNode': {'props': {'previousElementSibling': {'specs': 2}, 'nextElementSibling': {'specs': 2}}},
|
1397
|
+
'CharacterData': {
|
1398
|
+
'inheritance': 'Node',
|
1399
|
+
'includes': ['NonDocumentTypeChildNode', 'ChildNode'],
|
1400
|
+
'props': {'data': {'specs': 2}, 'length': {'specs': 2}},
|
1401
|
+
},
|
1402
|
+
'DocumentType': {
|
1403
|
+
'inheritance': 'Node',
|
1404
|
+
'includes': ['ChildNode'],
|
1405
|
+
'props': {'name': {'specs': 2}, 'publicId': {'specs': 2}, 'systemId': {'specs': 2}},
|
1406
|
+
},
|
1407
|
+
'Slottable': {'props': {'assignedSlot': {'specs': 2}}},
|
1408
|
+
'Text': {'inheritance': 'CharacterData', 'includes': ['Slottable'], 'props': {'wholeText': {'specs': 2}}},
|
1409
|
+
'NodeList': {'props': {'length': {'specs': 2}}},
|
1410
|
+
'HTMLCollection': {'props': {'length': {'specs': 2}}},
|
1411
|
+
'MutationObserverInit': {
|
1412
|
+
'props': {
|
1413
|
+
'childList': {'specs': 2},
|
1414
|
+
'attributes': {'specs': 2},
|
1415
|
+
'characterData': {'specs': 2},
|
1416
|
+
'subtree': {'specs': 2},
|
1417
|
+
'attributeOldValue': {'specs': 2},
|
1418
|
+
'characterDataOldValue': {'specs': 2},
|
1419
|
+
'attributeFilter': {'specs': 2},
|
1420
|
+
},
|
1421
|
+
},
|
1422
|
+
'MutationRecord': {
|
1423
|
+
'props': {
|
1424
|
+
'type': {'specs': 2},
|
1425
|
+
'target': {'specs': 2},
|
1426
|
+
'addedNodes': {'specs': 2},
|
1427
|
+
'removedNodes': {'specs': 2},
|
1428
|
+
'previousSibling': {'specs': 2},
|
1429
|
+
'nextSibling': {'specs': 2},
|
1430
|
+
'attributeName': {'specs': 2},
|
1431
|
+
'attributeNamespace': {'specs': 2},
|
1432
|
+
'oldValue': {'specs': 2},
|
1433
|
+
},
|
1434
|
+
},
|
1435
|
+
'Node': {
|
1436
|
+
'inheritance': 'EventTarget',
|
1437
|
+
'props': {
|
1438
|
+
'nodeType': {'specs': 2},
|
1439
|
+
'nodeName': {'specs': 2},
|
1440
|
+
'baseURI': {'specs': 2},
|
1441
|
+
'isConnected': {'specs': 2},
|
1442
|
+
'ownerDocument': {'specs': 2},
|
1443
|
+
'parentNode': {'specs': 2},
|
1444
|
+
'parentElement': {'specs': 2},
|
1445
|
+
'childNodes': {'specs': 2},
|
1446
|
+
'firstChild': {'specs': 2},
|
1447
|
+
'lastChild': {'specs': 2},
|
1448
|
+
'previousSibling': {'specs': 2},
|
1449
|
+
'nextSibling': {'specs': 2},
|
1450
|
+
'nodeValue': {'specs': 2},
|
1451
|
+
'textContent': {'specs': 2},
|
1452
|
+
},
|
1453
|
+
},
|
1454
|
+
'GetRootNodeOptions': {'props': {'composed': {'specs': 2}}},
|
1455
|
+
'XMLDocument': {'inheritance': 'Document'},
|
1456
|
+
'ElementCreationOptions': {'props': {'is': {'global': true, 'specs': 2}}},
|
1457
|
+
'ShadowRootInit': {'props': {'mode': {'specs': 2}, 'delegatesFocus': {'specs': 2}, 'slotAssignment': {'specs': 2}}},
|
1458
|
+
'NamedNodeMap': {'props': {'length': {'specs': 2}}},
|
1459
|
+
'Attr': {
|
1460
|
+
'inheritance': 'Node',
|
1461
|
+
'props': {
|
1462
|
+
'namespaceURI': {'specs': 2},
|
1463
|
+
'prefix': {'specs': 2},
|
1464
|
+
'localName': {'specs': 2},
|
1465
|
+
'name': {'specs': 2},
|
1466
|
+
'value': {'specs': 2},
|
1467
|
+
'ownerElement': {'specs': 2},
|
1468
|
+
'specified': {'specs': 2},
|
1469
|
+
},
|
1470
|
+
},
|
1471
|
+
'CDATASection': {'inheritance': 'Text'},
|
1472
|
+
'ProcessingInstruction':
|
1473
|
+
{'inheritance': 'CharacterData', 'includes': ['LinkStyle'], 'props': {'target': {'specs': 2}}},
|
1474
|
+
'Comment': {'inheritance': 'CharacterData'},
|
1475
|
+
'AbstractRange': {
|
1476
|
+
'props': {
|
1477
|
+
'startContainer': {'specs': 2},
|
1478
|
+
'startOffset': {'specs': 2},
|
1479
|
+
'endContainer': {'specs': 2},
|
1480
|
+
'endOffset': {'specs': 2},
|
1481
|
+
'collapsed': {'specs': 2},
|
1482
|
+
},
|
1483
|
+
},
|
1484
|
+
'StaticRangeInit': {
|
1485
|
+
'props': {
|
1486
|
+
'startContainer': {'specs': 2},
|
1487
|
+
'startOffset': {'specs': 2},
|
1488
|
+
'endContainer': {'specs': 2},
|
1489
|
+
'endOffset': {'specs': 2},
|
1490
|
+
},
|
1491
|
+
},
|
1492
|
+
'StaticRange': {'inheritance': 'AbstractRange'},
|
1493
|
+
'Range': {'inheritance': 'AbstractRange', 'props': {'commonAncestorContainer': {'specs': 2}}},
|
1494
|
+
'NodeIterator': {
|
1495
|
+
'props': {
|
1496
|
+
'root': {'specs': 2},
|
1497
|
+
'referenceNode': {'specs': 2},
|
1498
|
+
'pointerBeforeReferenceNode': {'specs': 2},
|
1499
|
+
'whatToShow': {'specs': 2},
|
1500
|
+
'filter': {'specs': 2},
|
1501
|
+
},
|
1502
|
+
},
|
1503
|
+
'TreeWalker': {
|
1504
|
+
'props': {'root': {'specs': 2}, 'whatToShow': {'specs': 2}, 'filter': {'specs': 2}, 'currentNode': {'specs': 2}},
|
1505
|
+
},
|
1506
|
+
'DOMTokenList': {'props': {'length': {'specs': 2}, 'value': {'specs': 2}}},
|
1507
|
+
'XPathResult': {
|
1508
|
+
'props': {
|
1509
|
+
'resultType': {'specs': 2},
|
1510
|
+
'numberValue': {'specs': 2},
|
1511
|
+
'stringValue': {'specs': 2},
|
1512
|
+
'booleanValue': {'specs': 2},
|
1513
|
+
'singleNodeValue': {'specs': 2},
|
1514
|
+
'invalidIteratorState': {'specs': 2},
|
1515
|
+
'snapshotLength': {'specs': 2},
|
1516
|
+
},
|
1517
|
+
},
|
1518
|
+
'XPathEvaluator': {'includes': ['XPathEvaluatorBase']},
|
1519
|
+
'UIEvent': {'inheritance': 'Event', 'props': {'view': {'specs': 4}, 'detail': {'specs': 4}, 'which': {'specs': 4}}},
|
1520
|
+
'UIEventInit':
|
1521
|
+
{'inheritance': 'EventInit', 'props': {'view': {'specs': 4}, 'detail': {'specs': 4}, 'which': {'specs': 4}}},
|
1522
|
+
'FocusEvent': {'inheritance': 'UIEvent', 'props': {'relatedTarget': {'specs': 4}}},
|
1523
|
+
'FocusEventInit': {'inheritance': 'UIEventInit', 'props': {'relatedTarget': {'specs': 4}}},
|
1524
|
+
'MouseEvent': {
|
1525
|
+
'inheritance': 'UIEvent',
|
1526
|
+
'props': {
|
1527
|
+
'screenX': {'specs': 4},
|
1528
|
+
'screenY': {'specs': 4},
|
1529
|
+
'clientX': {'specs': 4},
|
1530
|
+
'clientY': {'specs': 4},
|
1531
|
+
'ctrlKey': {'specs': 4},
|
1532
|
+
'shiftKey': {'specs': 4},
|
1533
|
+
'altKey': {'specs': 4},
|
1534
|
+
'metaKey': {'specs': 4},
|
1535
|
+
'button': {'specs': 4},
|
1536
|
+
'buttons': {'specs': 4},
|
1537
|
+
'relatedTarget': {'specs': 4},
|
1538
|
+
},
|
1539
|
+
},
|
1540
|
+
'MouseEventInit': {
|
1541
|
+
'inheritance': 'EventModifierInit',
|
1542
|
+
'props': {
|
1543
|
+
'screenX': {'specs': 4},
|
1544
|
+
'screenY': {'specs': 4},
|
1545
|
+
'clientX': {'specs': 4},
|
1546
|
+
'clientY': {'specs': 4},
|
1547
|
+
'button': {'specs': 4},
|
1548
|
+
'buttons': {'specs': 4},
|
1549
|
+
'relatedTarget': {'specs': 4},
|
1550
|
+
},
|
1551
|
+
},
|
1552
|
+
'EventModifierInit': {
|
1553
|
+
'inheritance': 'UIEventInit',
|
1554
|
+
'props': {
|
1555
|
+
'ctrlKey': {'specs': 4},
|
1556
|
+
'shiftKey': {'specs': 4},
|
1557
|
+
'altKey': {'specs': 4},
|
1558
|
+
'metaKey': {'specs': 4},
|
1559
|
+
'modifierAltGraph': {'specs': 4},
|
1560
|
+
'modifierCapsLock': {'specs': 4},
|
1561
|
+
'modifierFn': {'specs': 4},
|
1562
|
+
'modifierFnLock': {'specs': 4},
|
1563
|
+
'modifierHyper': {'specs': 4},
|
1564
|
+
'modifierNumLock': {'specs': 4},
|
1565
|
+
'modifierScrollLock': {'specs': 4},
|
1566
|
+
'modifierSuper': {'specs': 4},
|
1567
|
+
'modifierSymbol': {'specs': 4},
|
1568
|
+
'modifierSymbolLock': {'specs': 4},
|
1569
|
+
},
|
1570
|
+
},
|
1571
|
+
'WheelEvent': {
|
1572
|
+
'inheritance': 'MouseEvent',
|
1573
|
+
'props': {'deltaX': {'specs': 4}, 'deltaY': {'specs': 4}, 'deltaZ': {'specs': 4}, 'deltaMode': {'specs': 4}},
|
1574
|
+
},
|
1575
|
+
'WheelEventInit': {
|
1576
|
+
'inheritance': 'MouseEventInit',
|
1577
|
+
'props': {'deltaX': {'specs': 4}, 'deltaY': {'specs': 4}, 'deltaZ': {'specs': 4}, 'deltaMode': {'specs': 4}},
|
1578
|
+
},
|
1579
|
+
'InputEvent': {
|
1580
|
+
'inheritance': 'UIEvent',
|
1581
|
+
'props': {'data': {'specs': 4}, 'isComposing': {'specs': 4}, 'inputType': {'specs': 4}},
|
1582
|
+
},
|
1583
|
+
'InputEventInit': {
|
1584
|
+
'inheritance': 'UIEventInit',
|
1585
|
+
'props': {'data': {'specs': 4}, 'isComposing': {'specs': 4}, 'inputType': {'specs': 4}},
|
1586
|
+
},
|
1587
|
+
'KeyboardEvent': {
|
1588
|
+
'inheritance': 'UIEvent',
|
1589
|
+
'props': {
|
1590
|
+
'key': {'specs': 4},
|
1591
|
+
'code': {'specs': 4},
|
1592
|
+
'location': {'specs': 4},
|
1593
|
+
'ctrlKey': {'specs': 4},
|
1594
|
+
'shiftKey': {'specs': 4},
|
1595
|
+
'altKey': {'specs': 4},
|
1596
|
+
'metaKey': {'specs': 4},
|
1597
|
+
'repeat': {'specs': 4},
|
1598
|
+
'isComposing': {'specs': 4},
|
1599
|
+
'charCode': {'specs': 4},
|
1600
|
+
'keyCode': {'specs': 4},
|
1601
|
+
},
|
1602
|
+
},
|
1603
|
+
'KeyboardEventInit': {
|
1604
|
+
'inheritance': 'EventModifierInit',
|
1605
|
+
'props': {
|
1606
|
+
'key': {'specs': 4},
|
1607
|
+
'code': {'specs': 4},
|
1608
|
+
'location': {'specs': 4},
|
1609
|
+
'repeat': {'specs': 4},
|
1610
|
+
'isComposing': {'specs': 4},
|
1611
|
+
'charCode': {'specs': 4},
|
1612
|
+
'keyCode': {'specs': 4},
|
1613
|
+
},
|
1614
|
+
},
|
1615
|
+
'CompositionEvent': {'inheritance': 'UIEvent', 'props': {'data': {'specs': 4}}},
|
1616
|
+
'CompositionEventInit': {'inheritance': 'UIEventInit', 'props': {'data': {'specs': 4}}},
|
1617
|
+
'MutationEvent': {
|
1618
|
+
'inheritance': 'Event',
|
1619
|
+
'props': {
|
1620
|
+
'relatedNode': {'specs': 4},
|
1621
|
+
'prevValue': {'specs': 4},
|
1622
|
+
'newValue': {'specs': 4},
|
1623
|
+
'attrName': {'specs': 4},
|
1624
|
+
'attrChange': {'specs': 4},
|
1625
|
+
},
|
1626
|
+
},
|
1627
|
+
'PointerEventInit': {
|
1628
|
+
'inheritance': 'MouseEventInit',
|
1629
|
+
'props': {
|
1630
|
+
'pointerId': {'specs': 8},
|
1631
|
+
'width': {'specs': 8},
|
1632
|
+
'height': {'specs': 8},
|
1633
|
+
'pressure': {'specs': 8},
|
1634
|
+
'tangentialPressure': {'specs': 8},
|
1635
|
+
'tiltX': {'specs': 8},
|
1636
|
+
'tiltY': {'specs': 8},
|
1637
|
+
'twist': {'specs': 8},
|
1638
|
+
'altitudeAngle': {'specs': 8},
|
1639
|
+
'azimuthAngle': {'specs': 8},
|
1640
|
+
'pointerType': {'specs': 8},
|
1641
|
+
'isPrimary': {'specs': 8},
|
1642
|
+
'coalescedEvents': {'specs': 8},
|
1643
|
+
'predictedEvents': {'specs': 8},
|
1644
|
+
},
|
1645
|
+
},
|
1646
|
+
'PointerEvent': {
|
1647
|
+
'inheritance': 'MouseEvent',
|
1648
|
+
'props': {
|
1649
|
+
'pointerId': {'specs': 8},
|
1650
|
+
'width': {'specs': 8},
|
1651
|
+
'height': {'specs': 8},
|
1652
|
+
'pressure': {'specs': 8},
|
1653
|
+
'tangentialPressure': {'specs': 8},
|
1654
|
+
'tiltX': {'specs': 8},
|
1655
|
+
'tiltY': {'specs': 8},
|
1656
|
+
'twist': {'specs': 8},
|
1657
|
+
'altitudeAngle': {'specs': 8},
|
1658
|
+
'azimuthAngle': {'specs': 8},
|
1659
|
+
'pointerType': {'specs': 8},
|
1660
|
+
'isPrimary': {'specs': 8},
|
1661
|
+
},
|
1662
|
+
},
|
1663
|
+
'MediaList': {'props': {'mediaText': {'specs': 16}, 'length': {'specs': 16}}},
|
1664
|
+
'StyleSheet': {
|
1665
|
+
'props': {
|
1666
|
+
'type': {'specs': 16},
|
1667
|
+
'href': {'specs': 16},
|
1668
|
+
'ownerNode': {'specs': 16},
|
1669
|
+
'parentStyleSheet': {'specs': 16},
|
1670
|
+
'title': {'global': true, 'specs': 16},
|
1671
|
+
'media': {'specs': 16},
|
1672
|
+
'disabled': {'specs': 16},
|
1673
|
+
},
|
1674
|
+
},
|
1675
|
+
'CSSStyleSheet': {
|
1676
|
+
'inheritance': 'StyleSheet',
|
1677
|
+
'props': {'ownerRule': {'specs': 16}, 'cssRules': {'specs': 16}, 'rules': {'specs': 16}},
|
1678
|
+
},
|
1679
|
+
'CSSStyleSheetInit': {'props': {'baseURL': {'specs': 16}, 'media': {'specs': 16}, 'disabled': {'specs': 16}}},
|
1680
|
+
'StyleSheetList': {'props': {'length': {'specs': 16}}},
|
1681
|
+
'LinkStyle': {'props': {'sheet': {'specs': 16}}},
|
1682
|
+
'CSSRuleList': {'props': {'length': {'specs': 16}}},
|
1683
|
+
'CSSRule': {
|
1684
|
+
'props': {
|
1685
|
+
'cssText': {'specs': 16},
|
1686
|
+
'parentRule': {'specs': 16},
|
1687
|
+
'parentStyleSheet': {'specs': 16},
|
1688
|
+
'type': {'specs': 16},
|
1689
|
+
},
|
1690
|
+
},
|
1691
|
+
'CSSStyleRule':
|
1692
|
+
{'inheritance': 'CSSRule', 'props': {'selectorText': {'specs': 16}, 'style': {'global': true, 'specs': 16}}},
|
1693
|
+
'CSSImportRule':
|
1694
|
+
{'inheritance': 'CSSRule', 'props': {'href': {'specs': 16}, 'media': {'specs': 16}, 'styleSheet': {'specs': 16}}},
|
1695
|
+
'CSSGroupingRule': {'inheritance': 'CSSRule', 'props': {'cssRules': {'specs': 16}}},
|
1696
|
+
'CSSPageRule': {
|
1697
|
+
'inheritance': 'CSSGroupingRule',
|
1698
|
+
'props': {'selectorText': {'specs': 16}, 'style': {'global': true, 'specs': 16}},
|
1699
|
+
},
|
1700
|
+
'CSSMarginRule': {'inheritance': 'CSSRule', 'props': {'name': {'specs': 16}, 'style': {'global': true, 'specs': 16}}},
|
1701
|
+
'CSSNamespaceRule': {'inheritance': 'CSSRule', 'props': {'namespaceURI': {'specs': 16}, 'prefix': {'specs': 16}}},
|
1702
|
+
'CSSStyleDeclaration': {
|
1703
|
+
'props':
|
1704
|
+
{'cssText': {'specs': 16}, 'length': {'specs': 16}, 'parentRule': {'specs': 16}, 'cssFloat': {'specs': 16}},
|
1705
|
+
},
|
1706
|
+
'ElementCSSInlineStyle': {'props': {'style': {'global': true, 'specs': 16}}},
|
1707
|
+
'SVGElement': {'includes': ['ElementCSSInlineStyle']},
|
1708
|
+
'MathMLElement': {'includes': ['ElementCSSInlineStyle']},
|
1709
|
+
'ARIAMixin': {
|
1710
|
+
'props': {
|
1711
|
+
'role': {'specs': 32},
|
1712
|
+
'ariaAtomic': {'specs': 32},
|
1713
|
+
'ariaAutoComplete': {'specs': 32},
|
1714
|
+
'ariaBusy': {'specs': 32},
|
1715
|
+
'ariaChecked': {'specs': 32},
|
1716
|
+
'ariaColCount': {'specs': 32},
|
1717
|
+
'ariaColIndex': {'specs': 32},
|
1718
|
+
'ariaColIndexText': {'specs': 32},
|
1719
|
+
'ariaColSpan': {'specs': 32},
|
1720
|
+
'ariaCurrent': {'specs': 32},
|
1721
|
+
'ariaDescription': {'specs': 32},
|
1722
|
+
'ariaDisabled': {'specs': 32},
|
1723
|
+
'ariaExpanded': {'specs': 32},
|
1724
|
+
'ariaHasPopup': {'specs': 32},
|
1725
|
+
'ariaHidden': {'specs': 32},
|
1726
|
+
'ariaInvalid': {'specs': 32},
|
1727
|
+
'ariaKeyShortcuts': {'specs': 32},
|
1728
|
+
'ariaLabel': {'specs': 32},
|
1729
|
+
'ariaLevel': {'specs': 32},
|
1730
|
+
'ariaLive': {'specs': 32},
|
1731
|
+
'ariaModal': {'specs': 32},
|
1732
|
+
'ariaMultiLine': {'specs': 32},
|
1733
|
+
'ariaMultiSelectable': {'specs': 32},
|
1734
|
+
'ariaOrientation': {'specs': 32},
|
1735
|
+
'ariaPlaceholder': {'specs': 32},
|
1736
|
+
'ariaPosInSet': {'specs': 32},
|
1737
|
+
'ariaPressed': {'specs': 32},
|
1738
|
+
'ariaReadOnly': {'specs': 32},
|
1739
|
+
'ariaRequired': {'specs': 32},
|
1740
|
+
'ariaRoleDescription': {'specs': 32},
|
1741
|
+
'ariaRowCount': {'specs': 32},
|
1742
|
+
'ariaRowIndex': {'specs': 32},
|
1743
|
+
'ariaRowIndexText': {'specs': 32},
|
1744
|
+
'ariaRowSpan': {'specs': 32},
|
1745
|
+
'ariaSelected': {'specs': 32},
|
1746
|
+
'ariaSetSize': {'specs': 32},
|
1747
|
+
'ariaSort': {'specs': 32},
|
1748
|
+
'ariaValueMax': {'specs': 32},
|
1749
|
+
'ariaValueMin': {'specs': 32},
|
1750
|
+
'ariaValueNow': {'specs': 32},
|
1751
|
+
'ariaValueText': {'specs': 32},
|
1752
|
+
},
|
1753
|
+
},
|
1754
|
+
};
|