chrome-devtools-frontend 1.0.1014346 → 1.0.1014853
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/.eslintignore +1 -0
- package/front_end/core/sdk/SourceMap.ts +88 -27
- package/front_end/models/javascript_metadata/DOMPinnedProperties.ts +3322 -833
- package/front_end/models/source_map_scopes/NamesResolver.ts +88 -19
- package/package.json +1 -1
- package/scripts/webidl-properties/config.js +305 -239
- package/scripts/webidl-properties/get-props.js +23 -12
- package/scripts/webidl-properties/index.js +14 -9
- package/scripts/webidl-properties/tests.js +58 -14
@@ -22,6 +22,8 @@ export interface DOMPinnedWebIDLProp {
|
|
22
22
|
// A bitfield of the specs in which the property is found.
|
23
23
|
// If missing, it implies the default spec: "html".
|
24
24
|
specs?: number;
|
25
|
+
// The "states" in which this property is "applicable".
|
26
|
+
rules?: Array<DOMPinnedWebIDLRule>;
|
25
27
|
}
|
26
28
|
|
27
29
|
export interface DOMPinnedWebIDLType {
|
@@ -35,12 +37,12 @@ export interface DOMPinnedWebIDLType {
|
|
35
37
|
[PropName: string]: DOMPinnedWebIDLProp,
|
36
38
|
};
|
37
39
|
// The "states" in which only certain properties are "applicable".
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
40
|
+
rules?: Array<DOMPinnedWebIDLRule>;
|
41
|
+
}
|
42
|
+
|
43
|
+
export interface DOMPinnedWebIDLRule {
|
44
|
+
when: string;
|
45
|
+
is: string;
|
44
46
|
}
|
45
47
|
|
46
48
|
export interface DOMPinnedPropertiesDataset {
|
@@ -55,11 +57,32 @@ export interface DOMPinnedPropertiesDataset {
|
|
55
57
|
* and inheritance/include chains as values.
|
56
58
|
*/
|
57
59
|
export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
58
|
-
'HTMLAllCollection': {
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
60
|
+
'HTMLAllCollection': {
|
61
|
+
'props': {
|
62
|
+
'length': {},
|
63
|
+
},
|
64
|
+
},
|
65
|
+
'HTMLFormControlsCollection': {
|
66
|
+
'inheritance': 'HTMLCollection',
|
67
|
+
},
|
68
|
+
'RadioNodeList': {
|
69
|
+
'inheritance': 'NodeList',
|
70
|
+
'props': {
|
71
|
+
'value': {},
|
72
|
+
},
|
73
|
+
},
|
74
|
+
'HTMLOptionsCollection': {
|
75
|
+
'inheritance': 'HTMLCollection',
|
76
|
+
'props': {
|
77
|
+
'length': {},
|
78
|
+
'selectedIndex': {},
|
79
|
+
},
|
80
|
+
},
|
81
|
+
'DOMStringList': {
|
82
|
+
'props': {
|
83
|
+
'length': {},
|
84
|
+
},
|
85
|
+
},
|
63
86
|
'Document': {
|
64
87
|
'inheritance': 'Node',
|
65
88
|
'includes': [
|
@@ -77,8 +100,12 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
77
100
|
'cookie': {},
|
78
101
|
'lastModified': {},
|
79
102
|
'readyState': {},
|
80
|
-
'title': {
|
81
|
-
|
103
|
+
'title': {
|
104
|
+
'global': true,
|
105
|
+
},
|
106
|
+
'dir': {
|
107
|
+
'global': true,
|
108
|
+
},
|
82
109
|
'body': {},
|
83
110
|
'head': {},
|
84
111
|
'images': {},
|
@@ -90,7 +117,9 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
90
117
|
'currentScript': {},
|
91
118
|
'defaultView': {},
|
92
119
|
'designMode': {},
|
93
|
-
'hidden': {
|
120
|
+
'hidden': {
|
121
|
+
'global': true,
|
122
|
+
},
|
94
123
|
'visibilityState': {},
|
95
124
|
'onreadystatechange': {},
|
96
125
|
'onvisibilitychange': {},
|
@@ -102,20 +131,49 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
102
131
|
'anchors': {},
|
103
132
|
'applets': {},
|
104
133
|
'all': {},
|
105
|
-
'implementation': {
|
106
|
-
|
107
|
-
|
108
|
-
'
|
109
|
-
|
110
|
-
|
111
|
-
'
|
112
|
-
|
113
|
-
|
114
|
-
'
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
134
|
+
'implementation': {
|
135
|
+
'specs': 2,
|
136
|
+
},
|
137
|
+
'URL': {
|
138
|
+
'specs': 2,
|
139
|
+
},
|
140
|
+
'documentURI': {
|
141
|
+
'specs': 2,
|
142
|
+
},
|
143
|
+
'compatMode': {
|
144
|
+
'specs': 2,
|
145
|
+
},
|
146
|
+
'characterSet': {
|
147
|
+
'specs': 2,
|
148
|
+
},
|
149
|
+
'charset': {
|
150
|
+
'specs': 2,
|
151
|
+
},
|
152
|
+
'inputEncoding': {
|
153
|
+
'specs': 2,
|
154
|
+
},
|
155
|
+
'contentType': {
|
156
|
+
'specs': 2,
|
157
|
+
},
|
158
|
+
'doctype': {
|
159
|
+
'specs': 2,
|
160
|
+
},
|
161
|
+
'documentElement': {
|
162
|
+
'specs': 2,
|
163
|
+
},
|
164
|
+
},
|
165
|
+
},
|
166
|
+
'DocumentOrShadowRoot': {
|
167
|
+
'props': {
|
168
|
+
'activeElement': {},
|
169
|
+
'styleSheets': {
|
170
|
+
'specs': 16,
|
171
|
+
},
|
172
|
+
'adoptedStyleSheets': {
|
173
|
+
'specs': 16,
|
174
|
+
},
|
175
|
+
},
|
176
|
+
},
|
119
177
|
'HTMLElement': {
|
120
178
|
'inheritance': 'Element',
|
121
179
|
'includes': [
|
@@ -126,31 +184,79 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
126
184
|
'ElementCSSInlineStyle',
|
127
185
|
],
|
128
186
|
'props': {
|
129
|
-
'title': {
|
130
|
-
|
131
|
-
|
132
|
-
'
|
133
|
-
|
187
|
+
'title': {
|
188
|
+
'global': true,
|
189
|
+
},
|
190
|
+
'lang': {
|
191
|
+
'global': true,
|
192
|
+
},
|
193
|
+
'translate': {
|
194
|
+
'global': true,
|
195
|
+
},
|
196
|
+
'dir': {
|
197
|
+
'global': true,
|
198
|
+
},
|
199
|
+
'hidden': {
|
200
|
+
'global': true,
|
201
|
+
},
|
134
202
|
'inert': {},
|
135
203
|
'accessKey': {},
|
136
204
|
'accessKeyLabel': {},
|
137
|
-
'draggable': {
|
138
|
-
|
139
|
-
|
205
|
+
'draggable': {
|
206
|
+
'global': true,
|
207
|
+
},
|
208
|
+
'spellcheck': {
|
209
|
+
'global': true,
|
210
|
+
},
|
211
|
+
'autocapitalize': {
|
212
|
+
'global': true,
|
213
|
+
},
|
140
214
|
'innerText': {},
|
141
215
|
'outerText': {},
|
142
216
|
},
|
143
217
|
},
|
144
|
-
'HTMLUnknownElement': {
|
145
|
-
|
146
|
-
|
147
|
-
'
|
148
|
-
|
149
|
-
|
150
|
-
|
218
|
+
'HTMLUnknownElement': {
|
219
|
+
'inheritance': 'HTMLElement',
|
220
|
+
},
|
221
|
+
'HTMLOrSVGElement': {
|
222
|
+
'props': {
|
223
|
+
'dataset': {},
|
224
|
+
'nonce': {
|
225
|
+
'global': true,
|
226
|
+
},
|
227
|
+
'autofocus': {
|
228
|
+
'global': true,
|
229
|
+
},
|
230
|
+
'tabIndex': {},
|
231
|
+
},
|
232
|
+
},
|
233
|
+
'HTMLHtmlElement': {
|
234
|
+
'inheritance': 'HTMLElement',
|
235
|
+
'props': {
|
236
|
+
'version': {},
|
237
|
+
},
|
238
|
+
},
|
239
|
+
'HTMLHeadElement': {
|
240
|
+
'inheritance': 'HTMLElement',
|
241
|
+
},
|
242
|
+
'HTMLTitleElement': {
|
243
|
+
'inheritance': 'HTMLElement',
|
244
|
+
'props': {
|
245
|
+
'text': {},
|
246
|
+
},
|
247
|
+
},
|
248
|
+
'HTMLBaseElement': {
|
249
|
+
'inheritance': 'HTMLElement',
|
250
|
+
'props': {
|
251
|
+
'href': {},
|
252
|
+
'target': {},
|
253
|
+
},
|
254
|
+
},
|
151
255
|
'HTMLLinkElement': {
|
152
256
|
'inheritance': 'HTMLElement',
|
153
|
-
'includes': [
|
257
|
+
'includes': [
|
258
|
+
'LinkStyle',
|
259
|
+
],
|
154
260
|
'props': {
|
155
261
|
'href': {},
|
156
262
|
'crossOrigin': {},
|
@@ -172,33 +278,122 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
172
278
|
'target': {},
|
173
279
|
},
|
174
280
|
},
|
175
|
-
'HTMLMetaElement':
|
176
|
-
|
281
|
+
'HTMLMetaElement': {
|
282
|
+
'inheritance': 'HTMLElement',
|
283
|
+
'props': {
|
284
|
+
'name': {},
|
285
|
+
'httpEquiv': {},
|
286
|
+
'content': {},
|
287
|
+
'media': {},
|
288
|
+
'scheme': {},
|
289
|
+
},
|
290
|
+
},
|
177
291
|
'HTMLStyleElement': {
|
178
292
|
'inheritance': 'HTMLElement',
|
179
|
-
'includes': [
|
180
|
-
|
293
|
+
'includes': [
|
294
|
+
'LinkStyle',
|
295
|
+
],
|
296
|
+
'props': {
|
297
|
+
'disabled': {},
|
298
|
+
'media': {},
|
299
|
+
'blocking': {},
|
300
|
+
'type': {},
|
301
|
+
},
|
181
302
|
},
|
182
303
|
'HTMLBodyElement': {
|
183
304
|
'inheritance': 'HTMLElement',
|
184
|
-
'includes': [
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
'
|
197
|
-
|
198
|
-
|
305
|
+
'includes': [
|
306
|
+
'WindowEventHandlers',
|
307
|
+
],
|
308
|
+
'props': {
|
309
|
+
'text': {},
|
310
|
+
'link': {},
|
311
|
+
'vLink': {},
|
312
|
+
'aLink': {},
|
313
|
+
'bgColor': {},
|
314
|
+
'background': {},
|
315
|
+
},
|
316
|
+
},
|
317
|
+
'HTMLHeadingElement': {
|
318
|
+
'inheritance': 'HTMLElement',
|
319
|
+
'props': {
|
320
|
+
'align': {},
|
321
|
+
},
|
322
|
+
},
|
323
|
+
'HTMLParagraphElement': {
|
324
|
+
'inheritance': 'HTMLElement',
|
325
|
+
'props': {
|
326
|
+
'align': {},
|
327
|
+
},
|
328
|
+
},
|
329
|
+
'HTMLHRElement': {
|
330
|
+
'inheritance': 'HTMLElement',
|
331
|
+
'props': {
|
332
|
+
'align': {},
|
333
|
+
'color': {},
|
334
|
+
'noShade': {},
|
335
|
+
'size': {},
|
336
|
+
'width': {},
|
337
|
+
},
|
338
|
+
},
|
339
|
+
'HTMLPreElement': {
|
340
|
+
'inheritance': 'HTMLElement',
|
341
|
+
'props': {
|
342
|
+
'width': {},
|
343
|
+
},
|
344
|
+
},
|
345
|
+
'HTMLQuoteElement': {
|
346
|
+
'inheritance': 'HTMLElement',
|
347
|
+
'props': {
|
348
|
+
'cite': {},
|
349
|
+
},
|
350
|
+
},
|
351
|
+
'HTMLOListElement': {
|
352
|
+
'inheritance': 'HTMLElement',
|
353
|
+
'props': {
|
354
|
+
'reversed': {},
|
355
|
+
'start': {},
|
356
|
+
'type': {},
|
357
|
+
'compact': {},
|
358
|
+
},
|
359
|
+
},
|
360
|
+
'HTMLUListElement': {
|
361
|
+
'inheritance': 'HTMLElement',
|
362
|
+
'props': {
|
363
|
+
'compact': {},
|
364
|
+
'type': {},
|
365
|
+
},
|
366
|
+
},
|
367
|
+
'HTMLMenuElement': {
|
368
|
+
'inheritance': 'HTMLElement',
|
369
|
+
'props': {
|
370
|
+
'compact': {},
|
371
|
+
},
|
372
|
+
},
|
373
|
+
'HTMLLIElement': {
|
374
|
+
'inheritance': 'HTMLElement',
|
375
|
+
'props': {
|
376
|
+
'value': {},
|
377
|
+
'type': {},
|
378
|
+
},
|
379
|
+
},
|
380
|
+
'HTMLDListElement': {
|
381
|
+
'inheritance': 'HTMLElement',
|
382
|
+
'props': {
|
383
|
+
'compact': {},
|
384
|
+
},
|
385
|
+
},
|
386
|
+
'HTMLDivElement': {
|
387
|
+
'inheritance': 'HTMLElement',
|
388
|
+
'props': {
|
389
|
+
'align': {},
|
390
|
+
},
|
391
|
+
},
|
199
392
|
'HTMLAnchorElement': {
|
200
393
|
'inheritance': 'HTMLElement',
|
201
|
-
'includes': [
|
394
|
+
'includes': [
|
395
|
+
'HTMLHyperlinkElementUtils',
|
396
|
+
],
|
202
397
|
'props': {
|
203
398
|
'target': {},
|
204
399
|
'download': {},
|
@@ -216,10 +411,27 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
216
411
|
'shape': {},
|
217
412
|
},
|
218
413
|
},
|
219
|
-
'HTMLDataElement': {
|
220
|
-
|
221
|
-
|
222
|
-
|
414
|
+
'HTMLDataElement': {
|
415
|
+
'inheritance': 'HTMLElement',
|
416
|
+
'props': {
|
417
|
+
'value': {},
|
418
|
+
},
|
419
|
+
},
|
420
|
+
'HTMLTimeElement': {
|
421
|
+
'inheritance': 'HTMLElement',
|
422
|
+
'props': {
|
423
|
+
'dateTime': {},
|
424
|
+
},
|
425
|
+
},
|
426
|
+
'HTMLSpanElement': {
|
427
|
+
'inheritance': 'HTMLElement',
|
428
|
+
},
|
429
|
+
'HTMLBRElement': {
|
430
|
+
'inheritance': 'HTMLElement',
|
431
|
+
'props': {
|
432
|
+
'clear': {},
|
433
|
+
},
|
434
|
+
},
|
223
435
|
'HTMLHyperlinkElementUtils': {
|
224
436
|
'props': {
|
225
437
|
'href': {},
|
@@ -235,11 +447,27 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
235
447
|
'hash': {},
|
236
448
|
},
|
237
449
|
},
|
238
|
-
'HTMLModElement': {
|
239
|
-
|
450
|
+
'HTMLModElement': {
|
451
|
+
'inheritance': 'HTMLElement',
|
452
|
+
'props': {
|
453
|
+
'cite': {},
|
454
|
+
'dateTime': {},
|
455
|
+
},
|
456
|
+
},
|
457
|
+
'HTMLPictureElement': {
|
458
|
+
'inheritance': 'HTMLElement',
|
459
|
+
},
|
240
460
|
'HTMLSourceElement': {
|
241
461
|
'inheritance': 'HTMLElement',
|
242
|
-
'props': {
|
462
|
+
'props': {
|
463
|
+
'src': {},
|
464
|
+
'type': {},
|
465
|
+
'srcset': {},
|
466
|
+
'sizes': {},
|
467
|
+
'media': {},
|
468
|
+
'width': {},
|
469
|
+
'height': {},
|
470
|
+
},
|
243
471
|
},
|
244
472
|
'HTMLImageElement': {
|
245
473
|
'inheritance': 'HTMLElement',
|
@@ -294,7 +522,14 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
294
522
|
},
|
295
523
|
'HTMLEmbedElement': {
|
296
524
|
'inheritance': 'HTMLElement',
|
297
|
-
'props': {
|
525
|
+
'props': {
|
526
|
+
'src': {},
|
527
|
+
'type': {},
|
528
|
+
'width': {},
|
529
|
+
'height': {},
|
530
|
+
'align': {},
|
531
|
+
'name': {},
|
532
|
+
},
|
298
533
|
},
|
299
534
|
'HTMLObjectElement': {
|
300
535
|
'inheritance': 'HTMLElement',
|
@@ -325,12 +560,29 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
325
560
|
},
|
326
561
|
'HTMLVideoElement': {
|
327
562
|
'inheritance': 'HTMLMediaElement',
|
328
|
-
'props': {
|
563
|
+
'props': {
|
564
|
+
'width': {},
|
565
|
+
'height': {},
|
566
|
+
'videoWidth': {},
|
567
|
+
'videoHeight': {},
|
568
|
+
'poster': {},
|
569
|
+
'playsInline': {},
|
570
|
+
},
|
571
|
+
},
|
572
|
+
'HTMLAudioElement': {
|
573
|
+
'inheritance': 'HTMLMediaElement',
|
329
574
|
},
|
330
|
-
'HTMLAudioElement': {'inheritance': 'HTMLMediaElement'},
|
331
575
|
'HTMLTrackElement': {
|
332
576
|
'inheritance': 'HTMLElement',
|
333
|
-
'props': {
|
577
|
+
'props': {
|
578
|
+
'kind': {},
|
579
|
+
'src': {},
|
580
|
+
'srclang': {},
|
581
|
+
'label': {},
|
582
|
+
'default': {},
|
583
|
+
'readyState': {},
|
584
|
+
'track': {},
|
585
|
+
},
|
334
586
|
},
|
335
587
|
'HTMLMediaElement': {
|
336
588
|
'inheritance': 'HTMLElement',
|
@@ -365,17 +617,58 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
365
617
|
'textTracks': {},
|
366
618
|
},
|
367
619
|
},
|
368
|
-
'MediaError': {
|
369
|
-
|
370
|
-
|
371
|
-
|
620
|
+
'MediaError': {
|
621
|
+
'props': {
|
622
|
+
'code': {},
|
623
|
+
'message': {},
|
624
|
+
},
|
625
|
+
},
|
626
|
+
'AudioTrackList': {
|
627
|
+
'inheritance': 'EventTarget',
|
628
|
+
'props': {
|
629
|
+
'length': {},
|
630
|
+
'onchange': {},
|
631
|
+
'onaddtrack': {},
|
632
|
+
'onremovetrack': {},
|
633
|
+
},
|
634
|
+
},
|
635
|
+
'AudioTrack': {
|
636
|
+
'props': {
|
637
|
+
'id': {},
|
638
|
+
'kind': {},
|
639
|
+
'label': {},
|
640
|
+
'language': {},
|
641
|
+
'enabled': {},
|
642
|
+
},
|
643
|
+
},
|
372
644
|
'VideoTrackList': {
|
373
645
|
'inheritance': 'EventTarget',
|
374
|
-
'props': {
|
646
|
+
'props': {
|
647
|
+
'length': {},
|
648
|
+
'selectedIndex': {},
|
649
|
+
'onchange': {},
|
650
|
+
'onaddtrack': {},
|
651
|
+
'onremovetrack': {},
|
652
|
+
},
|
653
|
+
},
|
654
|
+
'VideoTrack': {
|
655
|
+
'props': {
|
656
|
+
'id': {},
|
657
|
+
'kind': {},
|
658
|
+
'label': {},
|
659
|
+
'language': {},
|
660
|
+
'selected': {},
|
661
|
+
},
|
662
|
+
},
|
663
|
+
'TextTrackList': {
|
664
|
+
'inheritance': 'EventTarget',
|
665
|
+
'props': {
|
666
|
+
'length': {},
|
667
|
+
'onchange': {},
|
668
|
+
'onaddtrack': {},
|
669
|
+
'onremovetrack': {},
|
670
|
+
},
|
375
671
|
},
|
376
|
-
'VideoTrack': {'props': {'id': {}, 'kind': {}, 'label': {}, 'language': {}, 'selected': {}}},
|
377
|
-
'TextTrackList':
|
378
|
-
{'inheritance': 'EventTarget', 'props': {'length': {}, 'onchange': {}, 'onaddtrack': {}, 'onremovetrack': {}}},
|
379
672
|
'TextTrack': {
|
380
673
|
'inheritance': 'EventTarget',
|
381
674
|
'props': {
|
@@ -390,25 +683,59 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
390
683
|
'oncuechange': {},
|
391
684
|
},
|
392
685
|
},
|
393
|
-
'TextTrackCueList': {
|
686
|
+
'TextTrackCueList': {
|
687
|
+
'props': {
|
688
|
+
'length': {},
|
689
|
+
},
|
690
|
+
},
|
394
691
|
'TextTrackCue': {
|
395
692
|
'inheritance': 'EventTarget',
|
396
|
-
'props': {
|
693
|
+
'props': {
|
694
|
+
'track': {},
|
695
|
+
'id': {},
|
696
|
+
'startTime': {},
|
697
|
+
'endTime': {},
|
698
|
+
'pauseOnExit': {},
|
699
|
+
'onenter': {},
|
700
|
+
'onexit': {},
|
701
|
+
},
|
397
702
|
},
|
398
|
-
'TimeRanges': {
|
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'],
|
703
|
+
'TimeRanges': {
|
405
704
|
'props': {
|
406
|
-
'
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
705
|
+
'length': {},
|
706
|
+
},
|
707
|
+
},
|
708
|
+
'TrackEvent': {
|
709
|
+
'inheritance': 'Event',
|
710
|
+
'props': {
|
711
|
+
'track': {},
|
712
|
+
},
|
713
|
+
},
|
714
|
+
'TrackEventInit': {
|
715
|
+
'inheritance': 'EventInit',
|
716
|
+
'props': {
|
717
|
+
'track': {},
|
718
|
+
},
|
719
|
+
},
|
720
|
+
'HTMLMapElement': {
|
721
|
+
'inheritance': 'HTMLElement',
|
722
|
+
'props': {
|
723
|
+
'name': {},
|
724
|
+
'areas': {},
|
725
|
+
},
|
726
|
+
},
|
727
|
+
'HTMLAreaElement': {
|
728
|
+
'inheritance': 'HTMLElement',
|
729
|
+
'includes': [
|
730
|
+
'HTMLHyperlinkElementUtils',
|
731
|
+
],
|
732
|
+
'props': {
|
733
|
+
'alt': {},
|
734
|
+
'coords': {},
|
735
|
+
'shape': {},
|
736
|
+
'target': {},
|
737
|
+
'download': {},
|
738
|
+
'ping': {},
|
412
739
|
'rel': {},
|
413
740
|
'relList': {},
|
414
741
|
'referrerPolicy': {},
|
@@ -434,13 +761,33 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
434
761
|
'cellSpacing': {},
|
435
762
|
},
|
436
763
|
},
|
437
|
-
'HTMLTableCaptionElement': {
|
764
|
+
'HTMLTableCaptionElement': {
|
765
|
+
'inheritance': 'HTMLElement',
|
766
|
+
'props': {
|
767
|
+
'align': {},
|
768
|
+
},
|
769
|
+
},
|
438
770
|
'HTMLTableColElement': {
|
439
771
|
'inheritance': 'HTMLElement',
|
440
|
-
'props': {
|
772
|
+
'props': {
|
773
|
+
'span': {},
|
774
|
+
'align': {},
|
775
|
+
'ch': {},
|
776
|
+
'chOff': {},
|
777
|
+
'vAlign': {},
|
778
|
+
'width': {},
|
779
|
+
},
|
780
|
+
},
|
781
|
+
'HTMLTableSectionElement': {
|
782
|
+
'inheritance': 'HTMLElement',
|
783
|
+
'props': {
|
784
|
+
'rows': {},
|
785
|
+
'align': {},
|
786
|
+
'ch': {},
|
787
|
+
'chOff': {},
|
788
|
+
'vAlign': {},
|
789
|
+
},
|
441
790
|
},
|
442
|
-
'HTMLTableSectionElement':
|
443
|
-
{'inheritance': 'HTMLElement', 'props': {'rows': {}, 'align': {}, 'ch': {}, 'chOff': {}, 'vAlign': {}}},
|
444
791
|
'HTMLTableRowElement': {
|
445
792
|
'inheritance': 'HTMLElement',
|
446
793
|
'props': {
|
@@ -492,241 +839,957 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
492
839
|
'length': {},
|
493
840
|
},
|
494
841
|
},
|
495
|
-
'HTMLLabelElement': {
|
842
|
+
'HTMLLabelElement': {
|
843
|
+
'inheritance': 'HTMLElement',
|
844
|
+
'props': {
|
845
|
+
'form': {},
|
846
|
+
'htmlFor': {},
|
847
|
+
'control': {},
|
848
|
+
},
|
849
|
+
},
|
496
850
|
'HTMLInputElement': {
|
497
851
|
'inheritance': 'HTMLElement',
|
498
852
|
'props': {
|
499
|
-
'accept': {
|
500
|
-
|
501
|
-
|
853
|
+
'accept': {
|
854
|
+
'rules': [
|
855
|
+
{
|
856
|
+
'when': 'type',
|
857
|
+
'is': 'file',
|
858
|
+
},
|
859
|
+
],
|
860
|
+
},
|
861
|
+
'alt': {
|
862
|
+
'rules': [
|
863
|
+
{
|
864
|
+
'when': 'type',
|
865
|
+
'is': 'image',
|
866
|
+
},
|
867
|
+
],
|
868
|
+
},
|
869
|
+
'autocomplete': {
|
870
|
+
'rules': [
|
871
|
+
{
|
872
|
+
'when': 'type',
|
873
|
+
'is': 'hidden',
|
874
|
+
},
|
875
|
+
{
|
876
|
+
'when': 'type',
|
877
|
+
'is': 'text',
|
878
|
+
},
|
879
|
+
{
|
880
|
+
'when': 'type',
|
881
|
+
'is': 'search',
|
882
|
+
},
|
883
|
+
{
|
884
|
+
'when': 'type',
|
885
|
+
'is': 'url',
|
886
|
+
},
|
887
|
+
{
|
888
|
+
'when': 'type',
|
889
|
+
'is': 'tel',
|
890
|
+
},
|
891
|
+
{
|
892
|
+
'when': 'type',
|
893
|
+
'is': 'email',
|
894
|
+
},
|
895
|
+
{
|
896
|
+
'when': 'type',
|
897
|
+
'is': 'password',
|
898
|
+
},
|
899
|
+
{
|
900
|
+
'when': 'type',
|
901
|
+
'is': 'date',
|
902
|
+
},
|
903
|
+
{
|
904
|
+
'when': 'type',
|
905
|
+
'is': 'month',
|
906
|
+
},
|
907
|
+
{
|
908
|
+
'when': 'type',
|
909
|
+
'is': 'week',
|
910
|
+
},
|
911
|
+
{
|
912
|
+
'when': 'type',
|
913
|
+
'is': 'time',
|
914
|
+
},
|
915
|
+
{
|
916
|
+
'when': 'type',
|
917
|
+
'is': 'datetime-local',
|
918
|
+
},
|
919
|
+
{
|
920
|
+
'when': 'type',
|
921
|
+
'is': 'number',
|
922
|
+
},
|
923
|
+
{
|
924
|
+
'when': 'type',
|
925
|
+
'is': 'range',
|
926
|
+
},
|
927
|
+
{
|
928
|
+
'when': 'type',
|
929
|
+
'is': 'color',
|
930
|
+
},
|
931
|
+
],
|
932
|
+
},
|
502
933
|
'defaultChecked': {},
|
503
|
-
'checked': {
|
504
|
-
|
934
|
+
'checked': {
|
935
|
+
'rules': [
|
936
|
+
{
|
937
|
+
'when': 'type',
|
938
|
+
'is': 'checkbox',
|
939
|
+
},
|
940
|
+
{
|
941
|
+
'when': 'type',
|
942
|
+
'is': 'radio',
|
943
|
+
},
|
944
|
+
],
|
945
|
+
},
|
946
|
+
'dirName': {
|
947
|
+
'rules': [
|
948
|
+
{
|
949
|
+
'when': 'type',
|
950
|
+
'is': 'text',
|
951
|
+
},
|
952
|
+
{
|
953
|
+
'when': 'type',
|
954
|
+
'is': 'search',
|
955
|
+
},
|
956
|
+
],
|
957
|
+
},
|
505
958
|
'disabled': {},
|
506
959
|
'form': {},
|
507
|
-
'files': {
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
960
|
+
'files': {
|
961
|
+
'rules': [
|
962
|
+
{
|
963
|
+
'when': 'type',
|
964
|
+
'is': 'file',
|
965
|
+
},
|
966
|
+
],
|
967
|
+
},
|
968
|
+
'formAction': {
|
969
|
+
'rules': [
|
970
|
+
{
|
971
|
+
'when': 'type',
|
972
|
+
'is': 'submit',
|
973
|
+
},
|
974
|
+
{
|
975
|
+
'when': 'type',
|
976
|
+
'is': 'image',
|
977
|
+
},
|
978
|
+
],
|
979
|
+
},
|
980
|
+
'formEnctype': {
|
981
|
+
'rules': [
|
982
|
+
{
|
983
|
+
'when': 'type',
|
984
|
+
'is': 'submit',
|
985
|
+
},
|
986
|
+
{
|
987
|
+
'when': 'type',
|
988
|
+
'is': 'image',
|
989
|
+
},
|
990
|
+
],
|
991
|
+
},
|
992
|
+
'formMethod': {
|
993
|
+
'rules': [
|
994
|
+
{
|
995
|
+
'when': 'type',
|
996
|
+
'is': 'submit',
|
997
|
+
},
|
998
|
+
{
|
999
|
+
'when': 'type',
|
1000
|
+
'is': 'image',
|
1001
|
+
},
|
1002
|
+
],
|
1003
|
+
},
|
1004
|
+
'formNoValidate': {
|
1005
|
+
'rules': [
|
1006
|
+
{
|
1007
|
+
'when': 'type',
|
1008
|
+
'is': 'submit',
|
1009
|
+
},
|
1010
|
+
{
|
1011
|
+
'when': 'type',
|
1012
|
+
'is': 'image',
|
1013
|
+
},
|
1014
|
+
],
|
1015
|
+
},
|
1016
|
+
'formTarget': {
|
1017
|
+
'rules': [
|
1018
|
+
{
|
1019
|
+
'when': 'type',
|
1020
|
+
'is': 'submit',
|
1021
|
+
},
|
1022
|
+
{
|
1023
|
+
'when': 'type',
|
1024
|
+
'is': 'image',
|
1025
|
+
},
|
1026
|
+
],
|
1027
|
+
},
|
1028
|
+
'height': {
|
1029
|
+
'rules': [
|
1030
|
+
{
|
1031
|
+
'when': 'type',
|
1032
|
+
'is': 'image',
|
1033
|
+
},
|
1034
|
+
],
|
1035
|
+
},
|
514
1036
|
'indeterminate': {},
|
515
|
-
'list': {
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
1037
|
+
'list': {
|
1038
|
+
'rules': [
|
1039
|
+
{
|
1040
|
+
'when': 'type',
|
1041
|
+
'is': 'text',
|
1042
|
+
},
|
1043
|
+
{
|
1044
|
+
'when': 'type',
|
1045
|
+
'is': 'search',
|
1046
|
+
},
|
1047
|
+
{
|
1048
|
+
'when': 'type',
|
1049
|
+
'is': 'url',
|
1050
|
+
},
|
1051
|
+
{
|
1052
|
+
'when': 'type',
|
1053
|
+
'is': 'tel',
|
1054
|
+
},
|
1055
|
+
{
|
1056
|
+
'when': 'type',
|
1057
|
+
'is': 'email',
|
1058
|
+
},
|
1059
|
+
{
|
1060
|
+
'when': 'type',
|
1061
|
+
'is': 'date',
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
'when': 'type',
|
1065
|
+
'is': 'month',
|
1066
|
+
},
|
1067
|
+
{
|
1068
|
+
'when': 'type',
|
1069
|
+
'is': 'week',
|
1070
|
+
},
|
1071
|
+
{
|
1072
|
+
'when': 'type',
|
1073
|
+
'is': 'time',
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
'when': 'type',
|
1077
|
+
'is': 'datetime-local',
|
1078
|
+
},
|
1079
|
+
{
|
1080
|
+
'when': 'type',
|
1081
|
+
'is': 'number',
|
1082
|
+
},
|
1083
|
+
{
|
1084
|
+
'when': 'type',
|
1085
|
+
'is': 'range',
|
1086
|
+
},
|
1087
|
+
{
|
1088
|
+
'when': 'type',
|
1089
|
+
'is': 'color',
|
1090
|
+
},
|
1091
|
+
],
|
1092
|
+
},
|
1093
|
+
'max': {
|
1094
|
+
'rules': [
|
1095
|
+
{
|
1096
|
+
'when': 'type',
|
1097
|
+
'is': 'date',
|
1098
|
+
},
|
1099
|
+
{
|
1100
|
+
'when': 'type',
|
1101
|
+
'is': 'month',
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
'when': 'type',
|
1105
|
+
'is': 'week',
|
1106
|
+
},
|
1107
|
+
{
|
1108
|
+
'when': 'type',
|
1109
|
+
'is': 'time',
|
1110
|
+
},
|
1111
|
+
{
|
1112
|
+
'when': 'type',
|
1113
|
+
'is': 'datetime-local',
|
1114
|
+
},
|
1115
|
+
{
|
1116
|
+
'when': 'type',
|
1117
|
+
'is': 'number',
|
1118
|
+
},
|
1119
|
+
{
|
1120
|
+
'when': 'type',
|
1121
|
+
'is': 'range',
|
1122
|
+
},
|
1123
|
+
],
|
1124
|
+
},
|
1125
|
+
'maxLength': {
|
1126
|
+
'rules': [
|
1127
|
+
{
|
1128
|
+
'when': 'type',
|
1129
|
+
'is': 'text',
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
'when': 'type',
|
1133
|
+
'is': 'search',
|
1134
|
+
},
|
1135
|
+
{
|
1136
|
+
'when': 'type',
|
1137
|
+
'is': 'url',
|
1138
|
+
},
|
1139
|
+
{
|
1140
|
+
'when': 'type',
|
1141
|
+
'is': 'tel',
|
1142
|
+
},
|
1143
|
+
{
|
1144
|
+
'when': 'type',
|
1145
|
+
'is': 'email',
|
1146
|
+
},
|
1147
|
+
{
|
1148
|
+
'when': 'type',
|
1149
|
+
'is': 'password',
|
1150
|
+
},
|
1151
|
+
],
|
1152
|
+
},
|
1153
|
+
'min': {
|
1154
|
+
'rules': [
|
1155
|
+
{
|
1156
|
+
'when': 'type',
|
1157
|
+
'is': 'date',
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
'when': 'type',
|
1161
|
+
'is': 'month',
|
1162
|
+
},
|
1163
|
+
{
|
1164
|
+
'when': 'type',
|
1165
|
+
'is': 'week',
|
1166
|
+
},
|
1167
|
+
{
|
1168
|
+
'when': 'type',
|
1169
|
+
'is': 'time',
|
1170
|
+
},
|
1171
|
+
{
|
1172
|
+
'when': 'type',
|
1173
|
+
'is': 'datetime-local',
|
1174
|
+
},
|
1175
|
+
{
|
1176
|
+
'when': 'type',
|
1177
|
+
'is': 'number',
|
1178
|
+
},
|
1179
|
+
{
|
1180
|
+
'when': 'type',
|
1181
|
+
'is': 'range',
|
1182
|
+
},
|
1183
|
+
],
|
1184
|
+
},
|
1185
|
+
'minLength': {
|
1186
|
+
'rules': [
|
1187
|
+
{
|
1188
|
+
'when': 'type',
|
1189
|
+
'is': 'text',
|
1190
|
+
},
|
1191
|
+
{
|
1192
|
+
'when': 'type',
|
1193
|
+
'is': 'search',
|
1194
|
+
},
|
1195
|
+
{
|
1196
|
+
'when': 'type',
|
1197
|
+
'is': 'url',
|
1198
|
+
},
|
1199
|
+
{
|
1200
|
+
'when': 'type',
|
1201
|
+
'is': 'tel',
|
1202
|
+
},
|
1203
|
+
{
|
1204
|
+
'when': 'type',
|
1205
|
+
'is': 'email',
|
1206
|
+
},
|
1207
|
+
{
|
1208
|
+
'when': 'type',
|
1209
|
+
'is': 'password',
|
1210
|
+
},
|
1211
|
+
],
|
1212
|
+
},
|
1213
|
+
'multiple': {
|
1214
|
+
'rules': [
|
1215
|
+
{
|
1216
|
+
'when': 'type',
|
1217
|
+
'is': 'email',
|
1218
|
+
},
|
1219
|
+
{
|
1220
|
+
'when': 'type',
|
1221
|
+
'is': 'file',
|
1222
|
+
},
|
1223
|
+
],
|
1224
|
+
},
|
521
1225
|
'name': {},
|
522
|
-
'pattern': {
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
1226
|
+
'pattern': {
|
1227
|
+
'rules': [
|
1228
|
+
{
|
1229
|
+
'when': 'type',
|
1230
|
+
'is': 'text',
|
1231
|
+
},
|
1232
|
+
{
|
1233
|
+
'when': 'type',
|
1234
|
+
'is': 'search',
|
1235
|
+
},
|
1236
|
+
{
|
1237
|
+
'when': 'type',
|
1238
|
+
'is': 'url',
|
1239
|
+
},
|
1240
|
+
{
|
1241
|
+
'when': 'type',
|
1242
|
+
'is': 'tel',
|
1243
|
+
},
|
1244
|
+
{
|
1245
|
+
'when': 'type',
|
1246
|
+
'is': 'email',
|
1247
|
+
},
|
1248
|
+
{
|
1249
|
+
'when': 'type',
|
1250
|
+
'is': 'password',
|
1251
|
+
},
|
1252
|
+
],
|
1253
|
+
},
|
1254
|
+
'placeholder': {
|
1255
|
+
'rules': [
|
1256
|
+
{
|
1257
|
+
'when': 'type',
|
1258
|
+
'is': 'text',
|
1259
|
+
},
|
1260
|
+
{
|
1261
|
+
'when': 'type',
|
1262
|
+
'is': 'search',
|
1263
|
+
},
|
1264
|
+
{
|
1265
|
+
'when': 'type',
|
1266
|
+
'is': 'url',
|
1267
|
+
},
|
1268
|
+
{
|
1269
|
+
'when': 'type',
|
1270
|
+
'is': 'tel',
|
1271
|
+
},
|
1272
|
+
{
|
1273
|
+
'when': 'type',
|
1274
|
+
'is': 'email',
|
1275
|
+
},
|
1276
|
+
{
|
1277
|
+
'when': 'type',
|
1278
|
+
'is': 'password',
|
1279
|
+
},
|
1280
|
+
{
|
1281
|
+
'when': 'type',
|
1282
|
+
'is': 'number',
|
1283
|
+
},
|
1284
|
+
],
|
1285
|
+
},
|
1286
|
+
'readOnly': {
|
1287
|
+
'rules': [
|
1288
|
+
{
|
1289
|
+
'when': 'type',
|
1290
|
+
'is': 'text',
|
1291
|
+
},
|
1292
|
+
{
|
1293
|
+
'when': 'type',
|
1294
|
+
'is': 'search',
|
1295
|
+
},
|
1296
|
+
{
|
1297
|
+
'when': 'type',
|
1298
|
+
'is': 'url',
|
1299
|
+
},
|
1300
|
+
{
|
1301
|
+
'when': 'type',
|
1302
|
+
'is': 'tel',
|
1303
|
+
},
|
1304
|
+
{
|
1305
|
+
'when': 'type',
|
1306
|
+
'is': 'email',
|
1307
|
+
},
|
1308
|
+
{
|
1309
|
+
'when': 'type',
|
1310
|
+
'is': 'password',
|
1311
|
+
},
|
1312
|
+
{
|
1313
|
+
'when': 'type',
|
1314
|
+
'is': 'date',
|
1315
|
+
},
|
1316
|
+
{
|
1317
|
+
'when': 'type',
|
1318
|
+
'is': 'month',
|
1319
|
+
},
|
1320
|
+
{
|
1321
|
+
'when': 'type',
|
1322
|
+
'is': 'week',
|
1323
|
+
},
|
1324
|
+
{
|
1325
|
+
'when': 'type',
|
1326
|
+
'is': 'time',
|
1327
|
+
},
|
1328
|
+
{
|
1329
|
+
'when': 'type',
|
1330
|
+
'is': 'datetime-local',
|
1331
|
+
},
|
1332
|
+
{
|
1333
|
+
'when': 'type',
|
1334
|
+
'is': 'number',
|
1335
|
+
},
|
1336
|
+
],
|
1337
|
+
},
|
1338
|
+
'required': {
|
1339
|
+
'rules': [
|
1340
|
+
{
|
1341
|
+
'when': 'type',
|
1342
|
+
'is': 'text',
|
1343
|
+
},
|
1344
|
+
{
|
1345
|
+
'when': 'type',
|
1346
|
+
'is': 'search',
|
1347
|
+
},
|
1348
|
+
{
|
1349
|
+
'when': 'type',
|
1350
|
+
'is': 'url',
|
1351
|
+
},
|
1352
|
+
{
|
1353
|
+
'when': 'type',
|
1354
|
+
'is': 'tel',
|
1355
|
+
},
|
1356
|
+
{
|
1357
|
+
'when': 'type',
|
1358
|
+
'is': 'email',
|
1359
|
+
},
|
1360
|
+
{
|
1361
|
+
'when': 'type',
|
1362
|
+
'is': 'password',
|
1363
|
+
},
|
1364
|
+
{
|
1365
|
+
'when': 'type',
|
1366
|
+
'is': 'date',
|
1367
|
+
},
|
1368
|
+
{
|
1369
|
+
'when': 'type',
|
1370
|
+
'is': 'month',
|
1371
|
+
},
|
1372
|
+
{
|
1373
|
+
'when': 'type',
|
1374
|
+
'is': 'week',
|
1375
|
+
},
|
1376
|
+
{
|
1377
|
+
'when': 'type',
|
1378
|
+
'is': 'time',
|
1379
|
+
},
|
1380
|
+
{
|
1381
|
+
'when': 'type',
|
1382
|
+
'is': 'datetime-local',
|
1383
|
+
},
|
1384
|
+
{
|
1385
|
+
'when': 'type',
|
1386
|
+
'is': 'number',
|
1387
|
+
},
|
1388
|
+
{
|
1389
|
+
'when': 'type',
|
1390
|
+
'is': 'checkbox',
|
1391
|
+
},
|
1392
|
+
{
|
1393
|
+
'when': 'type',
|
1394
|
+
'is': 'radio',
|
1395
|
+
},
|
1396
|
+
{
|
1397
|
+
'when': 'type',
|
1398
|
+
'is': 'file',
|
1399
|
+
},
|
1400
|
+
],
|
1401
|
+
},
|
1402
|
+
'size': {
|
1403
|
+
'rules': [
|
1404
|
+
{
|
1405
|
+
'when': 'type',
|
1406
|
+
'is': 'text',
|
1407
|
+
},
|
1408
|
+
{
|
1409
|
+
'when': 'type',
|
1410
|
+
'is': 'search',
|
1411
|
+
},
|
1412
|
+
{
|
1413
|
+
'when': 'type',
|
1414
|
+
'is': 'url',
|
1415
|
+
},
|
1416
|
+
{
|
1417
|
+
'when': 'type',
|
1418
|
+
'is': 'tel',
|
1419
|
+
},
|
1420
|
+
{
|
1421
|
+
'when': 'type',
|
1422
|
+
'is': 'email',
|
1423
|
+
},
|
1424
|
+
{
|
1425
|
+
'when': 'type',
|
1426
|
+
'is': 'password',
|
1427
|
+
},
|
1428
|
+
],
|
1429
|
+
},
|
1430
|
+
'src': {
|
1431
|
+
'rules': [
|
1432
|
+
{
|
1433
|
+
'when': 'type',
|
1434
|
+
'is': 'image',
|
1435
|
+
},
|
1436
|
+
],
|
1437
|
+
},
|
1438
|
+
'step': {
|
1439
|
+
'rules': [
|
1440
|
+
{
|
1441
|
+
'when': 'type',
|
1442
|
+
'is': 'date',
|
1443
|
+
},
|
1444
|
+
{
|
1445
|
+
'when': 'type',
|
1446
|
+
'is': 'month',
|
1447
|
+
},
|
1448
|
+
{
|
1449
|
+
'when': 'type',
|
1450
|
+
'is': 'week',
|
1451
|
+
},
|
1452
|
+
{
|
1453
|
+
'when': 'type',
|
1454
|
+
'is': 'time',
|
1455
|
+
},
|
1456
|
+
{
|
1457
|
+
'when': 'type',
|
1458
|
+
'is': 'datetime-local',
|
1459
|
+
},
|
1460
|
+
{
|
1461
|
+
'when': 'type',
|
1462
|
+
'is': 'number',
|
1463
|
+
},
|
1464
|
+
{
|
1465
|
+
'when': 'type',
|
1466
|
+
'is': 'range',
|
1467
|
+
},
|
1468
|
+
],
|
1469
|
+
},
|
529
1470
|
'type': {},
|
530
1471
|
'defaultValue': {},
|
531
|
-
'value': {
|
532
|
-
|
533
|
-
|
534
|
-
|
1472
|
+
'value': {
|
1473
|
+
'rules': [
|
1474
|
+
{
|
1475
|
+
'when': 'type',
|
1476
|
+
'is': 'hidden',
|
1477
|
+
},
|
1478
|
+
{
|
1479
|
+
'when': 'type',
|
1480
|
+
'is': 'text',
|
1481
|
+
},
|
1482
|
+
{
|
1483
|
+
'when': 'type',
|
1484
|
+
'is': 'search',
|
1485
|
+
},
|
1486
|
+
{
|
1487
|
+
'when': 'type',
|
1488
|
+
'is': 'url',
|
1489
|
+
},
|
1490
|
+
{
|
1491
|
+
'when': 'type',
|
1492
|
+
'is': 'tel',
|
1493
|
+
},
|
1494
|
+
{
|
1495
|
+
'when': 'type',
|
1496
|
+
'is': 'email',
|
1497
|
+
},
|
1498
|
+
{
|
1499
|
+
'when': 'type',
|
1500
|
+
'is': 'password',
|
1501
|
+
},
|
1502
|
+
{
|
1503
|
+
'when': 'type',
|
1504
|
+
'is': 'date',
|
1505
|
+
},
|
1506
|
+
{
|
1507
|
+
'when': 'type',
|
1508
|
+
'is': 'month',
|
1509
|
+
},
|
1510
|
+
{
|
1511
|
+
'when': 'type',
|
1512
|
+
'is': 'week',
|
1513
|
+
},
|
1514
|
+
{
|
1515
|
+
'when': 'type',
|
1516
|
+
'is': 'time',
|
1517
|
+
},
|
1518
|
+
{
|
1519
|
+
'when': 'type',
|
1520
|
+
'is': 'datetime-local',
|
1521
|
+
},
|
1522
|
+
{
|
1523
|
+
'when': 'type',
|
1524
|
+
'is': 'number',
|
1525
|
+
},
|
1526
|
+
{
|
1527
|
+
'when': 'type',
|
1528
|
+
'is': 'range',
|
1529
|
+
},
|
1530
|
+
{
|
1531
|
+
'when': 'type',
|
1532
|
+
'is': 'color',
|
1533
|
+
},
|
1534
|
+
{
|
1535
|
+
'when': 'type',
|
1536
|
+
'is': 'checkbox',
|
1537
|
+
},
|
1538
|
+
{
|
1539
|
+
'when': 'type',
|
1540
|
+
'is': 'radio',
|
1541
|
+
},
|
1542
|
+
{
|
1543
|
+
'when': 'type',
|
1544
|
+
'is': 'file',
|
1545
|
+
},
|
1546
|
+
{
|
1547
|
+
'when': 'type',
|
1548
|
+
'is': 'submit',
|
1549
|
+
},
|
1550
|
+
{
|
1551
|
+
'when': 'type',
|
1552
|
+
'is': 'image',
|
1553
|
+
},
|
1554
|
+
{
|
1555
|
+
'when': 'type',
|
1556
|
+
'is': 'reset',
|
1557
|
+
},
|
1558
|
+
{
|
1559
|
+
'when': 'type',
|
1560
|
+
'is': 'button',
|
1561
|
+
},
|
1562
|
+
],
|
1563
|
+
},
|
1564
|
+
'valueAsDate': {
|
1565
|
+
'rules': [
|
1566
|
+
{
|
1567
|
+
'when': 'type',
|
1568
|
+
'is': 'date',
|
1569
|
+
},
|
1570
|
+
{
|
1571
|
+
'when': 'type',
|
1572
|
+
'is': 'month',
|
1573
|
+
},
|
1574
|
+
{
|
1575
|
+
'when': 'type',
|
1576
|
+
'is': 'week',
|
1577
|
+
},
|
1578
|
+
{
|
1579
|
+
'when': 'type',
|
1580
|
+
'is': 'time',
|
1581
|
+
},
|
1582
|
+
],
|
1583
|
+
},
|
1584
|
+
'valueAsNumber': {
|
1585
|
+
'rules': [
|
1586
|
+
{
|
1587
|
+
'when': 'type',
|
1588
|
+
'is': 'date',
|
1589
|
+
},
|
1590
|
+
{
|
1591
|
+
'when': 'type',
|
1592
|
+
'is': 'month',
|
1593
|
+
},
|
1594
|
+
{
|
1595
|
+
'when': 'type',
|
1596
|
+
'is': 'week',
|
1597
|
+
},
|
1598
|
+
{
|
1599
|
+
'when': 'type',
|
1600
|
+
'is': 'time',
|
1601
|
+
},
|
1602
|
+
{
|
1603
|
+
'when': 'type',
|
1604
|
+
'is': 'datetime-local',
|
1605
|
+
},
|
1606
|
+
{
|
1607
|
+
'when': 'type',
|
1608
|
+
'is': 'number',
|
1609
|
+
},
|
1610
|
+
{
|
1611
|
+
'when': 'type',
|
1612
|
+
'is': 'range',
|
1613
|
+
},
|
1614
|
+
],
|
1615
|
+
},
|
1616
|
+
'width': {
|
1617
|
+
'rules': [
|
1618
|
+
{
|
1619
|
+
'when': 'type',
|
1620
|
+
'is': 'image',
|
1621
|
+
},
|
1622
|
+
],
|
1623
|
+
},
|
535
1624
|
'willValidate': {},
|
536
1625
|
'validity': {},
|
537
1626
|
'validationMessage': {},
|
538
1627
|
'labels': {},
|
539
|
-
'selectionStart': {
|
540
|
-
|
541
|
-
|
1628
|
+
'selectionStart': {
|
1629
|
+
'rules': [
|
1630
|
+
{
|
1631
|
+
'when': 'type',
|
1632
|
+
'is': 'text',
|
1633
|
+
},
|
1634
|
+
{
|
1635
|
+
'when': 'type',
|
1636
|
+
'is': 'search',
|
1637
|
+
},
|
1638
|
+
{
|
1639
|
+
'when': 'type',
|
1640
|
+
'is': 'url',
|
1641
|
+
},
|
1642
|
+
{
|
1643
|
+
'when': 'type',
|
1644
|
+
'is': 'tel',
|
1645
|
+
},
|
1646
|
+
{
|
1647
|
+
'when': 'type',
|
1648
|
+
'is': 'password',
|
1649
|
+
},
|
1650
|
+
],
|
1651
|
+
},
|
1652
|
+
'selectionEnd': {
|
1653
|
+
'rules': [
|
1654
|
+
{
|
1655
|
+
'when': 'type',
|
1656
|
+
'is': 'text',
|
1657
|
+
},
|
1658
|
+
{
|
1659
|
+
'when': 'type',
|
1660
|
+
'is': 'search',
|
1661
|
+
},
|
1662
|
+
{
|
1663
|
+
'when': 'type',
|
1664
|
+
'is': 'url',
|
1665
|
+
},
|
1666
|
+
{
|
1667
|
+
'when': 'type',
|
1668
|
+
'is': 'tel',
|
1669
|
+
},
|
1670
|
+
{
|
1671
|
+
'when': 'type',
|
1672
|
+
'is': 'password',
|
1673
|
+
},
|
1674
|
+
],
|
1675
|
+
},
|
1676
|
+
'selectionDirection': {
|
1677
|
+
'rules': [
|
1678
|
+
{
|
1679
|
+
'when': 'type',
|
1680
|
+
'is': 'text',
|
1681
|
+
},
|
1682
|
+
{
|
1683
|
+
'when': 'type',
|
1684
|
+
'is': 'search',
|
1685
|
+
},
|
1686
|
+
{
|
1687
|
+
'when': 'type',
|
1688
|
+
'is': 'url',
|
1689
|
+
},
|
1690
|
+
{
|
1691
|
+
'when': 'type',
|
1692
|
+
'is': 'tel',
|
1693
|
+
},
|
1694
|
+
{
|
1695
|
+
'when': 'type',
|
1696
|
+
'is': 'password',
|
1697
|
+
},
|
1698
|
+
],
|
1699
|
+
},
|
542
1700
|
'align': {},
|
543
1701
|
'useMap': {},
|
544
1702
|
},
|
545
|
-
'
|
546
|
-
|
547
|
-
|
548
|
-
'
|
549
|
-
|
550
|
-
|
551
|
-
'
|
552
|
-
'
|
553
|
-
|
554
|
-
|
555
|
-
'
|
556
|
-
'
|
557
|
-
|
558
|
-
|
559
|
-
'
|
560
|
-
'
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
'
|
565
|
-
|
566
|
-
|
567
|
-
'
|
568
|
-
'
|
569
|
-
|
570
|
-
|
571
|
-
'
|
572
|
-
'
|
573
|
-
|
574
|
-
|
575
|
-
'
|
576
|
-
'
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
'
|
581
|
-
|
582
|
-
|
583
|
-
'
|
584
|
-
'
|
585
|
-
|
586
|
-
|
587
|
-
'
|
588
|
-
'
|
589
|
-
|
590
|
-
|
591
|
-
'
|
592
|
-
'
|
593
|
-
},
|
594
|
-
|
595
|
-
'
|
596
|
-
'
|
597
|
-
|
598
|
-
|
599
|
-
'
|
600
|
-
'
|
601
|
-
|
602
|
-
|
603
|
-
'
|
604
|
-
'
|
605
|
-
|
606
|
-
|
607
|
-
'
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
'
|
612
|
-
'
|
613
|
-
|
614
|
-
|
615
|
-
'
|
616
|
-
'
|
617
|
-
|
618
|
-
|
619
|
-
'
|
620
|
-
'
|
621
|
-
},
|
622
|
-
|
623
|
-
'
|
624
|
-
'
|
625
|
-
|
626
|
-
|
627
|
-
'
|
628
|
-
'
|
629
|
-
|
630
|
-
|
631
|
-
'
|
632
|
-
'
|
633
|
-
|
634
|
-
|
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
|
-
},
|
1703
|
+
'rules': [
|
1704
|
+
{
|
1705
|
+
'when': 'type',
|
1706
|
+
'is': 'hidden',
|
1707
|
+
},
|
1708
|
+
{
|
1709
|
+
'when': 'type',
|
1710
|
+
'is': 'text',
|
1711
|
+
},
|
1712
|
+
{
|
1713
|
+
'when': 'type',
|
1714
|
+
'is': 'search',
|
1715
|
+
},
|
1716
|
+
{
|
1717
|
+
'when': 'type',
|
1718
|
+
'is': 'url',
|
1719
|
+
},
|
1720
|
+
{
|
1721
|
+
'when': 'type',
|
1722
|
+
'is': 'tel',
|
1723
|
+
},
|
1724
|
+
{
|
1725
|
+
'when': 'type',
|
1726
|
+
'is': 'email',
|
1727
|
+
},
|
1728
|
+
{
|
1729
|
+
'when': 'type',
|
1730
|
+
'is': 'password',
|
1731
|
+
},
|
1732
|
+
{
|
1733
|
+
'when': 'type',
|
1734
|
+
'is': 'date',
|
1735
|
+
},
|
1736
|
+
{
|
1737
|
+
'when': 'type',
|
1738
|
+
'is': 'month',
|
1739
|
+
},
|
1740
|
+
{
|
1741
|
+
'when': 'type',
|
1742
|
+
'is': 'week',
|
1743
|
+
},
|
1744
|
+
{
|
1745
|
+
'when': 'type',
|
1746
|
+
'is': 'time',
|
1747
|
+
},
|
1748
|
+
{
|
1749
|
+
'when': 'type',
|
1750
|
+
'is': 'datetime-local',
|
1751
|
+
},
|
1752
|
+
{
|
1753
|
+
'when': 'type',
|
1754
|
+
'is': 'number',
|
1755
|
+
},
|
1756
|
+
{
|
1757
|
+
'when': 'type',
|
1758
|
+
'is': 'range',
|
1759
|
+
},
|
1760
|
+
{
|
1761
|
+
'when': 'type',
|
1762
|
+
'is': 'color',
|
1763
|
+
},
|
1764
|
+
{
|
1765
|
+
'when': 'type',
|
1766
|
+
'is': 'checkbox',
|
1767
|
+
},
|
1768
|
+
{
|
1769
|
+
'when': 'type',
|
1770
|
+
'is': 'radio',
|
1771
|
+
},
|
1772
|
+
{
|
1773
|
+
'when': 'type',
|
1774
|
+
'is': 'file',
|
1775
|
+
},
|
1776
|
+
{
|
1777
|
+
'when': 'type',
|
1778
|
+
'is': 'submit',
|
1779
|
+
},
|
1780
|
+
{
|
1781
|
+
'when': 'type',
|
1782
|
+
'is': 'image',
|
1783
|
+
},
|
1784
|
+
{
|
1785
|
+
'when': 'type',
|
1786
|
+
'is': 'reset',
|
1787
|
+
},
|
1788
|
+
{
|
1789
|
+
'when': 'type',
|
1790
|
+
'is': 'button',
|
1791
|
+
},
|
1792
|
+
],
|
730
1793
|
},
|
731
1794
|
'HTMLButtonElement': {
|
732
1795
|
'inheritance': 'HTMLElement',
|
@@ -769,8 +1832,19 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
769
1832
|
'labels': {},
|
770
1833
|
},
|
771
1834
|
},
|
772
|
-
'HTMLDataListElement': {
|
773
|
-
|
1835
|
+
'HTMLDataListElement': {
|
1836
|
+
'inheritance': 'HTMLElement',
|
1837
|
+
'props': {
|
1838
|
+
'options': {},
|
1839
|
+
},
|
1840
|
+
},
|
1841
|
+
'HTMLOptGroupElement': {
|
1842
|
+
'inheritance': 'HTMLElement',
|
1843
|
+
'props': {
|
1844
|
+
'disabled': {},
|
1845
|
+
'label': {},
|
1846
|
+
},
|
1847
|
+
},
|
774
1848
|
'HTMLOptionElement': {
|
775
1849
|
'inheritance': 'HTMLElement',
|
776
1850
|
'props': {
|
@@ -828,11 +1902,26 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
828
1902
|
'labels': {},
|
829
1903
|
},
|
830
1904
|
},
|
831
|
-
'HTMLProgressElement':
|
832
|
-
|
1905
|
+
'HTMLProgressElement': {
|
1906
|
+
'inheritance': 'HTMLElement',
|
1907
|
+
'props': {
|
1908
|
+
'value': {},
|
1909
|
+
'max': {},
|
1910
|
+
'position': {},
|
1911
|
+
'labels': {},
|
1912
|
+
},
|
1913
|
+
},
|
833
1914
|
'HTMLMeterElement': {
|
834
1915
|
'inheritance': 'HTMLElement',
|
835
|
-
'props': {
|
1916
|
+
'props': {
|
1917
|
+
'value': {},
|
1918
|
+
'min': {},
|
1919
|
+
'max': {},
|
1920
|
+
'low': {},
|
1921
|
+
'high': {},
|
1922
|
+
'optimum': {},
|
1923
|
+
'labels': {},
|
1924
|
+
},
|
836
1925
|
},
|
837
1926
|
'HTMLFieldSetElement': {
|
838
1927
|
'inheritance': 'HTMLElement',
|
@@ -847,7 +1936,13 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
847
1936
|
'validationMessage': {},
|
848
1937
|
},
|
849
1938
|
},
|
850
|
-
'HTMLLegendElement': {
|
1939
|
+
'HTMLLegendElement': {
|
1940
|
+
'inheritance': 'HTMLElement',
|
1941
|
+
'props': {
|
1942
|
+
'form': {},
|
1943
|
+
'align': {},
|
1944
|
+
},
|
1945
|
+
},
|
851
1946
|
'ValidityState': {
|
852
1947
|
'props': {
|
853
1948
|
'valueMissing': {},
|
@@ -863,12 +1958,43 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
863
1958
|
'valid': {},
|
864
1959
|
},
|
865
1960
|
},
|
866
|
-
'SubmitEvent': {
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
1961
|
+
'SubmitEvent': {
|
1962
|
+
'inheritance': 'Event',
|
1963
|
+
'props': {
|
1964
|
+
'submitter': {},
|
1965
|
+
},
|
1966
|
+
},
|
1967
|
+
'SubmitEventInit': {
|
1968
|
+
'inheritance': 'EventInit',
|
1969
|
+
'props': {
|
1970
|
+
'submitter': {},
|
1971
|
+
},
|
1972
|
+
},
|
1973
|
+
'FormDataEvent': {
|
1974
|
+
'inheritance': 'Event',
|
1975
|
+
'props': {
|
1976
|
+
'formData': {},
|
1977
|
+
},
|
1978
|
+
},
|
1979
|
+
'FormDataEventInit': {
|
1980
|
+
'inheritance': 'EventInit',
|
1981
|
+
'props': {
|
1982
|
+
'formData': {},
|
1983
|
+
},
|
1984
|
+
},
|
1985
|
+
'HTMLDetailsElement': {
|
1986
|
+
'inheritance': 'HTMLElement',
|
1987
|
+
'props': {
|
1988
|
+
'open': {},
|
1989
|
+
},
|
1990
|
+
},
|
1991
|
+
'HTMLDialogElement': {
|
1992
|
+
'inheritance': 'HTMLElement',
|
1993
|
+
'props': {
|
1994
|
+
'open': {},
|
1995
|
+
'returnValue': {},
|
1996
|
+
},
|
1997
|
+
},
|
872
1998
|
'HTMLScriptElement': {
|
873
1999
|
'inheritance': 'HTMLElement',
|
874
2000
|
'props': {
|
@@ -887,12 +2013,38 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
887
2013
|
'htmlFor': {},
|
888
2014
|
},
|
889
2015
|
},
|
890
|
-
'HTMLTemplateElement': {
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
2016
|
+
'HTMLTemplateElement': {
|
2017
|
+
'inheritance': 'HTMLElement',
|
2018
|
+
'props': {
|
2019
|
+
'content': {},
|
2020
|
+
},
|
2021
|
+
},
|
2022
|
+
'HTMLSlotElement': {
|
2023
|
+
'inheritance': 'HTMLElement',
|
2024
|
+
'props': {
|
2025
|
+
'name': {},
|
2026
|
+
},
|
2027
|
+
},
|
2028
|
+
'AssignedNodesOptions': {
|
2029
|
+
'props': {
|
2030
|
+
'flatten': {},
|
2031
|
+
},
|
2032
|
+
},
|
2033
|
+
'HTMLCanvasElement': {
|
2034
|
+
'inheritance': 'HTMLElement',
|
2035
|
+
'props': {
|
2036
|
+
'width': {},
|
2037
|
+
'height': {},
|
2038
|
+
},
|
2039
|
+
},
|
2040
|
+
'CanvasRenderingContext2DSettings': {
|
2041
|
+
'props': {
|
2042
|
+
'alpha': {},
|
2043
|
+
'desynchronized': {},
|
2044
|
+
'colorSpace': {},
|
2045
|
+
'willReadFrequently': {},
|
2046
|
+
},
|
2047
|
+
},
|
896
2048
|
'CanvasRenderingContext2D': {
|
897
2049
|
'includes': [
|
898
2050
|
'CanvasState',
|
@@ -912,15 +2064,50 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
912
2064
|
'CanvasTextDrawingStyles',
|
913
2065
|
'CanvasPath',
|
914
2066
|
],
|
915
|
-
'props': {
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
'
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
2067
|
+
'props': {
|
2068
|
+
'canvas': {},
|
2069
|
+
},
|
2070
|
+
},
|
2071
|
+
'CanvasCompositing': {
|
2072
|
+
'props': {
|
2073
|
+
'globalAlpha': {},
|
2074
|
+
'globalCompositeOperation': {},
|
2075
|
+
},
|
2076
|
+
},
|
2077
|
+
'CanvasImageSmoothing': {
|
2078
|
+
'props': {
|
2079
|
+
'imageSmoothingEnabled': {},
|
2080
|
+
'imageSmoothingQuality': {},
|
2081
|
+
},
|
2082
|
+
},
|
2083
|
+
'CanvasFillStrokeStyles': {
|
2084
|
+
'props': {
|
2085
|
+
'strokeStyle': {},
|
2086
|
+
'fillStyle': {},
|
2087
|
+
},
|
2088
|
+
},
|
2089
|
+
'CanvasShadowStyles': {
|
2090
|
+
'props': {
|
2091
|
+
'shadowOffsetX': {},
|
2092
|
+
'shadowOffsetY': {},
|
2093
|
+
'shadowBlur': {},
|
2094
|
+
'shadowColor': {},
|
2095
|
+
},
|
2096
|
+
},
|
2097
|
+
'CanvasFilters': {
|
2098
|
+
'props': {
|
2099
|
+
'filter': {},
|
2100
|
+
},
|
2101
|
+
},
|
2102
|
+
'CanvasPathDrawingStyles': {
|
2103
|
+
'props': {
|
2104
|
+
'lineWidth': {},
|
2105
|
+
'lineCap': {},
|
2106
|
+
'lineJoin': {},
|
2107
|
+
'miterLimit': {},
|
2108
|
+
'lineDashOffset': {},
|
2109
|
+
},
|
2110
|
+
},
|
924
2111
|
'CanvasTextDrawingStyles': {
|
925
2112
|
'props': {
|
926
2113
|
'font': {},
|
@@ -951,42 +2138,90 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
951
2138
|
'ideographicBaseline': {},
|
952
2139
|
},
|
953
2140
|
},
|
954
|
-
'ImageDataSettings': {
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
'ImageBitmapRenderingContextSettings': {'props': {'alpha': {}}},
|
959
|
-
'ImageEncodeOptions': {'props': {'type': {}, 'quality': {}}},
|
960
|
-
'OffscreenCanvas': {
|
961
|
-
'inheritance': 'EventTarget',
|
962
|
-
'props': {'width': {}, 'height': {}, 'oncontextlost': {}, 'oncontextrestored': {}},
|
2141
|
+
'ImageDataSettings': {
|
2142
|
+
'props': {
|
2143
|
+
'colorSpace': {},
|
2144
|
+
},
|
963
2145
|
},
|
964
|
-
'
|
2146
|
+
'ImageData': {
|
2147
|
+
'props': {
|
2148
|
+
'width': {},
|
2149
|
+
'height': {},
|
2150
|
+
'data': {},
|
2151
|
+
'colorSpace': {},
|
2152
|
+
},
|
2153
|
+
},
|
2154
|
+
'Path2D': {
|
965
2155
|
'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
2156
|
'CanvasPath',
|
981
2157
|
],
|
982
|
-
'props': {'canvas': {}},
|
983
|
-
},
|
984
|
-
'ElementDefinitionOptions': {'props': {'extends': {}}},
|
985
|
-
'ElementInternals': {
|
986
|
-
'includes': ['ARIAMixin'],
|
987
|
-
'props': {'shadowRoot': {}, 'form': {}, 'willValidate': {}, 'validity': {}, 'validationMessage': {}, 'labels': {}},
|
988
2158
|
},
|
989
|
-
'
|
2159
|
+
'ImageBitmapRenderingContext': {
|
2160
|
+
'props': {
|
2161
|
+
'canvas': {},
|
2162
|
+
},
|
2163
|
+
},
|
2164
|
+
'ImageBitmapRenderingContextSettings': {
|
2165
|
+
'props': {
|
2166
|
+
'alpha': {},
|
2167
|
+
},
|
2168
|
+
},
|
2169
|
+
'ImageEncodeOptions': {
|
2170
|
+
'props': {
|
2171
|
+
'type': {},
|
2172
|
+
'quality': {},
|
2173
|
+
},
|
2174
|
+
},
|
2175
|
+
'OffscreenCanvas': {
|
2176
|
+
'inheritance': 'EventTarget',
|
2177
|
+
'props': {
|
2178
|
+
'width': {},
|
2179
|
+
'height': {},
|
2180
|
+
'oncontextlost': {},
|
2181
|
+
'oncontextrestored': {},
|
2182
|
+
},
|
2183
|
+
},
|
2184
|
+
'OffscreenCanvasRenderingContext2D': {
|
2185
|
+
'includes': [
|
2186
|
+
'CanvasState',
|
2187
|
+
'CanvasTransform',
|
2188
|
+
'CanvasCompositing',
|
2189
|
+
'CanvasImageSmoothing',
|
2190
|
+
'CanvasFillStrokeStyles',
|
2191
|
+
'CanvasShadowStyles',
|
2192
|
+
'CanvasFilters',
|
2193
|
+
'CanvasRect',
|
2194
|
+
'CanvasDrawPath',
|
2195
|
+
'CanvasText',
|
2196
|
+
'CanvasDrawImage',
|
2197
|
+
'CanvasImageData',
|
2198
|
+
'CanvasPathDrawingStyles',
|
2199
|
+
'CanvasTextDrawingStyles',
|
2200
|
+
'CanvasPath',
|
2201
|
+
],
|
2202
|
+
'props': {
|
2203
|
+
'canvas': {},
|
2204
|
+
},
|
2205
|
+
},
|
2206
|
+
'ElementDefinitionOptions': {
|
2207
|
+
'props': {
|
2208
|
+
'extends': {},
|
2209
|
+
},
|
2210
|
+
},
|
2211
|
+
'ElementInternals': {
|
2212
|
+
'includes': [
|
2213
|
+
'ARIAMixin',
|
2214
|
+
],
|
2215
|
+
'props': {
|
2216
|
+
'shadowRoot': {},
|
2217
|
+
'form': {},
|
2218
|
+
'willValidate': {},
|
2219
|
+
'validity': {},
|
2220
|
+
'validationMessage': {},
|
2221
|
+
'labels': {},
|
2222
|
+
},
|
2223
|
+
},
|
2224
|
+
'ValidityStateFlags': {
|
990
2225
|
'props': {
|
991
2226
|
'valueMissing': {},
|
992
2227
|
'typeMismatch': {},
|
@@ -1000,14 +2235,51 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1000
2235
|
'customError': {},
|
1001
2236
|
},
|
1002
2237
|
},
|
1003
|
-
'FocusOptions': {
|
1004
|
-
|
1005
|
-
|
1006
|
-
|
1007
|
-
|
1008
|
-
'
|
1009
|
-
|
1010
|
-
|
2238
|
+
'FocusOptions': {
|
2239
|
+
'props': {
|
2240
|
+
'preventScroll': {},
|
2241
|
+
},
|
2242
|
+
},
|
2243
|
+
'ElementContentEditable': {
|
2244
|
+
'props': {
|
2245
|
+
'contentEditable': {},
|
2246
|
+
'enterKeyHint': {},
|
2247
|
+
'isContentEditable': {},
|
2248
|
+
'inputMode': {},
|
2249
|
+
},
|
2250
|
+
},
|
2251
|
+
'DataTransfer': {
|
2252
|
+
'props': {
|
2253
|
+
'dropEffect': {},
|
2254
|
+
'effectAllowed': {},
|
2255
|
+
'items': {},
|
2256
|
+
'types': {},
|
2257
|
+
'files': {},
|
2258
|
+
},
|
2259
|
+
},
|
2260
|
+
'DataTransferItemList': {
|
2261
|
+
'props': {
|
2262
|
+
'length': {},
|
2263
|
+
},
|
2264
|
+
},
|
2265
|
+
'DataTransferItem': {
|
2266
|
+
'props': {
|
2267
|
+
'kind': {},
|
2268
|
+
'type': {},
|
2269
|
+
},
|
2270
|
+
},
|
2271
|
+
'DragEvent': {
|
2272
|
+
'inheritance': 'MouseEvent',
|
2273
|
+
'props': {
|
2274
|
+
'dataTransfer': {},
|
2275
|
+
},
|
2276
|
+
},
|
2277
|
+
'DragEventInit': {
|
2278
|
+
'inheritance': 'MouseEventInit',
|
2279
|
+
'props': {
|
2280
|
+
'dataTransfer': {},
|
2281
|
+
},
|
2282
|
+
},
|
1011
2283
|
'Window': {
|
1012
2284
|
'inheritance': 'EventTarget',
|
1013
2285
|
'includes': [
|
@@ -1044,12 +2316,29 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1044
2316
|
'clientInformation': {},
|
1045
2317
|
'originAgentCluster': {},
|
1046
2318
|
'external': {},
|
1047
|
-
'event': {
|
2319
|
+
'event': {
|
2320
|
+
'specs': 2,
|
2321
|
+
},
|
2322
|
+
},
|
2323
|
+
},
|
2324
|
+
'WindowPostMessageOptions': {
|
2325
|
+
'inheritance': 'StructuredSerializeOptions',
|
2326
|
+
'props': {
|
2327
|
+
'targetOrigin': {},
|
2328
|
+
},
|
2329
|
+
},
|
2330
|
+
'BarProp': {
|
2331
|
+
'props': {
|
2332
|
+
'visible': {},
|
2333
|
+
},
|
2334
|
+
},
|
2335
|
+
'History': {
|
2336
|
+
'props': {
|
2337
|
+
'length': {},
|
2338
|
+
'scrollRestoration': {},
|
2339
|
+
'state': {},
|
1048
2340
|
},
|
1049
2341
|
},
|
1050
|
-
'WindowPostMessageOptions': {'inheritance': 'StructuredSerializeOptions', 'props': {'targetOrigin': {}}},
|
1051
|
-
'BarProp': {'props': {'visible': {}}},
|
1052
|
-
'History': {'props': {'length': {}, 'scrollRestoration': {}, 'state': {}}},
|
1053
2342
|
'Location': {
|
1054
2343
|
'props': {
|
1055
2344
|
'href': {},
|
@@ -1064,19 +2353,84 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1064
2353
|
'ancestorOrigins': {},
|
1065
2354
|
},
|
1066
2355
|
},
|
1067
|
-
'PopStateEvent': {
|
1068
|
-
|
1069
|
-
|
1070
|
-
|
1071
|
-
|
1072
|
-
|
1073
|
-
'
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
'
|
2356
|
+
'PopStateEvent': {
|
2357
|
+
'inheritance': 'Event',
|
2358
|
+
'props': {
|
2359
|
+
'state': {},
|
2360
|
+
},
|
2361
|
+
},
|
2362
|
+
'PopStateEventInit': {
|
2363
|
+
'inheritance': 'EventInit',
|
2364
|
+
'props': {
|
2365
|
+
'state': {},
|
2366
|
+
},
|
2367
|
+
},
|
2368
|
+
'HashChangeEvent': {
|
2369
|
+
'inheritance': 'Event',
|
2370
|
+
'props': {
|
2371
|
+
'oldURL': {},
|
2372
|
+
'newURL': {},
|
2373
|
+
},
|
2374
|
+
},
|
2375
|
+
'HashChangeEventInit': {
|
2376
|
+
'inheritance': 'EventInit',
|
2377
|
+
'props': {
|
2378
|
+
'oldURL': {},
|
2379
|
+
'newURL': {},
|
2380
|
+
},
|
2381
|
+
},
|
2382
|
+
'PageTransitionEvent': {
|
2383
|
+
'inheritance': 'Event',
|
2384
|
+
'props': {
|
2385
|
+
'persisted': {},
|
2386
|
+
},
|
2387
|
+
},
|
2388
|
+
'PageTransitionEventInit': {
|
2389
|
+
'inheritance': 'EventInit',
|
2390
|
+
'props': {
|
2391
|
+
'persisted': {},
|
2392
|
+
},
|
2393
|
+
},
|
2394
|
+
'BeforeUnloadEvent': {
|
2395
|
+
'inheritance': 'Event',
|
2396
|
+
'props': {
|
2397
|
+
'returnValue': {},
|
2398
|
+
},
|
2399
|
+
},
|
2400
|
+
'ErrorEvent': {
|
2401
|
+
'inheritance': 'Event',
|
2402
|
+
'props': {
|
2403
|
+
'message': {},
|
2404
|
+
'filename': {},
|
2405
|
+
'lineno': {},
|
2406
|
+
'colno': {},
|
2407
|
+
'error': {},
|
2408
|
+
},
|
2409
|
+
},
|
2410
|
+
'ErrorEventInit': {
|
2411
|
+
'inheritance': 'EventInit',
|
2412
|
+
'props': {
|
2413
|
+
'message': {},
|
2414
|
+
'filename': {},
|
2415
|
+
'lineno': {},
|
2416
|
+
'colno': {},
|
2417
|
+
'error': {},
|
2418
|
+
},
|
2419
|
+
},
|
2420
|
+
'PromiseRejectionEvent': {
|
2421
|
+
'inheritance': 'Event',
|
2422
|
+
'props': {
|
2423
|
+
'promise': {},
|
2424
|
+
'reason': {},
|
2425
|
+
},
|
2426
|
+
},
|
2427
|
+
'PromiseRejectionEventInit': {
|
2428
|
+
'inheritance': 'EventInit',
|
2429
|
+
'props': {
|
2430
|
+
'promise': {},
|
2431
|
+
'reason': {},
|
2432
|
+
},
|
2433
|
+
},
|
1080
2434
|
'GlobalEventHandlers': {
|
1081
2435
|
'props': {
|
1082
2436
|
'onabort': {},
|
@@ -1148,17 +2502,39 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1148
2502
|
'onwebkitanimationstart': {},
|
1149
2503
|
'onwebkittransitionend': {},
|
1150
2504
|
'onwheel': {},
|
1151
|
-
'ongotpointercapture': {
|
1152
|
-
|
1153
|
-
|
1154
|
-
'
|
1155
|
-
|
1156
|
-
|
1157
|
-
'
|
1158
|
-
|
1159
|
-
|
1160
|
-
'
|
1161
|
-
|
2505
|
+
'ongotpointercapture': {
|
2506
|
+
'specs': 8,
|
2507
|
+
},
|
2508
|
+
'onlostpointercapture': {
|
2509
|
+
'specs': 8,
|
2510
|
+
},
|
2511
|
+
'onpointerdown': {
|
2512
|
+
'specs': 8,
|
2513
|
+
},
|
2514
|
+
'onpointermove': {
|
2515
|
+
'specs': 8,
|
2516
|
+
},
|
2517
|
+
'onpointerrawupdate': {
|
2518
|
+
'specs': 8,
|
2519
|
+
},
|
2520
|
+
'onpointerup': {
|
2521
|
+
'specs': 8,
|
2522
|
+
},
|
2523
|
+
'onpointercancel': {
|
2524
|
+
'specs': 8,
|
2525
|
+
},
|
2526
|
+
'onpointerover': {
|
2527
|
+
'specs': 8,
|
2528
|
+
},
|
2529
|
+
'onpointerout': {
|
2530
|
+
'specs': 8,
|
2531
|
+
},
|
2532
|
+
'onpointerenter': {
|
2533
|
+
'specs': 8,
|
2534
|
+
},
|
2535
|
+
'onpointerleave': {
|
2536
|
+
'specs': 8,
|
2537
|
+
},
|
1162
2538
|
},
|
1163
2539
|
},
|
1164
2540
|
'WindowEventHandlers': {
|
@@ -1181,11 +2557,25 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1181
2557
|
'onunload': {},
|
1182
2558
|
},
|
1183
2559
|
},
|
1184
|
-
'DocumentAndElementEventHandlers': {
|
1185
|
-
|
2560
|
+
'DocumentAndElementEventHandlers': {
|
2561
|
+
'props': {
|
2562
|
+
'oncopy': {},
|
2563
|
+
'oncut': {},
|
2564
|
+
'onpaste': {},
|
2565
|
+
},
|
2566
|
+
},
|
2567
|
+
'WindowOrWorkerGlobalScope': {
|
2568
|
+
'props': {
|
2569
|
+
'origin': {},
|
2570
|
+
'isSecureContext': {},
|
2571
|
+
'crossOriginIsolated': {},
|
2572
|
+
},
|
2573
|
+
},
|
1186
2574
|
'WorkerGlobalScope': {
|
1187
2575
|
'inheritance': 'EventTarget',
|
1188
|
-
'includes': [
|
2576
|
+
'includes': [
|
2577
|
+
'WindowOrWorkerGlobalScope',
|
2578
|
+
],
|
1189
2579
|
'props': {
|
1190
2580
|
'self': {},
|
1191
2581
|
'location': {},
|
@@ -1208,7 +2598,11 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1208
2598
|
'NavigatorPlugins',
|
1209
2599
|
'NavigatorConcurrentHardware',
|
1210
2600
|
],
|
1211
|
-
'props': {
|
2601
|
+
'props': {
|
2602
|
+
'maxTouchPoints': {
|
2603
|
+
'specs': 8,
|
2604
|
+
},
|
2605
|
+
},
|
1212
2606
|
},
|
1213
2607
|
'NavigatorID': {
|
1214
2608
|
'props': {
|
@@ -1224,531 +2618,1626 @@ export const DOMPinnedProperties: DOMPinnedPropertiesDataset = {
|
|
1224
2618
|
'oscpu': {},
|
1225
2619
|
},
|
1226
2620
|
},
|
1227
|
-
'NavigatorLanguage': {
|
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': {
|
2621
|
+
'NavigatorLanguage': {
|
1237
2622
|
'props': {
|
1238
|
-
'
|
1239
|
-
'
|
1240
|
-
'colorSpaceConversion': {},
|
1241
|
-
'resizeWidth': {},
|
1242
|
-
'resizeHeight': {},
|
1243
|
-
'resizeQuality': {},
|
2623
|
+
'language': {},
|
2624
|
+
'languages': {},
|
1244
2625
|
},
|
1245
2626
|
},
|
1246
|
-
'
|
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': {
|
2627
|
+
'NavigatorOnLine': {
|
1274
2628
|
'props': {
|
1275
|
-
'
|
1276
|
-
'origin': {},
|
1277
|
-
'protocol': {},
|
1278
|
-
'host': {},
|
1279
|
-
'hostname': {},
|
1280
|
-
'port': {},
|
1281
|
-
'pathname': {},
|
1282
|
-
'search': {},
|
1283
|
-
'hash': {},
|
2629
|
+
'onLine': {},
|
1284
2630
|
},
|
1285
2631
|
},
|
1286
|
-
'
|
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',
|
2632
|
+
'NavigatorCookies': {
|
1296
2633
|
'props': {
|
1297
|
-
'
|
1298
|
-
'bgColor': {},
|
1299
|
-
'direction': {},
|
1300
|
-
'height': {},
|
1301
|
-
'hspace': {},
|
1302
|
-
'loop': {},
|
1303
|
-
'scrollAmount': {},
|
1304
|
-
'scrollDelay': {},
|
1305
|
-
'trueSpeed': {},
|
1306
|
-
'vspace': {},
|
1307
|
-
'width': {},
|
2634
|
+
'cookieEnabled': {},
|
1308
2635
|
},
|
1309
2636
|
},
|
1310
|
-
'
|
1311
|
-
{'inheritance': 'HTMLElement', 'includes': ['WindowEventHandlers'], 'props': {'cols': {}, 'rows': {}}},
|
1312
|
-
'HTMLFrameElement': {
|
1313
|
-
'inheritance': 'HTMLElement',
|
2637
|
+
'NavigatorPlugins': {
|
1314
2638
|
'props': {
|
1315
|
-
'
|
1316
|
-
'
|
1317
|
-
'
|
1318
|
-
'frameBorder': {},
|
1319
|
-
'longDesc': {},
|
1320
|
-
'noResize': {},
|
1321
|
-
'contentDocument': {},
|
1322
|
-
'contentWindow': {},
|
1323
|
-
'marginHeight': {},
|
1324
|
-
'marginWidth': {},
|
2639
|
+
'plugins': {},
|
2640
|
+
'mimeTypes': {},
|
2641
|
+
'pdfViewerEnabled': {},
|
1325
2642
|
},
|
1326
2643
|
},
|
1327
|
-
'
|
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'],
|
2644
|
+
'PluginArray': {
|
1364
2645
|
'props': {
|
1365
|
-
'
|
1366
|
-
'delegatesFocus': {'specs': 2},
|
1367
|
-
'slotAssignment': {'specs': 2},
|
1368
|
-
'host': {'specs': 2},
|
1369
|
-
'onslotchange': {'specs': 2},
|
2646
|
+
'length': {},
|
1370
2647
|
},
|
1371
2648
|
},
|
1372
|
-
'
|
2649
|
+
'MimeTypeArray': {
|
1373
2650
|
'props': {
|
1374
|
-
'
|
1375
|
-
'firstElementChild': {'specs': 2},
|
1376
|
-
'lastElementChild': {'specs': 2},
|
1377
|
-
'childElementCount': {'specs': 2},
|
2651
|
+
'length': {},
|
1378
2652
|
},
|
1379
2653
|
},
|
1380
|
-
'
|
1381
|
-
'inheritance': 'Node',
|
1382
|
-
'includes': ['ParentNode', 'NonDocumentTypeChildNode', 'ChildNode', 'Slottable', 'ARIAMixin'],
|
2654
|
+
'Plugin': {
|
1383
2655
|
'props': {
|
1384
|
-
'
|
1385
|
-
'
|
1386
|
-
'
|
1387
|
-
'
|
1388
|
-
'id': {'specs': 2},
|
1389
|
-
'className': {'specs': 2},
|
1390
|
-
'classList': {'specs': 2},
|
1391
|
-
'slot': {'specs': 2},
|
1392
|
-
'attributes': {'specs': 2},
|
1393
|
-
'shadowRoot': {'specs': 2},
|
2656
|
+
'name': {},
|
2657
|
+
'description': {},
|
2658
|
+
'filename': {},
|
2659
|
+
'length': {},
|
1394
2660
|
},
|
1395
2661
|
},
|
1396
|
-
'
|
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': {
|
2662
|
+
'MimeType': {
|
1412
2663
|
'props': {
|
1413
|
-
'
|
1414
|
-
'
|
1415
|
-
'
|
1416
|
-
'
|
1417
|
-
'attributeOldValue': {'specs': 2},
|
1418
|
-
'characterDataOldValue': {'specs': 2},
|
1419
|
-
'attributeFilter': {'specs': 2},
|
2664
|
+
'type': {},
|
2665
|
+
'description': {},
|
2666
|
+
'suffixes': {},
|
2667
|
+
'enabledPlugin': {},
|
1420
2668
|
},
|
1421
2669
|
},
|
1422
|
-
'
|
2670
|
+
'ImageBitmap': {
|
1423
2671
|
'props': {
|
1424
|
-
'
|
1425
|
-
'
|
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},
|
2672
|
+
'width': {},
|
2673
|
+
'height': {},
|
1433
2674
|
},
|
1434
2675
|
},
|
1435
|
-
'
|
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',
|
2676
|
+
'ImageBitmapOptions': {
|
1461
2677
|
'props': {
|
1462
|
-
'
|
1463
|
-
'
|
1464
|
-
'
|
1465
|
-
'
|
1466
|
-
'
|
1467
|
-
'
|
1468
|
-
'specified': {'specs': 2},
|
2678
|
+
'imageOrientation': {},
|
2679
|
+
'premultiplyAlpha': {},
|
2680
|
+
'colorSpaceConversion': {},
|
2681
|
+
'resizeWidth': {},
|
2682
|
+
'resizeHeight': {},
|
2683
|
+
'resizeQuality': {},
|
1469
2684
|
},
|
1470
2685
|
},
|
1471
|
-
'
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
2686
|
+
'DedicatedWorkerGlobalScope': {
|
2687
|
+
'inheritance': 'WorkerGlobalScope',
|
2688
|
+
'includes': [
|
2689
|
+
'AnimationFrameProvider',
|
2690
|
+
],
|
1476
2691
|
'props': {
|
1477
|
-
'
|
1478
|
-
'
|
1479
|
-
'
|
1480
|
-
|
1481
|
-
|
2692
|
+
'name': {},
|
2693
|
+
'onmessage': {},
|
2694
|
+
'onmessageerror': {},
|
2695
|
+
},
|
2696
|
+
},
|
2697
|
+
'MessageEvent': {
|
2698
|
+
'inheritance': 'Event',
|
2699
|
+
'props': {
|
2700
|
+
'data': {},
|
2701
|
+
'origin': {},
|
2702
|
+
'lastEventId': {},
|
2703
|
+
'source': {},
|
2704
|
+
'ports': {},
|
2705
|
+
},
|
2706
|
+
},
|
2707
|
+
'MessageEventInit': {
|
2708
|
+
'inheritance': 'EventInit',
|
2709
|
+
'props': {
|
2710
|
+
'data': {},
|
2711
|
+
'origin': {},
|
2712
|
+
'lastEventId': {},
|
2713
|
+
'source': {},
|
2714
|
+
'ports': {},
|
2715
|
+
},
|
2716
|
+
},
|
2717
|
+
'EventSource': {
|
2718
|
+
'inheritance': 'EventTarget',
|
2719
|
+
'props': {
|
2720
|
+
'url': {},
|
2721
|
+
'withCredentials': {},
|
2722
|
+
'readyState': {},
|
2723
|
+
'onopen': {},
|
2724
|
+
'onmessage': {},
|
2725
|
+
'onerror': {},
|
2726
|
+
},
|
2727
|
+
},
|
2728
|
+
'EventSourceInit': {
|
2729
|
+
'props': {
|
2730
|
+
'withCredentials': {},
|
2731
|
+
},
|
2732
|
+
},
|
2733
|
+
'MessageChannel': {
|
2734
|
+
'props': {
|
2735
|
+
'port1': {},
|
2736
|
+
'port2': {},
|
2737
|
+
},
|
2738
|
+
},
|
2739
|
+
'MessagePort': {
|
2740
|
+
'inheritance': 'EventTarget',
|
2741
|
+
'props': {
|
2742
|
+
'onmessage': {},
|
2743
|
+
'onmessageerror': {},
|
2744
|
+
},
|
2745
|
+
},
|
2746
|
+
'StructuredSerializeOptions': {
|
2747
|
+
'props': {
|
2748
|
+
'transfer': {},
|
2749
|
+
},
|
2750
|
+
},
|
2751
|
+
'BroadcastChannel': {
|
2752
|
+
'inheritance': 'EventTarget',
|
2753
|
+
'props': {
|
2754
|
+
'name': {},
|
2755
|
+
'onmessage': {},
|
2756
|
+
'onmessageerror': {},
|
2757
|
+
},
|
2758
|
+
},
|
2759
|
+
'SharedWorkerGlobalScope': {
|
2760
|
+
'inheritance': 'WorkerGlobalScope',
|
2761
|
+
'props': {
|
2762
|
+
'name': {},
|
2763
|
+
'onconnect': {},
|
2764
|
+
},
|
2765
|
+
},
|
2766
|
+
'AbstractWorker': {
|
2767
|
+
'props': {
|
2768
|
+
'onerror': {},
|
2769
|
+
},
|
2770
|
+
},
|
2771
|
+
'Worker': {
|
2772
|
+
'inheritance': 'EventTarget',
|
2773
|
+
'includes': [
|
2774
|
+
'AbstractWorker',
|
2775
|
+
],
|
2776
|
+
'props': {
|
2777
|
+
'onmessage': {},
|
2778
|
+
'onmessageerror': {},
|
2779
|
+
},
|
2780
|
+
},
|
2781
|
+
'WorkerOptions': {
|
2782
|
+
'props': {
|
2783
|
+
'type': {},
|
2784
|
+
'credentials': {},
|
2785
|
+
'name': {},
|
2786
|
+
},
|
2787
|
+
},
|
2788
|
+
'SharedWorker': {
|
2789
|
+
'inheritance': 'EventTarget',
|
2790
|
+
'includes': [
|
2791
|
+
'AbstractWorker',
|
2792
|
+
],
|
2793
|
+
'props': {
|
2794
|
+
'port': {},
|
2795
|
+
},
|
2796
|
+
},
|
2797
|
+
'NavigatorConcurrentHardware': {
|
2798
|
+
'props': {
|
2799
|
+
'hardwareConcurrency': {},
|
2800
|
+
},
|
2801
|
+
},
|
2802
|
+
'WorkerNavigator': {
|
2803
|
+
'includes': [
|
2804
|
+
'NavigatorID',
|
2805
|
+
'NavigatorLanguage',
|
2806
|
+
'NavigatorOnLine',
|
2807
|
+
'NavigatorConcurrentHardware',
|
2808
|
+
],
|
2809
|
+
},
|
2810
|
+
'WorkerLocation': {
|
2811
|
+
'props': {
|
2812
|
+
'href': {},
|
2813
|
+
'origin': {},
|
2814
|
+
'protocol': {},
|
2815
|
+
'host': {},
|
2816
|
+
'hostname': {},
|
2817
|
+
'port': {},
|
2818
|
+
'pathname': {},
|
2819
|
+
'search': {},
|
2820
|
+
'hash': {},
|
2821
|
+
},
|
2822
|
+
},
|
2823
|
+
'WorkletOptions': {
|
2824
|
+
'props': {
|
2825
|
+
'credentials': {},
|
2826
|
+
},
|
2827
|
+
},
|
2828
|
+
'Storage': {
|
2829
|
+
'props': {
|
2830
|
+
'length': {},
|
2831
|
+
},
|
2832
|
+
},
|
2833
|
+
'WindowSessionStorage': {
|
2834
|
+
'props': {
|
2835
|
+
'sessionStorage': {},
|
2836
|
+
},
|
2837
|
+
},
|
2838
|
+
'WindowLocalStorage': {
|
2839
|
+
'props': {
|
2840
|
+
'localStorage': {},
|
2841
|
+
},
|
2842
|
+
},
|
2843
|
+
'StorageEvent': {
|
2844
|
+
'inheritance': 'Event',
|
2845
|
+
'props': {
|
2846
|
+
'key': {},
|
2847
|
+
'oldValue': {},
|
2848
|
+
'newValue': {},
|
2849
|
+
'url': {},
|
2850
|
+
'storageArea': {},
|
2851
|
+
},
|
2852
|
+
},
|
2853
|
+
'StorageEventInit': {
|
2854
|
+
'inheritance': 'EventInit',
|
2855
|
+
'props': {
|
2856
|
+
'key': {},
|
2857
|
+
'oldValue': {},
|
2858
|
+
'newValue': {},
|
2859
|
+
'url': {},
|
2860
|
+
'storageArea': {},
|
2861
|
+
},
|
2862
|
+
},
|
2863
|
+
'HTMLMarqueeElement': {
|
2864
|
+
'inheritance': 'HTMLElement',
|
2865
|
+
'props': {
|
2866
|
+
'behavior': {},
|
2867
|
+
'bgColor': {},
|
2868
|
+
'direction': {},
|
2869
|
+
'height': {},
|
2870
|
+
'hspace': {},
|
2871
|
+
'loop': {},
|
2872
|
+
'scrollAmount': {},
|
2873
|
+
'scrollDelay': {},
|
2874
|
+
'trueSpeed': {},
|
2875
|
+
'vspace': {},
|
2876
|
+
'width': {},
|
2877
|
+
},
|
2878
|
+
},
|
2879
|
+
'HTMLFrameSetElement': {
|
2880
|
+
'inheritance': 'HTMLElement',
|
2881
|
+
'includes': [
|
2882
|
+
'WindowEventHandlers',
|
2883
|
+
],
|
2884
|
+
'props': {
|
2885
|
+
'cols': {},
|
2886
|
+
'rows': {},
|
2887
|
+
},
|
2888
|
+
},
|
2889
|
+
'HTMLFrameElement': {
|
2890
|
+
'inheritance': 'HTMLElement',
|
2891
|
+
'props': {
|
2892
|
+
'name': {},
|
2893
|
+
'scrolling': {},
|
2894
|
+
'src': {},
|
2895
|
+
'frameBorder': {},
|
2896
|
+
'longDesc': {},
|
2897
|
+
'noResize': {},
|
2898
|
+
'contentDocument': {},
|
2899
|
+
'contentWindow': {},
|
2900
|
+
'marginHeight': {},
|
2901
|
+
'marginWidth': {},
|
2902
|
+
},
|
2903
|
+
},
|
2904
|
+
'HTMLDirectoryElement': {
|
2905
|
+
'inheritance': 'HTMLElement',
|
2906
|
+
'props': {
|
2907
|
+
'compact': {},
|
2908
|
+
},
|
2909
|
+
},
|
2910
|
+
'HTMLFontElement': {
|
2911
|
+
'inheritance': 'HTMLElement',
|
2912
|
+
'props': {
|
2913
|
+
'color': {},
|
2914
|
+
'face': {},
|
2915
|
+
'size': {},
|
2916
|
+
},
|
2917
|
+
},
|
2918
|
+
'HTMLParamElement': {
|
2919
|
+
'inheritance': 'HTMLElement',
|
2920
|
+
'props': {
|
2921
|
+
'name': {},
|
2922
|
+
'value': {},
|
2923
|
+
'type': {},
|
2924
|
+
'valueType': {},
|
2925
|
+
},
|
2926
|
+
},
|
2927
|
+
'Event': {
|
2928
|
+
'props': {
|
2929
|
+
'type': {
|
2930
|
+
'specs': 2,
|
2931
|
+
},
|
2932
|
+
'target': {
|
2933
|
+
'specs': 2,
|
2934
|
+
},
|
2935
|
+
'srcElement': {
|
2936
|
+
'specs': 2,
|
2937
|
+
},
|
2938
|
+
'currentTarget': {
|
2939
|
+
'specs': 2,
|
2940
|
+
},
|
2941
|
+
'eventPhase': {
|
2942
|
+
'specs': 2,
|
2943
|
+
},
|
2944
|
+
'cancelBubble': {
|
2945
|
+
'specs': 2,
|
2946
|
+
},
|
2947
|
+
'bubbles': {
|
2948
|
+
'specs': 2,
|
2949
|
+
},
|
2950
|
+
'cancelable': {
|
2951
|
+
'specs': 2,
|
2952
|
+
},
|
2953
|
+
'returnValue': {
|
2954
|
+
'specs': 2,
|
2955
|
+
},
|
2956
|
+
'defaultPrevented': {
|
2957
|
+
'specs': 2,
|
2958
|
+
},
|
2959
|
+
'composed': {
|
2960
|
+
'specs': 2,
|
2961
|
+
},
|
2962
|
+
'isTrusted': {
|
2963
|
+
'specs': 2,
|
2964
|
+
},
|
2965
|
+
'timeStamp': {
|
2966
|
+
'specs': 2,
|
2967
|
+
},
|
2968
|
+
},
|
2969
|
+
},
|
2970
|
+
'EventInit': {
|
2971
|
+
'props': {
|
2972
|
+
'bubbles': {
|
2973
|
+
'specs': 2,
|
2974
|
+
},
|
2975
|
+
'cancelable': {
|
2976
|
+
'specs': 2,
|
2977
|
+
},
|
2978
|
+
'composed': {
|
2979
|
+
'specs': 2,
|
2980
|
+
},
|
2981
|
+
},
|
2982
|
+
},
|
2983
|
+
'CustomEvent': {
|
2984
|
+
'inheritance': 'Event',
|
2985
|
+
'props': {
|
2986
|
+
'detail': {
|
2987
|
+
'specs': 2,
|
2988
|
+
},
|
2989
|
+
},
|
2990
|
+
},
|
2991
|
+
'CustomEventInit': {
|
2992
|
+
'inheritance': 'EventInit',
|
2993
|
+
'props': {
|
2994
|
+
'detail': {
|
2995
|
+
'specs': 2,
|
2996
|
+
},
|
2997
|
+
},
|
2998
|
+
},
|
2999
|
+
'EventListenerOptions': {
|
3000
|
+
'props': {
|
3001
|
+
'capture': {
|
3002
|
+
'specs': 2,
|
3003
|
+
},
|
3004
|
+
},
|
3005
|
+
},
|
3006
|
+
'AddEventListenerOptions': {
|
3007
|
+
'inheritance': 'EventListenerOptions',
|
3008
|
+
'props': {
|
3009
|
+
'passive': {
|
3010
|
+
'specs': 2,
|
3011
|
+
},
|
3012
|
+
'once': {
|
3013
|
+
'specs': 2,
|
3014
|
+
},
|
3015
|
+
'signal': {
|
3016
|
+
'specs': 2,
|
3017
|
+
},
|
3018
|
+
},
|
3019
|
+
},
|
3020
|
+
'AbortController': {
|
3021
|
+
'props': {
|
3022
|
+
'signal': {
|
3023
|
+
'specs': 2,
|
3024
|
+
},
|
3025
|
+
},
|
3026
|
+
},
|
3027
|
+
'AbortSignal': {
|
3028
|
+
'inheritance': 'EventTarget',
|
3029
|
+
'props': {
|
3030
|
+
'aborted': {
|
3031
|
+
'specs': 2,
|
3032
|
+
},
|
3033
|
+
'reason': {
|
3034
|
+
'specs': 2,
|
3035
|
+
},
|
3036
|
+
'onabort': {
|
3037
|
+
'specs': 2,
|
3038
|
+
},
|
3039
|
+
},
|
3040
|
+
},
|
3041
|
+
'DocumentFragment': {
|
3042
|
+
'inheritance': 'Node',
|
3043
|
+
'includes': [
|
3044
|
+
'NonElementParentNode',
|
3045
|
+
'ParentNode',
|
3046
|
+
],
|
3047
|
+
},
|
3048
|
+
'ShadowRoot': {
|
3049
|
+
'inheritance': 'DocumentFragment',
|
3050
|
+
'includes': [
|
3051
|
+
'DocumentOrShadowRoot',
|
3052
|
+
],
|
3053
|
+
'props': {
|
3054
|
+
'mode': {
|
3055
|
+
'specs': 2,
|
3056
|
+
},
|
3057
|
+
'delegatesFocus': {
|
3058
|
+
'specs': 2,
|
3059
|
+
},
|
3060
|
+
'slotAssignment': {
|
3061
|
+
'specs': 2,
|
3062
|
+
},
|
3063
|
+
'host': {
|
3064
|
+
'specs': 2,
|
3065
|
+
},
|
3066
|
+
'onslotchange': {
|
3067
|
+
'specs': 2,
|
3068
|
+
},
|
3069
|
+
},
|
3070
|
+
},
|
3071
|
+
'ParentNode': {
|
3072
|
+
'props': {
|
3073
|
+
'children': {
|
3074
|
+
'specs': 2,
|
3075
|
+
},
|
3076
|
+
'firstElementChild': {
|
3077
|
+
'specs': 2,
|
3078
|
+
},
|
3079
|
+
'lastElementChild': {
|
3080
|
+
'specs': 2,
|
3081
|
+
},
|
3082
|
+
'childElementCount': {
|
3083
|
+
'specs': 2,
|
3084
|
+
},
|
3085
|
+
},
|
3086
|
+
},
|
3087
|
+
'Element': {
|
3088
|
+
'inheritance': 'Node',
|
3089
|
+
'includes': [
|
3090
|
+
'ParentNode',
|
3091
|
+
'NonDocumentTypeChildNode',
|
3092
|
+
'ChildNode',
|
3093
|
+
'Slottable',
|
3094
|
+
'ARIAMixin',
|
3095
|
+
],
|
3096
|
+
'props': {
|
3097
|
+
'namespaceURI': {
|
3098
|
+
'specs': 2,
|
3099
|
+
},
|
3100
|
+
'prefix': {
|
3101
|
+
'specs': 2,
|
3102
|
+
},
|
3103
|
+
'localName': {
|
3104
|
+
'specs': 2,
|
3105
|
+
},
|
3106
|
+
'tagName': {
|
3107
|
+
'specs': 2,
|
3108
|
+
},
|
3109
|
+
'id': {
|
3110
|
+
'specs': 2,
|
3111
|
+
},
|
3112
|
+
'className': {
|
3113
|
+
'specs': 2,
|
3114
|
+
},
|
3115
|
+
'classList': {
|
3116
|
+
'specs': 2,
|
3117
|
+
},
|
3118
|
+
'slot': {
|
3119
|
+
'specs': 2,
|
3120
|
+
},
|
3121
|
+
'attributes': {
|
3122
|
+
'specs': 2,
|
3123
|
+
},
|
3124
|
+
'shadowRoot': {
|
3125
|
+
'specs': 2,
|
3126
|
+
},
|
3127
|
+
},
|
3128
|
+
},
|
3129
|
+
'NonDocumentTypeChildNode': {
|
3130
|
+
'props': {
|
3131
|
+
'previousElementSibling': {
|
3132
|
+
'specs': 2,
|
3133
|
+
},
|
3134
|
+
'nextElementSibling': {
|
3135
|
+
'specs': 2,
|
3136
|
+
},
|
3137
|
+
},
|
3138
|
+
},
|
3139
|
+
'CharacterData': {
|
3140
|
+
'inheritance': 'Node',
|
3141
|
+
'includes': [
|
3142
|
+
'NonDocumentTypeChildNode',
|
3143
|
+
'ChildNode',
|
3144
|
+
],
|
3145
|
+
'props': {
|
3146
|
+
'data': {
|
3147
|
+
'specs': 2,
|
3148
|
+
},
|
3149
|
+
'length': {
|
3150
|
+
'specs': 2,
|
3151
|
+
},
|
3152
|
+
},
|
3153
|
+
},
|
3154
|
+
'DocumentType': {
|
3155
|
+
'inheritance': 'Node',
|
3156
|
+
'includes': [
|
3157
|
+
'ChildNode',
|
3158
|
+
],
|
3159
|
+
'props': {
|
3160
|
+
'name': {
|
3161
|
+
'specs': 2,
|
3162
|
+
},
|
3163
|
+
'publicId': {
|
3164
|
+
'specs': 2,
|
3165
|
+
},
|
3166
|
+
'systemId': {
|
3167
|
+
'specs': 2,
|
3168
|
+
},
|
3169
|
+
},
|
3170
|
+
},
|
3171
|
+
'Slottable': {
|
3172
|
+
'props': {
|
3173
|
+
'assignedSlot': {
|
3174
|
+
'specs': 2,
|
3175
|
+
},
|
3176
|
+
},
|
3177
|
+
},
|
3178
|
+
'Text': {
|
3179
|
+
'inheritance': 'CharacterData',
|
3180
|
+
'includes': [
|
3181
|
+
'Slottable',
|
3182
|
+
],
|
3183
|
+
'props': {
|
3184
|
+
'wholeText': {
|
3185
|
+
'specs': 2,
|
3186
|
+
},
|
3187
|
+
},
|
3188
|
+
},
|
3189
|
+
'NodeList': {
|
3190
|
+
'props': {
|
3191
|
+
'length': {
|
3192
|
+
'specs': 2,
|
3193
|
+
},
|
3194
|
+
},
|
3195
|
+
},
|
3196
|
+
'HTMLCollection': {
|
3197
|
+
'props': {
|
3198
|
+
'length': {
|
3199
|
+
'specs': 2,
|
3200
|
+
},
|
3201
|
+
},
|
3202
|
+
},
|
3203
|
+
'MutationObserverInit': {
|
3204
|
+
'props': {
|
3205
|
+
'childList': {
|
3206
|
+
'specs': 2,
|
3207
|
+
},
|
3208
|
+
'attributes': {
|
3209
|
+
'specs': 2,
|
3210
|
+
},
|
3211
|
+
'characterData': {
|
3212
|
+
'specs': 2,
|
3213
|
+
},
|
3214
|
+
'subtree': {
|
3215
|
+
'specs': 2,
|
3216
|
+
},
|
3217
|
+
'attributeOldValue': {
|
3218
|
+
'specs': 2,
|
3219
|
+
},
|
3220
|
+
'characterDataOldValue': {
|
3221
|
+
'specs': 2,
|
3222
|
+
},
|
3223
|
+
'attributeFilter': {
|
3224
|
+
'specs': 2,
|
3225
|
+
},
|
3226
|
+
},
|
3227
|
+
},
|
3228
|
+
'MutationRecord': {
|
3229
|
+
'props': {
|
3230
|
+
'type': {
|
3231
|
+
'specs': 2,
|
3232
|
+
},
|
3233
|
+
'target': {
|
3234
|
+
'specs': 2,
|
3235
|
+
},
|
3236
|
+
'addedNodes': {
|
3237
|
+
'specs': 2,
|
3238
|
+
},
|
3239
|
+
'removedNodes': {
|
3240
|
+
'specs': 2,
|
3241
|
+
},
|
3242
|
+
'previousSibling': {
|
3243
|
+
'specs': 2,
|
3244
|
+
},
|
3245
|
+
'nextSibling': {
|
3246
|
+
'specs': 2,
|
3247
|
+
},
|
3248
|
+
'attributeName': {
|
3249
|
+
'specs': 2,
|
3250
|
+
},
|
3251
|
+
'attributeNamespace': {
|
3252
|
+
'specs': 2,
|
3253
|
+
},
|
3254
|
+
'oldValue': {
|
3255
|
+
'specs': 2,
|
3256
|
+
},
|
3257
|
+
},
|
3258
|
+
},
|
3259
|
+
'Node': {
|
3260
|
+
'inheritance': 'EventTarget',
|
3261
|
+
'props': {
|
3262
|
+
'nodeType': {
|
3263
|
+
'specs': 2,
|
3264
|
+
},
|
3265
|
+
'nodeName': {
|
3266
|
+
'specs': 2,
|
3267
|
+
},
|
3268
|
+
'baseURI': {
|
3269
|
+
'specs': 2,
|
3270
|
+
},
|
3271
|
+
'isConnected': {
|
3272
|
+
'specs': 2,
|
3273
|
+
},
|
3274
|
+
'ownerDocument': {
|
3275
|
+
'specs': 2,
|
3276
|
+
},
|
3277
|
+
'parentNode': {
|
3278
|
+
'specs': 2,
|
3279
|
+
},
|
3280
|
+
'parentElement': {
|
3281
|
+
'specs': 2,
|
3282
|
+
},
|
3283
|
+
'childNodes': {
|
3284
|
+
'specs': 2,
|
3285
|
+
},
|
3286
|
+
'firstChild': {
|
3287
|
+
'specs': 2,
|
3288
|
+
},
|
3289
|
+
'lastChild': {
|
3290
|
+
'specs': 2,
|
3291
|
+
},
|
3292
|
+
'previousSibling': {
|
3293
|
+
'specs': 2,
|
3294
|
+
},
|
3295
|
+
'nextSibling': {
|
3296
|
+
'specs': 2,
|
3297
|
+
},
|
3298
|
+
'nodeValue': {
|
3299
|
+
'specs': 2,
|
3300
|
+
},
|
3301
|
+
'textContent': {
|
3302
|
+
'specs': 2,
|
3303
|
+
},
|
3304
|
+
},
|
3305
|
+
},
|
3306
|
+
'GetRootNodeOptions': {
|
3307
|
+
'props': {
|
3308
|
+
'composed': {
|
3309
|
+
'specs': 2,
|
3310
|
+
},
|
3311
|
+
},
|
3312
|
+
},
|
3313
|
+
'XMLDocument': {
|
3314
|
+
'inheritance': 'Document',
|
3315
|
+
},
|
3316
|
+
'ElementCreationOptions': {
|
3317
|
+
'props': {
|
3318
|
+
'is': {
|
3319
|
+
'specs': 2,
|
3320
|
+
'global': true,
|
3321
|
+
},
|
3322
|
+
},
|
3323
|
+
},
|
3324
|
+
'ShadowRootInit': {
|
3325
|
+
'props': {
|
3326
|
+
'mode': {
|
3327
|
+
'specs': 2,
|
3328
|
+
},
|
3329
|
+
'delegatesFocus': {
|
3330
|
+
'specs': 2,
|
3331
|
+
},
|
3332
|
+
'slotAssignment': {
|
3333
|
+
'specs': 2,
|
3334
|
+
},
|
3335
|
+
},
|
3336
|
+
},
|
3337
|
+
'NamedNodeMap': {
|
3338
|
+
'props': {
|
3339
|
+
'length': {
|
3340
|
+
'specs': 2,
|
3341
|
+
},
|
3342
|
+
},
|
3343
|
+
},
|
3344
|
+
'Attr': {
|
3345
|
+
'inheritance': 'Node',
|
3346
|
+
'props': {
|
3347
|
+
'namespaceURI': {
|
3348
|
+
'specs': 2,
|
3349
|
+
},
|
3350
|
+
'prefix': {
|
3351
|
+
'specs': 2,
|
3352
|
+
},
|
3353
|
+
'localName': {
|
3354
|
+
'specs': 2,
|
3355
|
+
},
|
3356
|
+
'name': {
|
3357
|
+
'specs': 2,
|
3358
|
+
},
|
3359
|
+
'value': {
|
3360
|
+
'specs': 2,
|
3361
|
+
},
|
3362
|
+
'ownerElement': {
|
3363
|
+
'specs': 2,
|
3364
|
+
},
|
3365
|
+
'specified': {
|
3366
|
+
'specs': 2,
|
3367
|
+
},
|
3368
|
+
},
|
3369
|
+
},
|
3370
|
+
'CDATASection': {
|
3371
|
+
'inheritance': 'Text',
|
3372
|
+
},
|
3373
|
+
'ProcessingInstruction': {
|
3374
|
+
'inheritance': 'CharacterData',
|
3375
|
+
'includes': [
|
3376
|
+
'LinkStyle',
|
3377
|
+
],
|
3378
|
+
'props': {
|
3379
|
+
'target': {
|
3380
|
+
'specs': 2,
|
3381
|
+
},
|
3382
|
+
},
|
3383
|
+
},
|
3384
|
+
'Comment': {
|
3385
|
+
'inheritance': 'CharacterData',
|
3386
|
+
},
|
3387
|
+
'AbstractRange': {
|
3388
|
+
'props': {
|
3389
|
+
'startContainer': {
|
3390
|
+
'specs': 2,
|
3391
|
+
},
|
3392
|
+
'startOffset': {
|
3393
|
+
'specs': 2,
|
3394
|
+
},
|
3395
|
+
'endContainer': {
|
3396
|
+
'specs': 2,
|
3397
|
+
},
|
3398
|
+
'endOffset': {
|
3399
|
+
'specs': 2,
|
3400
|
+
},
|
3401
|
+
'collapsed': {
|
3402
|
+
'specs': 2,
|
3403
|
+
},
|
1482
3404
|
},
|
1483
3405
|
},
|
1484
3406
|
'StaticRangeInit': {
|
1485
3407
|
'props': {
|
1486
|
-
'startContainer': {
|
1487
|
-
|
1488
|
-
|
1489
|
-
'
|
3408
|
+
'startContainer': {
|
3409
|
+
'specs': 2,
|
3410
|
+
},
|
3411
|
+
'startOffset': {
|
3412
|
+
'specs': 2,
|
3413
|
+
},
|
3414
|
+
'endContainer': {
|
3415
|
+
'specs': 2,
|
3416
|
+
},
|
3417
|
+
'endOffset': {
|
3418
|
+
'specs': 2,
|
3419
|
+
},
|
3420
|
+
},
|
3421
|
+
},
|
3422
|
+
'StaticRange': {
|
3423
|
+
'inheritance': 'AbstractRange',
|
3424
|
+
},
|
3425
|
+
'Range': {
|
3426
|
+
'inheritance': 'AbstractRange',
|
3427
|
+
'props': {
|
3428
|
+
'commonAncestorContainer': {
|
3429
|
+
'specs': 2,
|
3430
|
+
},
|
3431
|
+
},
|
3432
|
+
},
|
3433
|
+
'NodeIterator': {
|
3434
|
+
'props': {
|
3435
|
+
'root': {
|
3436
|
+
'specs': 2,
|
3437
|
+
},
|
3438
|
+
'referenceNode': {
|
3439
|
+
'specs': 2,
|
3440
|
+
},
|
3441
|
+
'pointerBeforeReferenceNode': {
|
3442
|
+
'specs': 2,
|
3443
|
+
},
|
3444
|
+
'whatToShow': {
|
3445
|
+
'specs': 2,
|
3446
|
+
},
|
3447
|
+
'filter': {
|
3448
|
+
'specs': 2,
|
3449
|
+
},
|
3450
|
+
},
|
3451
|
+
},
|
3452
|
+
'TreeWalker': {
|
3453
|
+
'props': {
|
3454
|
+
'root': {
|
3455
|
+
'specs': 2,
|
3456
|
+
},
|
3457
|
+
'whatToShow': {
|
3458
|
+
'specs': 2,
|
3459
|
+
},
|
3460
|
+
'filter': {
|
3461
|
+
'specs': 2,
|
3462
|
+
},
|
3463
|
+
'currentNode': {
|
3464
|
+
'specs': 2,
|
3465
|
+
},
|
3466
|
+
},
|
3467
|
+
},
|
3468
|
+
'DOMTokenList': {
|
3469
|
+
'props': {
|
3470
|
+
'length': {
|
3471
|
+
'specs': 2,
|
3472
|
+
},
|
3473
|
+
'value': {
|
3474
|
+
'specs': 2,
|
3475
|
+
},
|
3476
|
+
},
|
3477
|
+
},
|
3478
|
+
'XPathResult': {
|
3479
|
+
'props': {
|
3480
|
+
'resultType': {
|
3481
|
+
'specs': 2,
|
3482
|
+
},
|
3483
|
+
'numberValue': {
|
3484
|
+
'specs': 2,
|
3485
|
+
},
|
3486
|
+
'stringValue': {
|
3487
|
+
'specs': 2,
|
3488
|
+
},
|
3489
|
+
'booleanValue': {
|
3490
|
+
'specs': 2,
|
3491
|
+
},
|
3492
|
+
'singleNodeValue': {
|
3493
|
+
'specs': 2,
|
3494
|
+
},
|
3495
|
+
'invalidIteratorState': {
|
3496
|
+
'specs': 2,
|
3497
|
+
},
|
3498
|
+
'snapshotLength': {
|
3499
|
+
'specs': 2,
|
3500
|
+
},
|
3501
|
+
},
|
3502
|
+
},
|
3503
|
+
'XPathEvaluator': {
|
3504
|
+
'includes': [
|
3505
|
+
'XPathEvaluatorBase',
|
3506
|
+
],
|
3507
|
+
},
|
3508
|
+
'UIEvent': {
|
3509
|
+
'inheritance': 'Event',
|
3510
|
+
'props': {
|
3511
|
+
'view': {
|
3512
|
+
'specs': 4,
|
3513
|
+
},
|
3514
|
+
'detail': {
|
3515
|
+
'specs': 4,
|
3516
|
+
},
|
3517
|
+
'which': {
|
3518
|
+
'specs': 4,
|
3519
|
+
},
|
1490
3520
|
},
|
1491
3521
|
},
|
1492
|
-
'
|
1493
|
-
|
1494
|
-
'NodeIterator': {
|
3522
|
+
'UIEventInit': {
|
3523
|
+
'inheritance': 'EventInit',
|
1495
3524
|
'props': {
|
1496
|
-
'
|
1497
|
-
|
1498
|
-
|
1499
|
-
'
|
1500
|
-
|
3525
|
+
'view': {
|
3526
|
+
'specs': 4,
|
3527
|
+
},
|
3528
|
+
'detail': {
|
3529
|
+
'specs': 4,
|
3530
|
+
},
|
3531
|
+
'which': {
|
3532
|
+
'specs': 4,
|
3533
|
+
},
|
1501
3534
|
},
|
1502
3535
|
},
|
1503
|
-
'
|
1504
|
-
'
|
3536
|
+
'FocusEvent': {
|
3537
|
+
'inheritance': 'UIEvent',
|
3538
|
+
'props': {
|
3539
|
+
'relatedTarget': {
|
3540
|
+
'specs': 4,
|
3541
|
+
},
|
3542
|
+
},
|
1505
3543
|
},
|
1506
|
-
'
|
1507
|
-
|
3544
|
+
'FocusEventInit': {
|
3545
|
+
'inheritance': 'UIEventInit',
|
1508
3546
|
'props': {
|
1509
|
-
'
|
1510
|
-
|
1511
|
-
|
1512
|
-
|
1513
|
-
|
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}}},
|
3547
|
+
'relatedTarget': {
|
3548
|
+
'specs': 4,
|
3549
|
+
},
|
3550
|
+
},
|
3551
|
+
},
|
1524
3552
|
'MouseEvent': {
|
1525
3553
|
'inheritance': 'UIEvent',
|
1526
3554
|
'props': {
|
1527
|
-
'screenX': {
|
1528
|
-
|
1529
|
-
|
1530
|
-
'
|
1531
|
-
|
1532
|
-
|
1533
|
-
'
|
1534
|
-
|
1535
|
-
|
1536
|
-
'
|
1537
|
-
|
3555
|
+
'screenX': {
|
3556
|
+
'specs': 4,
|
3557
|
+
},
|
3558
|
+
'screenY': {
|
3559
|
+
'specs': 4,
|
3560
|
+
},
|
3561
|
+
'clientX': {
|
3562
|
+
'specs': 4,
|
3563
|
+
},
|
3564
|
+
'clientY': {
|
3565
|
+
'specs': 4,
|
3566
|
+
},
|
3567
|
+
'ctrlKey': {
|
3568
|
+
'specs': 4,
|
3569
|
+
},
|
3570
|
+
'shiftKey': {
|
3571
|
+
'specs': 4,
|
3572
|
+
},
|
3573
|
+
'altKey': {
|
3574
|
+
'specs': 4,
|
3575
|
+
},
|
3576
|
+
'metaKey': {
|
3577
|
+
'specs': 4,
|
3578
|
+
},
|
3579
|
+
'button': {
|
3580
|
+
'specs': 4,
|
3581
|
+
},
|
3582
|
+
'buttons': {
|
3583
|
+
'specs': 4,
|
3584
|
+
},
|
3585
|
+
'relatedTarget': {
|
3586
|
+
'specs': 4,
|
3587
|
+
},
|
1538
3588
|
},
|
1539
3589
|
},
|
1540
3590
|
'MouseEventInit': {
|
1541
3591
|
'inheritance': 'EventModifierInit',
|
1542
3592
|
'props': {
|
1543
|
-
'screenX': {
|
1544
|
-
|
1545
|
-
|
1546
|
-
'
|
1547
|
-
|
1548
|
-
|
1549
|
-
'
|
3593
|
+
'screenX': {
|
3594
|
+
'specs': 4,
|
3595
|
+
},
|
3596
|
+
'screenY': {
|
3597
|
+
'specs': 4,
|
3598
|
+
},
|
3599
|
+
'clientX': {
|
3600
|
+
'specs': 4,
|
3601
|
+
},
|
3602
|
+
'clientY': {
|
3603
|
+
'specs': 4,
|
3604
|
+
},
|
3605
|
+
'button': {
|
3606
|
+
'specs': 4,
|
3607
|
+
},
|
3608
|
+
'buttons': {
|
3609
|
+
'specs': 4,
|
3610
|
+
},
|
3611
|
+
'relatedTarget': {
|
3612
|
+
'specs': 4,
|
3613
|
+
},
|
1550
3614
|
},
|
1551
3615
|
},
|
1552
3616
|
'EventModifierInit': {
|
1553
3617
|
'inheritance': 'UIEventInit',
|
1554
3618
|
'props': {
|
1555
|
-
'ctrlKey': {
|
1556
|
-
|
1557
|
-
|
1558
|
-
'
|
1559
|
-
|
1560
|
-
|
1561
|
-
'
|
1562
|
-
|
1563
|
-
|
1564
|
-
'
|
1565
|
-
|
1566
|
-
|
1567
|
-
'
|
1568
|
-
|
3619
|
+
'ctrlKey': {
|
3620
|
+
'specs': 4,
|
3621
|
+
},
|
3622
|
+
'shiftKey': {
|
3623
|
+
'specs': 4,
|
3624
|
+
},
|
3625
|
+
'altKey': {
|
3626
|
+
'specs': 4,
|
3627
|
+
},
|
3628
|
+
'metaKey': {
|
3629
|
+
'specs': 4,
|
3630
|
+
},
|
3631
|
+
'modifierAltGraph': {
|
3632
|
+
'specs': 4,
|
3633
|
+
},
|
3634
|
+
'modifierCapsLock': {
|
3635
|
+
'specs': 4,
|
3636
|
+
},
|
3637
|
+
'modifierFn': {
|
3638
|
+
'specs': 4,
|
3639
|
+
},
|
3640
|
+
'modifierFnLock': {
|
3641
|
+
'specs': 4,
|
3642
|
+
},
|
3643
|
+
'modifierHyper': {
|
3644
|
+
'specs': 4,
|
3645
|
+
},
|
3646
|
+
'modifierNumLock': {
|
3647
|
+
'specs': 4,
|
3648
|
+
},
|
3649
|
+
'modifierScrollLock': {
|
3650
|
+
'specs': 4,
|
3651
|
+
},
|
3652
|
+
'modifierSuper': {
|
3653
|
+
'specs': 4,
|
3654
|
+
},
|
3655
|
+
'modifierSymbol': {
|
3656
|
+
'specs': 4,
|
3657
|
+
},
|
3658
|
+
'modifierSymbolLock': {
|
3659
|
+
'specs': 4,
|
3660
|
+
},
|
1569
3661
|
},
|
1570
3662
|
},
|
1571
3663
|
'WheelEvent': {
|
1572
3664
|
'inheritance': 'MouseEvent',
|
1573
|
-
'props': {
|
3665
|
+
'props': {
|
3666
|
+
'deltaX': {
|
3667
|
+
'specs': 4,
|
3668
|
+
},
|
3669
|
+
'deltaY': {
|
3670
|
+
'specs': 4,
|
3671
|
+
},
|
3672
|
+
'deltaZ': {
|
3673
|
+
'specs': 4,
|
3674
|
+
},
|
3675
|
+
'deltaMode': {
|
3676
|
+
'specs': 4,
|
3677
|
+
},
|
3678
|
+
},
|
1574
3679
|
},
|
1575
3680
|
'WheelEventInit': {
|
1576
3681
|
'inheritance': 'MouseEventInit',
|
1577
|
-
'props': {
|
3682
|
+
'props': {
|
3683
|
+
'deltaX': {
|
3684
|
+
'specs': 4,
|
3685
|
+
},
|
3686
|
+
'deltaY': {
|
3687
|
+
'specs': 4,
|
3688
|
+
},
|
3689
|
+
'deltaZ': {
|
3690
|
+
'specs': 4,
|
3691
|
+
},
|
3692
|
+
'deltaMode': {
|
3693
|
+
'specs': 4,
|
3694
|
+
},
|
3695
|
+
},
|
1578
3696
|
},
|
1579
3697
|
'InputEvent': {
|
1580
3698
|
'inheritance': 'UIEvent',
|
1581
|
-
'props': {
|
3699
|
+
'props': {
|
3700
|
+
'data': {
|
3701
|
+
'specs': 4,
|
3702
|
+
},
|
3703
|
+
'isComposing': {
|
3704
|
+
'specs': 4,
|
3705
|
+
},
|
3706
|
+
'inputType': {
|
3707
|
+
'specs': 4,
|
3708
|
+
},
|
3709
|
+
},
|
1582
3710
|
},
|
1583
3711
|
'InputEventInit': {
|
1584
3712
|
'inheritance': 'UIEventInit',
|
1585
|
-
'props': {
|
3713
|
+
'props': {
|
3714
|
+
'data': {
|
3715
|
+
'specs': 4,
|
3716
|
+
},
|
3717
|
+
'isComposing': {
|
3718
|
+
'specs': 4,
|
3719
|
+
},
|
3720
|
+
'inputType': {
|
3721
|
+
'specs': 4,
|
3722
|
+
},
|
3723
|
+
},
|
1586
3724
|
},
|
1587
3725
|
'KeyboardEvent': {
|
1588
3726
|
'inheritance': 'UIEvent',
|
1589
3727
|
'props': {
|
1590
|
-
'key': {
|
1591
|
-
|
1592
|
-
|
1593
|
-
'
|
1594
|
-
|
1595
|
-
|
1596
|
-
'
|
1597
|
-
|
1598
|
-
|
1599
|
-
'
|
1600
|
-
|
3728
|
+
'key': {
|
3729
|
+
'specs': 4,
|
3730
|
+
},
|
3731
|
+
'code': {
|
3732
|
+
'specs': 4,
|
3733
|
+
},
|
3734
|
+
'location': {
|
3735
|
+
'specs': 4,
|
3736
|
+
},
|
3737
|
+
'ctrlKey': {
|
3738
|
+
'specs': 4,
|
3739
|
+
},
|
3740
|
+
'shiftKey': {
|
3741
|
+
'specs': 4,
|
3742
|
+
},
|
3743
|
+
'altKey': {
|
3744
|
+
'specs': 4,
|
3745
|
+
},
|
3746
|
+
'metaKey': {
|
3747
|
+
'specs': 4,
|
3748
|
+
},
|
3749
|
+
'repeat': {
|
3750
|
+
'specs': 4,
|
3751
|
+
},
|
3752
|
+
'isComposing': {
|
3753
|
+
'specs': 4,
|
3754
|
+
},
|
3755
|
+
'charCode': {
|
3756
|
+
'specs': 4,
|
3757
|
+
},
|
3758
|
+
'keyCode': {
|
3759
|
+
'specs': 4,
|
3760
|
+
},
|
1601
3761
|
},
|
1602
3762
|
},
|
1603
3763
|
'KeyboardEventInit': {
|
1604
3764
|
'inheritance': 'EventModifierInit',
|
1605
3765
|
'props': {
|
1606
|
-
'key': {
|
1607
|
-
|
1608
|
-
|
1609
|
-
'
|
1610
|
-
|
1611
|
-
|
1612
|
-
'
|
3766
|
+
'key': {
|
3767
|
+
'specs': 4,
|
3768
|
+
},
|
3769
|
+
'code': {
|
3770
|
+
'specs': 4,
|
3771
|
+
},
|
3772
|
+
'location': {
|
3773
|
+
'specs': 4,
|
3774
|
+
},
|
3775
|
+
'repeat': {
|
3776
|
+
'specs': 4,
|
3777
|
+
},
|
3778
|
+
'isComposing': {
|
3779
|
+
'specs': 4,
|
3780
|
+
},
|
3781
|
+
'charCode': {
|
3782
|
+
'specs': 4,
|
3783
|
+
},
|
3784
|
+
'keyCode': {
|
3785
|
+
'specs': 4,
|
3786
|
+
},
|
3787
|
+
},
|
3788
|
+
},
|
3789
|
+
'CompositionEvent': {
|
3790
|
+
'inheritance': 'UIEvent',
|
3791
|
+
'props': {
|
3792
|
+
'data': {
|
3793
|
+
'specs': 4,
|
3794
|
+
},
|
3795
|
+
},
|
3796
|
+
},
|
3797
|
+
'CompositionEventInit': {
|
3798
|
+
'inheritance': 'UIEventInit',
|
3799
|
+
'props': {
|
3800
|
+
'data': {
|
3801
|
+
'specs': 4,
|
3802
|
+
},
|
1613
3803
|
},
|
1614
3804
|
},
|
1615
|
-
'CompositionEvent': {'inheritance': 'UIEvent', 'props': {'data': {'specs': 4}}},
|
1616
|
-
'CompositionEventInit': {'inheritance': 'UIEventInit', 'props': {'data': {'specs': 4}}},
|
1617
3805
|
'MutationEvent': {
|
1618
3806
|
'inheritance': 'Event',
|
1619
3807
|
'props': {
|
1620
|
-
'relatedNode': {
|
1621
|
-
|
1622
|
-
|
1623
|
-
'
|
1624
|
-
|
3808
|
+
'relatedNode': {
|
3809
|
+
'specs': 4,
|
3810
|
+
},
|
3811
|
+
'prevValue': {
|
3812
|
+
'specs': 4,
|
3813
|
+
},
|
3814
|
+
'newValue': {
|
3815
|
+
'specs': 4,
|
3816
|
+
},
|
3817
|
+
'attrName': {
|
3818
|
+
'specs': 4,
|
3819
|
+
},
|
3820
|
+
'attrChange': {
|
3821
|
+
'specs': 4,
|
3822
|
+
},
|
1625
3823
|
},
|
1626
3824
|
},
|
1627
3825
|
'PointerEventInit': {
|
1628
3826
|
'inheritance': 'MouseEventInit',
|
1629
3827
|
'props': {
|
1630
|
-
'pointerId': {
|
1631
|
-
|
1632
|
-
|
1633
|
-
'
|
1634
|
-
|
1635
|
-
|
1636
|
-
'
|
1637
|
-
|
1638
|
-
|
1639
|
-
'
|
1640
|
-
|
1641
|
-
|
1642
|
-
'
|
1643
|
-
|
3828
|
+
'pointerId': {
|
3829
|
+
'specs': 8,
|
3830
|
+
},
|
3831
|
+
'width': {
|
3832
|
+
'specs': 8,
|
3833
|
+
},
|
3834
|
+
'height': {
|
3835
|
+
'specs': 8,
|
3836
|
+
},
|
3837
|
+
'pressure': {
|
3838
|
+
'specs': 8,
|
3839
|
+
},
|
3840
|
+
'tangentialPressure': {
|
3841
|
+
'specs': 8,
|
3842
|
+
},
|
3843
|
+
'tiltX': {
|
3844
|
+
'specs': 8,
|
3845
|
+
},
|
3846
|
+
'tiltY': {
|
3847
|
+
'specs': 8,
|
3848
|
+
},
|
3849
|
+
'twist': {
|
3850
|
+
'specs': 8,
|
3851
|
+
},
|
3852
|
+
'altitudeAngle': {
|
3853
|
+
'specs': 8,
|
3854
|
+
},
|
3855
|
+
'azimuthAngle': {
|
3856
|
+
'specs': 8,
|
3857
|
+
},
|
3858
|
+
'pointerType': {
|
3859
|
+
'specs': 8,
|
3860
|
+
},
|
3861
|
+
'isPrimary': {
|
3862
|
+
'specs': 8,
|
3863
|
+
},
|
3864
|
+
'coalescedEvents': {
|
3865
|
+
'specs': 8,
|
3866
|
+
},
|
3867
|
+
'predictedEvents': {
|
3868
|
+
'specs': 8,
|
3869
|
+
},
|
1644
3870
|
},
|
1645
3871
|
},
|
1646
3872
|
'PointerEvent': {
|
1647
3873
|
'inheritance': 'MouseEvent',
|
1648
3874
|
'props': {
|
1649
|
-
'pointerId': {
|
1650
|
-
|
1651
|
-
|
1652
|
-
'
|
1653
|
-
|
1654
|
-
|
1655
|
-
'
|
1656
|
-
|
1657
|
-
|
1658
|
-
'
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
3875
|
+
'pointerId': {
|
3876
|
+
'specs': 8,
|
3877
|
+
},
|
3878
|
+
'width': {
|
3879
|
+
'specs': 8,
|
3880
|
+
},
|
3881
|
+
'height': {
|
3882
|
+
'specs': 8,
|
3883
|
+
},
|
3884
|
+
'pressure': {
|
3885
|
+
'specs': 8,
|
3886
|
+
},
|
3887
|
+
'tangentialPressure': {
|
3888
|
+
'specs': 8,
|
3889
|
+
},
|
3890
|
+
'tiltX': {
|
3891
|
+
'specs': 8,
|
3892
|
+
},
|
3893
|
+
'tiltY': {
|
3894
|
+
'specs': 8,
|
3895
|
+
},
|
3896
|
+
'twist': {
|
3897
|
+
'specs': 8,
|
3898
|
+
},
|
3899
|
+
'altitudeAngle': {
|
3900
|
+
'specs': 8,
|
3901
|
+
},
|
3902
|
+
'azimuthAngle': {
|
3903
|
+
'specs': 8,
|
3904
|
+
},
|
3905
|
+
'pointerType': {
|
3906
|
+
'specs': 8,
|
3907
|
+
},
|
3908
|
+
'isPrimary': {
|
3909
|
+
'specs': 8,
|
3910
|
+
},
|
3911
|
+
},
|
3912
|
+
},
|
3913
|
+
'MediaList': {
|
3914
|
+
'props': {
|
3915
|
+
'mediaText': {
|
3916
|
+
'specs': 16,
|
3917
|
+
},
|
3918
|
+
'length': {
|
3919
|
+
'specs': 16,
|
3920
|
+
},
|
3921
|
+
},
|
3922
|
+
},
|
1664
3923
|
'StyleSheet': {
|
1665
3924
|
'props': {
|
1666
|
-
'type': {
|
1667
|
-
|
1668
|
-
|
1669
|
-
'
|
1670
|
-
|
1671
|
-
|
1672
|
-
'
|
3925
|
+
'type': {
|
3926
|
+
'specs': 16,
|
3927
|
+
},
|
3928
|
+
'href': {
|
3929
|
+
'specs': 16,
|
3930
|
+
},
|
3931
|
+
'ownerNode': {
|
3932
|
+
'specs': 16,
|
3933
|
+
},
|
3934
|
+
'parentStyleSheet': {
|
3935
|
+
'specs': 16,
|
3936
|
+
},
|
3937
|
+
'title': {
|
3938
|
+
'specs': 16,
|
3939
|
+
'global': true,
|
3940
|
+
},
|
3941
|
+
'media': {
|
3942
|
+
'specs': 16,
|
3943
|
+
},
|
3944
|
+
'disabled': {
|
3945
|
+
'specs': 16,
|
3946
|
+
},
|
1673
3947
|
},
|
1674
3948
|
},
|
1675
3949
|
'CSSStyleSheet': {
|
1676
3950
|
'inheritance': 'StyleSheet',
|
1677
|
-
'props': {
|
3951
|
+
'props': {
|
3952
|
+
'ownerRule': {
|
3953
|
+
'specs': 16,
|
3954
|
+
},
|
3955
|
+
'cssRules': {
|
3956
|
+
'specs': 16,
|
3957
|
+
},
|
3958
|
+
'rules': {
|
3959
|
+
'specs': 16,
|
3960
|
+
},
|
3961
|
+
},
|
3962
|
+
},
|
3963
|
+
'CSSStyleSheetInit': {
|
3964
|
+
'props': {
|
3965
|
+
'baseURL': {
|
3966
|
+
'specs': 16,
|
3967
|
+
},
|
3968
|
+
'media': {
|
3969
|
+
'specs': 16,
|
3970
|
+
},
|
3971
|
+
'disabled': {
|
3972
|
+
'specs': 16,
|
3973
|
+
},
|
3974
|
+
},
|
3975
|
+
},
|
3976
|
+
'StyleSheetList': {
|
3977
|
+
'props': {
|
3978
|
+
'length': {
|
3979
|
+
'specs': 16,
|
3980
|
+
},
|
3981
|
+
},
|
3982
|
+
},
|
3983
|
+
'LinkStyle': {
|
3984
|
+
'props': {
|
3985
|
+
'sheet': {
|
3986
|
+
'specs': 16,
|
3987
|
+
},
|
3988
|
+
},
|
3989
|
+
},
|
3990
|
+
'CSSRuleList': {
|
3991
|
+
'props': {
|
3992
|
+
'length': {
|
3993
|
+
'specs': 16,
|
3994
|
+
},
|
3995
|
+
},
|
1678
3996
|
},
|
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
3997
|
'CSSRule': {
|
1684
3998
|
'props': {
|
1685
|
-
'cssText': {
|
1686
|
-
|
1687
|
-
|
1688
|
-
'
|
3999
|
+
'cssText': {
|
4000
|
+
'specs': 16,
|
4001
|
+
},
|
4002
|
+
'parentRule': {
|
4003
|
+
'specs': 16,
|
4004
|
+
},
|
4005
|
+
'parentStyleSheet': {
|
4006
|
+
'specs': 16,
|
4007
|
+
},
|
4008
|
+
'type': {
|
4009
|
+
'specs': 16,
|
4010
|
+
},
|
4011
|
+
},
|
4012
|
+
},
|
4013
|
+
'CSSStyleRule': {
|
4014
|
+
'inheritance': 'CSSRule',
|
4015
|
+
'props': {
|
4016
|
+
'selectorText': {
|
4017
|
+
'specs': 16,
|
4018
|
+
},
|
4019
|
+
'style': {
|
4020
|
+
'specs': 16,
|
4021
|
+
'global': true,
|
4022
|
+
},
|
4023
|
+
},
|
4024
|
+
},
|
4025
|
+
'CSSImportRule': {
|
4026
|
+
'inheritance': 'CSSRule',
|
4027
|
+
'props': {
|
4028
|
+
'href': {
|
4029
|
+
'specs': 16,
|
4030
|
+
},
|
4031
|
+
'media': {
|
4032
|
+
'specs': 16,
|
4033
|
+
},
|
4034
|
+
'styleSheet': {
|
4035
|
+
'specs': 16,
|
4036
|
+
},
|
4037
|
+
},
|
4038
|
+
},
|
4039
|
+
'CSSGroupingRule': {
|
4040
|
+
'inheritance': 'CSSRule',
|
4041
|
+
'props': {
|
4042
|
+
'cssRules': {
|
4043
|
+
'specs': 16,
|
4044
|
+
},
|
1689
4045
|
},
|
1690
4046
|
},
|
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
4047
|
'CSSPageRule': {
|
1697
4048
|
'inheritance': 'CSSGroupingRule',
|
1698
|
-
'props': {
|
4049
|
+
'props': {
|
4050
|
+
'selectorText': {
|
4051
|
+
'specs': 16,
|
4052
|
+
},
|
4053
|
+
'style': {
|
4054
|
+
'specs': 16,
|
4055
|
+
'global': true,
|
4056
|
+
},
|
4057
|
+
},
|
4058
|
+
},
|
4059
|
+
'CSSMarginRule': {
|
4060
|
+
'inheritance': 'CSSRule',
|
4061
|
+
'props': {
|
4062
|
+
'name': {
|
4063
|
+
'specs': 16,
|
4064
|
+
},
|
4065
|
+
'style': {
|
4066
|
+
'specs': 16,
|
4067
|
+
'global': true,
|
4068
|
+
},
|
4069
|
+
},
|
4070
|
+
},
|
4071
|
+
'CSSNamespaceRule': {
|
4072
|
+
'inheritance': 'CSSRule',
|
4073
|
+
'props': {
|
4074
|
+
'namespaceURI': {
|
4075
|
+
'specs': 16,
|
4076
|
+
},
|
4077
|
+
'prefix': {
|
4078
|
+
'specs': 16,
|
4079
|
+
},
|
4080
|
+
},
|
1699
4081
|
},
|
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
4082
|
'CSSStyleDeclaration': {
|
1703
|
-
'props':
|
1704
|
-
|
4083
|
+
'props': {
|
4084
|
+
'cssText': {
|
4085
|
+
'specs': 16,
|
4086
|
+
},
|
4087
|
+
'length': {
|
4088
|
+
'specs': 16,
|
4089
|
+
},
|
4090
|
+
'parentRule': {
|
4091
|
+
'specs': 16,
|
4092
|
+
},
|
4093
|
+
'cssFloat': {
|
4094
|
+
'specs': 16,
|
4095
|
+
},
|
4096
|
+
},
|
4097
|
+
},
|
4098
|
+
'ElementCSSInlineStyle': {
|
4099
|
+
'props': {
|
4100
|
+
'style': {
|
4101
|
+
'specs': 16,
|
4102
|
+
'global': true,
|
4103
|
+
},
|
4104
|
+
},
|
4105
|
+
},
|
4106
|
+
'SVGElement': {
|
4107
|
+
'includes': [
|
4108
|
+
'ElementCSSInlineStyle',
|
4109
|
+
],
|
4110
|
+
},
|
4111
|
+
'MathMLElement': {
|
4112
|
+
'includes': [
|
4113
|
+
'ElementCSSInlineStyle',
|
4114
|
+
],
|
1705
4115
|
},
|
1706
|
-
'ElementCSSInlineStyle': {'props': {'style': {'global': true, 'specs': 16}}},
|
1707
|
-
'SVGElement': {'includes': ['ElementCSSInlineStyle']},
|
1708
|
-
'MathMLElement': {'includes': ['ElementCSSInlineStyle']},
|
1709
4116
|
'ARIAMixin': {
|
1710
4117
|
'props': {
|
1711
|
-
'role': {
|
1712
|
-
|
1713
|
-
|
1714
|
-
'
|
1715
|
-
|
1716
|
-
|
1717
|
-
'
|
1718
|
-
|
1719
|
-
|
1720
|
-
'
|
1721
|
-
|
1722
|
-
|
1723
|
-
'
|
1724
|
-
|
1725
|
-
|
1726
|
-
'
|
1727
|
-
|
1728
|
-
|
1729
|
-
'
|
1730
|
-
|
1731
|
-
|
1732
|
-
'
|
1733
|
-
|
1734
|
-
|
1735
|
-
'
|
1736
|
-
|
1737
|
-
|
1738
|
-
'
|
1739
|
-
|
1740
|
-
|
1741
|
-
'
|
1742
|
-
|
1743
|
-
|
1744
|
-
'
|
1745
|
-
|
1746
|
-
|
1747
|
-
'
|
1748
|
-
|
1749
|
-
|
1750
|
-
'
|
1751
|
-
|
4118
|
+
'role': {
|
4119
|
+
'specs': 32,
|
4120
|
+
},
|
4121
|
+
'ariaAtomic': {
|
4122
|
+
'specs': 32,
|
4123
|
+
},
|
4124
|
+
'ariaAutoComplete': {
|
4125
|
+
'specs': 32,
|
4126
|
+
},
|
4127
|
+
'ariaBusy': {
|
4128
|
+
'specs': 32,
|
4129
|
+
},
|
4130
|
+
'ariaChecked': {
|
4131
|
+
'specs': 32,
|
4132
|
+
},
|
4133
|
+
'ariaColCount': {
|
4134
|
+
'specs': 32,
|
4135
|
+
},
|
4136
|
+
'ariaColIndex': {
|
4137
|
+
'specs': 32,
|
4138
|
+
},
|
4139
|
+
'ariaColIndexText': {
|
4140
|
+
'specs': 32,
|
4141
|
+
},
|
4142
|
+
'ariaColSpan': {
|
4143
|
+
'specs': 32,
|
4144
|
+
},
|
4145
|
+
'ariaCurrent': {
|
4146
|
+
'specs': 32,
|
4147
|
+
},
|
4148
|
+
'ariaDescription': {
|
4149
|
+
'specs': 32,
|
4150
|
+
},
|
4151
|
+
'ariaDisabled': {
|
4152
|
+
'specs': 32,
|
4153
|
+
},
|
4154
|
+
'ariaExpanded': {
|
4155
|
+
'specs': 32,
|
4156
|
+
},
|
4157
|
+
'ariaHasPopup': {
|
4158
|
+
'specs': 32,
|
4159
|
+
},
|
4160
|
+
'ariaHidden': {
|
4161
|
+
'specs': 32,
|
4162
|
+
},
|
4163
|
+
'ariaInvalid': {
|
4164
|
+
'specs': 32,
|
4165
|
+
},
|
4166
|
+
'ariaKeyShortcuts': {
|
4167
|
+
'specs': 32,
|
4168
|
+
},
|
4169
|
+
'ariaLabel': {
|
4170
|
+
'specs': 32,
|
4171
|
+
},
|
4172
|
+
'ariaLevel': {
|
4173
|
+
'specs': 32,
|
4174
|
+
},
|
4175
|
+
'ariaLive': {
|
4176
|
+
'specs': 32,
|
4177
|
+
},
|
4178
|
+
'ariaModal': {
|
4179
|
+
'specs': 32,
|
4180
|
+
},
|
4181
|
+
'ariaMultiLine': {
|
4182
|
+
'specs': 32,
|
4183
|
+
},
|
4184
|
+
'ariaMultiSelectable': {
|
4185
|
+
'specs': 32,
|
4186
|
+
},
|
4187
|
+
'ariaOrientation': {
|
4188
|
+
'specs': 32,
|
4189
|
+
},
|
4190
|
+
'ariaPlaceholder': {
|
4191
|
+
'specs': 32,
|
4192
|
+
},
|
4193
|
+
'ariaPosInSet': {
|
4194
|
+
'specs': 32,
|
4195
|
+
},
|
4196
|
+
'ariaPressed': {
|
4197
|
+
'specs': 32,
|
4198
|
+
},
|
4199
|
+
'ariaReadOnly': {
|
4200
|
+
'specs': 32,
|
4201
|
+
},
|
4202
|
+
'ariaRequired': {
|
4203
|
+
'specs': 32,
|
4204
|
+
},
|
4205
|
+
'ariaRoleDescription': {
|
4206
|
+
'specs': 32,
|
4207
|
+
},
|
4208
|
+
'ariaRowCount': {
|
4209
|
+
'specs': 32,
|
4210
|
+
},
|
4211
|
+
'ariaRowIndex': {
|
4212
|
+
'specs': 32,
|
4213
|
+
},
|
4214
|
+
'ariaRowIndexText': {
|
4215
|
+
'specs': 32,
|
4216
|
+
},
|
4217
|
+
'ariaRowSpan': {
|
4218
|
+
'specs': 32,
|
4219
|
+
},
|
4220
|
+
'ariaSelected': {
|
4221
|
+
'specs': 32,
|
4222
|
+
},
|
4223
|
+
'ariaSetSize': {
|
4224
|
+
'specs': 32,
|
4225
|
+
},
|
4226
|
+
'ariaSort': {
|
4227
|
+
'specs': 32,
|
4228
|
+
},
|
4229
|
+
'ariaValueMax': {
|
4230
|
+
'specs': 32,
|
4231
|
+
},
|
4232
|
+
'ariaValueMin': {
|
4233
|
+
'specs': 32,
|
4234
|
+
},
|
4235
|
+
'ariaValueNow': {
|
4236
|
+
'specs': 32,
|
4237
|
+
},
|
4238
|
+
'ariaValueText': {
|
4239
|
+
'specs': 32,
|
4240
|
+
},
|
1752
4241
|
},
|
1753
4242
|
},
|
1754
4243
|
};
|