@memlab/heap-analysis 1.0.39 → 2.0.0
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/dist/plugins/CollectionUnboundGrowthAnalysis.js +1 -1
- package/dist/plugins/GlobalVariableAnalysis/BuiltInGlobalVariables.d.ts.map +1 -1
- package/dist/plugins/GlobalVariableAnalysis/BuiltInGlobalVariables.js +970 -955
- package/dist/plugins/ObjectUnboundGrowthAnalysis.js +1 -1
- package/dist/plugins/StringAnalysis.d.ts.map +1 -1
- package/dist/plugins/StringAnalysis.js +29 -16
- package/package.json +7 -7
|
@@ -11,818 +11,358 @@
|
|
|
11
11
|
*/
|
|
12
12
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
13
|
exports.default = new Set([
|
|
14
|
-
'
|
|
15
|
-
'
|
|
16
|
-
'
|
|
17
|
-
'
|
|
18
|
-
'
|
|
19
|
-
'
|
|
20
|
-
'
|
|
21
|
-
'
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'Symbol',
|
|
26
|
-
'Date',
|
|
27
|
-
'Promise',
|
|
28
|
-
'RegExp',
|
|
29
|
-
'Error',
|
|
30
|
-
'AggregateError',
|
|
31
|
-
'EvalError',
|
|
32
|
-
'RangeError',
|
|
33
|
-
'ReferenceError',
|
|
34
|
-
'SyntaxError',
|
|
35
|
-
'TypeError',
|
|
36
|
-
'URIError',
|
|
37
|
-
'globalThis',
|
|
38
|
-
'JSON',
|
|
39
|
-
'Math',
|
|
40
|
-
'console',
|
|
41
|
-
'Intl',
|
|
42
|
-
'ArrayBuffer',
|
|
43
|
-
'Uint8Array',
|
|
44
|
-
'Int8Array',
|
|
45
|
-
'Uint16Array',
|
|
46
|
-
'Int16Array',
|
|
47
|
-
'Uint32Array',
|
|
48
|
-
'Int32Array',
|
|
49
|
-
'Float32Array',
|
|
50
|
-
'Float64Array',
|
|
51
|
-
'Uint8ClampedArray',
|
|
52
|
-
'BigUint64Array',
|
|
53
|
-
'BigInt64Array',
|
|
54
|
-
'DataView',
|
|
55
|
-
'Map',
|
|
56
|
-
'BigInt',
|
|
57
|
-
'Set',
|
|
58
|
-
'WeakMap',
|
|
59
|
-
'WeakSet',
|
|
60
|
-
'Proxy',
|
|
61
|
-
'Reflect',
|
|
62
|
-
'FinalizationRegistry',
|
|
63
|
-
'WeakRef',
|
|
64
|
-
'decodeURI',
|
|
65
|
-
'decodeURIComponent',
|
|
66
|
-
'encodeURI',
|
|
67
|
-
'encodeURIComponent',
|
|
68
|
-
'escape',
|
|
69
|
-
'unescape',
|
|
70
|
-
'eval',
|
|
71
|
-
'isFinite',
|
|
72
|
-
'isNaN',
|
|
73
|
-
'Option',
|
|
74
|
-
'Image',
|
|
75
|
-
'Audio',
|
|
76
|
-
'webkitURL',
|
|
77
|
-
'webkitRTCPeerConnection',
|
|
78
|
-
'webkitMediaStream',
|
|
79
|
-
'WebKitMutationObserver',
|
|
80
|
-
'WebKitCSSMatrix',
|
|
81
|
-
'XPathResult',
|
|
82
|
-
'XPathExpression',
|
|
83
|
-
'XPathEvaluator',
|
|
84
|
-
'XMLSerializer',
|
|
85
|
-
'XMLHttpRequestUpload',
|
|
86
|
-
'XMLHttpRequestEventTarget',
|
|
87
|
-
'XMLHttpRequest',
|
|
88
|
-
'XMLDocument',
|
|
89
|
-
'WritableStreamDefaultWriter',
|
|
90
|
-
'WritableStreamDefaultController',
|
|
91
|
-
'WritableStream',
|
|
92
|
-
'Worker',
|
|
93
|
-
'Window',
|
|
94
|
-
'WheelEvent',
|
|
95
|
-
'WebSocket',
|
|
96
|
-
'WebGLVertexArrayObject',
|
|
97
|
-
'WebGLUniformLocation',
|
|
98
|
-
'WebGLTransformFeedback',
|
|
99
|
-
'WebGLTexture',
|
|
100
|
-
'WebGLSync',
|
|
101
|
-
'WebGLShaderPrecisionFormat',
|
|
102
|
-
'WebGLShader',
|
|
103
|
-
'WebGLSampler',
|
|
104
|
-
'WebGLRenderingContext',
|
|
105
|
-
'WebGLRenderbuffer',
|
|
106
|
-
'WebGLQuery',
|
|
107
|
-
'WebGLProgram',
|
|
108
|
-
'WebGLFramebuffer',
|
|
109
|
-
'WebGLContextEvent',
|
|
110
|
-
'WebGLBuffer',
|
|
111
|
-
'WebGLActiveInfo',
|
|
112
|
-
'WebGL2RenderingContext',
|
|
113
|
-
'WaveShaperNode',
|
|
114
|
-
'VisualViewport',
|
|
115
|
-
'ValidityState',
|
|
116
|
-
'VTTCue',
|
|
117
|
-
'UserActivation',
|
|
118
|
-
'URLSearchParams',
|
|
119
|
-
'URL',
|
|
120
|
-
'UIEvent',
|
|
121
|
-
'TreeWalker',
|
|
122
|
-
'TransitionEvent',
|
|
123
|
-
'TransformStream',
|
|
124
|
-
'TrackEvent',
|
|
125
|
-
'TouchList',
|
|
126
|
-
'TouchEvent',
|
|
127
|
-
'Touch',
|
|
128
|
-
'TimeRanges',
|
|
129
|
-
'TextTrackList',
|
|
130
|
-
'TextTrackCueList',
|
|
131
|
-
'TextTrackCue',
|
|
132
|
-
'TextTrack',
|
|
133
|
-
'TextMetrics',
|
|
134
|
-
'TextEvent',
|
|
135
|
-
'TextEncoderStream',
|
|
136
|
-
'TextEncoder',
|
|
137
|
-
'TextDecoderStream',
|
|
138
|
-
'TextDecoder',
|
|
139
|
-
'Text',
|
|
140
|
-
'TaskAttributionTiming',
|
|
141
|
-
'SyncManager',
|
|
142
|
-
'SubmitEvent',
|
|
143
|
-
'StyleSheetList',
|
|
144
|
-
'StyleSheet',
|
|
145
|
-
'StylePropertyMapReadOnly',
|
|
146
|
-
'StylePropertyMap',
|
|
147
|
-
'StorageEvent',
|
|
148
|
-
'Storage',
|
|
149
|
-
'StereoPannerNode',
|
|
150
|
-
'StaticRange',
|
|
151
|
-
'ShadowRoot',
|
|
152
|
-
'Selection',
|
|
153
|
-
'SecurityPolicyViolationEvent',
|
|
154
|
-
'ScriptProcessorNode',
|
|
155
|
-
'ScreenOrientation',
|
|
156
|
-
'Screen',
|
|
157
|
-
'SVGViewElement',
|
|
158
|
-
'SVGUseElement',
|
|
159
|
-
'SVGUnitTypes',
|
|
160
|
-
'SVGTransformList',
|
|
161
|
-
'SVGTransform',
|
|
162
|
-
'SVGTitleElement',
|
|
163
|
-
'SVGTextPositioningElement',
|
|
164
|
-
'SVGTextPathElement',
|
|
165
|
-
'SVGTextElement',
|
|
166
|
-
'SVGTextContentElement',
|
|
167
|
-
'SVGTSpanElement',
|
|
168
|
-
'SVGSymbolElement',
|
|
169
|
-
'SVGSwitchElement',
|
|
170
|
-
'SVGStyleElement',
|
|
171
|
-
'SVGStringList',
|
|
172
|
-
'SVGStopElement',
|
|
173
|
-
'SVGSetElement',
|
|
174
|
-
'SVGScriptElement',
|
|
175
|
-
'SVGSVGElement',
|
|
176
|
-
'SVGRectElement',
|
|
177
|
-
'SVGRect',
|
|
178
|
-
'SVGRadialGradientElement',
|
|
179
|
-
'SVGPreserveAspectRatio',
|
|
180
|
-
'SVGPolylineElement',
|
|
181
|
-
'SVGPolygonElement',
|
|
182
|
-
'SVGPointList',
|
|
183
|
-
'SVGPoint',
|
|
184
|
-
'SVGPatternElement',
|
|
185
|
-
'SVGPathElement',
|
|
186
|
-
'SVGNumberList',
|
|
187
|
-
'SVGNumber',
|
|
188
|
-
'SVGMetadataElement',
|
|
189
|
-
'SVGMatrix',
|
|
190
|
-
'SVGMaskElement',
|
|
191
|
-
'SVGMarkerElement',
|
|
192
|
-
'SVGMPathElement',
|
|
193
|
-
'SVGLinearGradientElement',
|
|
194
|
-
'SVGLineElement',
|
|
195
|
-
'SVGLengthList',
|
|
196
|
-
'SVGLength',
|
|
197
|
-
'SVGImageElement',
|
|
198
|
-
'SVGGraphicsElement',
|
|
199
|
-
'SVGGradientElement',
|
|
200
|
-
'SVGGeometryElement',
|
|
201
|
-
'SVGGElement',
|
|
202
|
-
'SVGForeignObjectElement',
|
|
203
|
-
'SVGFilterElement',
|
|
204
|
-
'SVGFETurbulenceElement',
|
|
205
|
-
'SVGFETileElement',
|
|
206
|
-
'SVGFESpotLightElement',
|
|
207
|
-
'SVGFESpecularLightingElement',
|
|
208
|
-
'SVGFEPointLightElement',
|
|
209
|
-
'SVGFEOffsetElement',
|
|
210
|
-
'SVGFEMorphologyElement',
|
|
211
|
-
'SVGFEMergeNodeElement',
|
|
212
|
-
'SVGFEMergeElement',
|
|
213
|
-
'SVGFEImageElement',
|
|
214
|
-
'SVGFEGaussianBlurElement',
|
|
215
|
-
'SVGFEFuncRElement',
|
|
216
|
-
'SVGFEFuncGElement',
|
|
217
|
-
'SVGFEFuncBElement',
|
|
218
|
-
'SVGFEFuncAElement',
|
|
219
|
-
'SVGFEFloodElement',
|
|
220
|
-
'SVGFEDropShadowElement',
|
|
221
|
-
'SVGFEDistantLightElement',
|
|
222
|
-
'SVGFEDisplacementMapElement',
|
|
223
|
-
'SVGFEDiffuseLightingElement',
|
|
224
|
-
'SVGFEConvolveMatrixElement',
|
|
225
|
-
'SVGFECompositeElement',
|
|
226
|
-
'SVGFEComponentTransferElement',
|
|
227
|
-
'SVGFEColorMatrixElement',
|
|
228
|
-
'SVGFEBlendElement',
|
|
229
|
-
'SVGEllipseElement',
|
|
230
|
-
'SVGElement',
|
|
231
|
-
'SVGDescElement',
|
|
232
|
-
'SVGDefsElement',
|
|
233
|
-
'SVGComponentTransferFunctionElement',
|
|
234
|
-
'SVGClipPathElement',
|
|
235
|
-
'SVGCircleElement',
|
|
236
|
-
'SVGAnimationElement',
|
|
237
|
-
'SVGAnimatedTransformList',
|
|
238
|
-
'SVGAnimatedString',
|
|
239
|
-
'SVGAnimatedRect',
|
|
240
|
-
'SVGAnimatedPreserveAspectRatio',
|
|
241
|
-
'SVGAnimatedNumberList',
|
|
242
|
-
'SVGAnimatedNumber',
|
|
243
|
-
'SVGAnimatedLengthList',
|
|
244
|
-
'SVGAnimatedLength',
|
|
245
|
-
'SVGAnimatedInteger',
|
|
246
|
-
'SVGAnimatedEnumeration',
|
|
247
|
-
'SVGAnimatedBoolean',
|
|
248
|
-
'SVGAnimatedAngle',
|
|
249
|
-
'SVGAnimateTransformElement',
|
|
250
|
-
'SVGAnimateMotionElement',
|
|
251
|
-
'SVGAnimateElement',
|
|
252
|
-
'SVGAngle',
|
|
253
|
-
'SVGAElement',
|
|
254
|
-
'Response',
|
|
255
|
-
'ResizeObserverSize',
|
|
256
|
-
'ResizeObserverEntry',
|
|
257
|
-
'ResizeObserver',
|
|
258
|
-
'Request',
|
|
259
|
-
'ReportingObserver',
|
|
260
|
-
'ReadableStreamDefaultReader',
|
|
261
|
-
'ReadableStreamDefaultController',
|
|
262
|
-
'ReadableStreamBYOBRequest',
|
|
263
|
-
'ReadableStreamBYOBReader',
|
|
264
|
-
'ReadableStream',
|
|
265
|
-
'ReadableByteStreamController',
|
|
266
|
-
'Range',
|
|
267
|
-
'RadioNodeList',
|
|
268
|
-
'RTCTrackEvent',
|
|
269
|
-
'RTCStatsReport',
|
|
270
|
-
'RTCSessionDescription',
|
|
271
|
-
'RTCSctpTransport',
|
|
272
|
-
'RTCRtpTransceiver',
|
|
273
|
-
'RTCRtpSender',
|
|
274
|
-
'RTCRtpReceiver',
|
|
275
|
-
'RTCPeerConnectionIceEvent',
|
|
276
|
-
'RTCPeerConnectionIceErrorEvent',
|
|
277
|
-
'RTCPeerConnection',
|
|
278
|
-
'RTCIceCandidate',
|
|
279
|
-
'RTCErrorEvent',
|
|
280
|
-
'RTCError',
|
|
281
|
-
'RTCEncodedVideoFrame',
|
|
282
|
-
'RTCEncodedAudioFrame',
|
|
283
|
-
'RTCDtlsTransport',
|
|
284
|
-
'RTCDataChannelEvent',
|
|
285
|
-
'RTCDataChannel',
|
|
286
|
-
'RTCDTMFToneChangeEvent',
|
|
287
|
-
'RTCDTMFSender',
|
|
288
|
-
'RTCCertificate',
|
|
289
|
-
'PromiseRejectionEvent',
|
|
290
|
-
'ProgressEvent',
|
|
291
|
-
'ProcessingInstruction',
|
|
292
|
-
'PopStateEvent',
|
|
293
|
-
'PointerEvent',
|
|
294
|
-
'PluginArray',
|
|
295
|
-
'Plugin',
|
|
296
|
-
'PeriodicWave',
|
|
297
|
-
'PerformanceTiming',
|
|
298
|
-
'PerformanceServerTiming',
|
|
299
|
-
'PerformanceResourceTiming',
|
|
300
|
-
'PerformancePaintTiming',
|
|
301
|
-
'PerformanceObserverEntryList',
|
|
302
|
-
'PerformanceObserver',
|
|
303
|
-
'PerformanceNavigationTiming',
|
|
304
|
-
'PerformanceNavigation',
|
|
305
|
-
'PerformanceMeasure',
|
|
306
|
-
'PerformanceMark',
|
|
307
|
-
'PerformanceLongTaskTiming',
|
|
308
|
-
'PerformanceEventTiming',
|
|
309
|
-
'PerformanceEntry',
|
|
310
|
-
'PerformanceElementTiming',
|
|
311
|
-
'Performance',
|
|
312
|
-
'Path2D',
|
|
313
|
-
'PannerNode',
|
|
314
|
-
'PageTransitionEvent',
|
|
315
|
-
'OverconstrainedError',
|
|
316
|
-
'OscillatorNode',
|
|
317
|
-
'OffscreenCanvasRenderingContext2D',
|
|
318
|
-
'OffscreenCanvas',
|
|
319
|
-
'OfflineAudioContext',
|
|
320
|
-
'OfflineAudioCompletionEvent',
|
|
321
|
-
'NodeList',
|
|
322
|
-
'NodeIterator',
|
|
323
|
-
'NodeFilter',
|
|
324
|
-
'Node',
|
|
325
|
-
'NetworkInformation',
|
|
326
|
-
'Navigator',
|
|
327
|
-
'NamedNodeMap',
|
|
328
|
-
'MutationRecord',
|
|
329
|
-
'MutationObserver',
|
|
330
|
-
'MutationEvent',
|
|
331
|
-
'MouseEvent',
|
|
332
|
-
'MimeTypeArray',
|
|
333
|
-
'MimeType',
|
|
334
|
-
'MessagePort',
|
|
335
|
-
'MessageEvent',
|
|
336
|
-
'MessageChannel',
|
|
337
|
-
'MediaStreamTrackEvent',
|
|
338
|
-
'MediaStreamTrack',
|
|
339
|
-
'MediaStreamEvent',
|
|
340
|
-
'MediaStreamAudioSourceNode',
|
|
341
|
-
'MediaStreamAudioDestinationNode',
|
|
342
|
-
'MediaStream',
|
|
343
|
-
'MediaRecorder',
|
|
344
|
-
'MediaQueryListEvent',
|
|
345
|
-
'MediaQueryList',
|
|
346
|
-
'MediaList',
|
|
347
|
-
'MediaError',
|
|
348
|
-
'MediaEncryptedEvent',
|
|
349
|
-
'MediaElementAudioSourceNode',
|
|
350
|
-
'MediaCapabilities',
|
|
351
|
-
'Location',
|
|
352
|
-
'LayoutShiftAttribution',
|
|
353
|
-
'LayoutShift',
|
|
354
|
-
'LargestContentfulPaint',
|
|
355
|
-
'KeyframeEffect',
|
|
356
|
-
'KeyboardEvent',
|
|
357
|
-
'IntersectionObserverEntry',
|
|
358
|
-
'IntersectionObserver',
|
|
359
|
-
'InputEvent',
|
|
360
|
-
'InputDeviceInfo',
|
|
361
|
-
'InputDeviceCapabilities',
|
|
362
|
-
'ImageData',
|
|
363
|
-
'ImageCapture',
|
|
364
|
-
'ImageBitmapRenderingContext',
|
|
365
|
-
'ImageBitmap',
|
|
366
|
-
'IdleDeadline',
|
|
367
|
-
'IIRFilterNode',
|
|
368
|
-
'IDBVersionChangeEvent',
|
|
369
|
-
'IDBTransaction',
|
|
370
|
-
'IDBRequest',
|
|
371
|
-
'IDBOpenDBRequest',
|
|
372
|
-
'IDBObjectStore',
|
|
373
|
-
'IDBKeyRange',
|
|
374
|
-
'IDBIndex',
|
|
375
|
-
'IDBFactory',
|
|
376
|
-
'IDBDatabase',
|
|
377
|
-
'IDBCursorWithValue',
|
|
378
|
-
'IDBCursor',
|
|
379
|
-
'History',
|
|
380
|
-
'Headers',
|
|
381
|
-
'HashChangeEvent',
|
|
382
|
-
'HTMLVideoElement',
|
|
383
|
-
'HTMLUnknownElement',
|
|
384
|
-
'HTMLUListElement',
|
|
385
|
-
'HTMLTrackElement',
|
|
386
|
-
'HTMLTitleElement',
|
|
387
|
-
'HTMLTimeElement',
|
|
388
|
-
'HTMLTextAreaElement',
|
|
389
|
-
'HTMLTemplateElement',
|
|
390
|
-
'HTMLTableSectionElement',
|
|
391
|
-
'HTMLTableRowElement',
|
|
392
|
-
'HTMLTableElement',
|
|
393
|
-
'HTMLTableColElement',
|
|
394
|
-
'HTMLTableCellElement',
|
|
395
|
-
'HTMLTableCaptionElement',
|
|
396
|
-
'HTMLStyleElement',
|
|
397
|
-
'HTMLSpanElement',
|
|
398
|
-
'HTMLSourceElement',
|
|
399
|
-
'HTMLSlotElement',
|
|
400
|
-
'HTMLSelectElement',
|
|
401
|
-
'HTMLScriptElement',
|
|
402
|
-
'HTMLQuoteElement',
|
|
403
|
-
'HTMLProgressElement',
|
|
404
|
-
'HTMLPreElement',
|
|
405
|
-
'HTMLPictureElement',
|
|
406
|
-
'HTMLParamElement',
|
|
407
|
-
'HTMLParagraphElement',
|
|
408
|
-
'HTMLOutputElement',
|
|
409
|
-
'HTMLOptionsCollection',
|
|
410
|
-
'HTMLOptionElement',
|
|
411
|
-
'HTMLOptGroupElement',
|
|
412
|
-
'HTMLObjectElement',
|
|
413
|
-
'HTMLOListElement',
|
|
414
|
-
'HTMLModElement',
|
|
415
|
-
'HTMLMeterElement',
|
|
416
|
-
'HTMLMetaElement',
|
|
417
|
-
'HTMLMenuElement',
|
|
418
|
-
'HTMLMediaElement',
|
|
419
|
-
'HTMLMarqueeElement',
|
|
420
|
-
'HTMLMapElement',
|
|
421
|
-
'HTMLLinkElement',
|
|
422
|
-
'HTMLLegendElement',
|
|
423
|
-
'HTMLLabelElement',
|
|
424
|
-
'HTMLLIElement',
|
|
425
|
-
'HTMLInputElement',
|
|
426
|
-
'HTMLImageElement',
|
|
427
|
-
'HTMLIFrameElement',
|
|
428
|
-
'HTMLHtmlElement',
|
|
429
|
-
'HTMLHeadingElement',
|
|
430
|
-
'HTMLHeadElement',
|
|
431
|
-
'HTMLHRElement',
|
|
432
|
-
'HTMLFrameSetElement',
|
|
433
|
-
'HTMLFrameElement',
|
|
434
|
-
'HTMLFormElement',
|
|
435
|
-
'HTMLFormControlsCollection',
|
|
436
|
-
'HTMLFontElement',
|
|
437
|
-
'HTMLFieldSetElement',
|
|
438
|
-
'HTMLEmbedElement',
|
|
439
|
-
'HTMLElement',
|
|
440
|
-
'HTMLDocument',
|
|
441
|
-
'HTMLDivElement',
|
|
442
|
-
'HTMLDirectoryElement',
|
|
443
|
-
'HTMLDialogElement',
|
|
444
|
-
'HTMLDetailsElement',
|
|
445
|
-
'HTMLDataListElement',
|
|
446
|
-
'HTMLDataElement',
|
|
447
|
-
'HTMLDListElement',
|
|
448
|
-
'HTMLCollection',
|
|
449
|
-
'HTMLCanvasElement',
|
|
450
|
-
'HTMLButtonElement',
|
|
451
|
-
'HTMLBodyElement',
|
|
452
|
-
'HTMLBaseElement',
|
|
453
|
-
'HTMLBRElement',
|
|
454
|
-
'HTMLAudioElement',
|
|
455
|
-
'HTMLAreaElement',
|
|
456
|
-
'HTMLAnchorElement',
|
|
457
|
-
'HTMLAllCollection',
|
|
458
|
-
'GeolocationPositionError',
|
|
459
|
-
'GeolocationPosition',
|
|
460
|
-
'GeolocationCoordinates',
|
|
461
|
-
'Geolocation',
|
|
462
|
-
'GamepadHapticActuator',
|
|
463
|
-
'GamepadEvent',
|
|
464
|
-
'GamepadButton',
|
|
465
|
-
'Gamepad',
|
|
466
|
-
'GainNode',
|
|
467
|
-
'FormDataEvent',
|
|
468
|
-
'FormData',
|
|
469
|
-
'FontFaceSetLoadEvent',
|
|
470
|
-
'FontFace',
|
|
471
|
-
'FocusEvent',
|
|
472
|
-
'FileReader',
|
|
473
|
-
'FileList',
|
|
474
|
-
'File',
|
|
475
|
-
'FeaturePolicy',
|
|
476
|
-
'External',
|
|
477
|
-
'EventTarget',
|
|
478
|
-
'EventSource',
|
|
479
|
-
'EventCounts',
|
|
480
|
-
'Event',
|
|
481
|
-
'ErrorEvent',
|
|
482
|
-
'ElementInternals',
|
|
483
|
-
'Element',
|
|
484
|
-
'DynamicsCompressorNode',
|
|
485
|
-
'DragEvent',
|
|
486
|
-
'DocumentType',
|
|
487
|
-
'DocumentFragment',
|
|
488
|
-
'Document',
|
|
489
|
-
'DelayNode',
|
|
490
|
-
'DecompressionStream',
|
|
491
|
-
'DataTransferItemList',
|
|
492
|
-
'DataTransferItem',
|
|
493
|
-
'DataTransfer',
|
|
494
|
-
'DOMTokenList',
|
|
495
|
-
'DOMStringMap',
|
|
496
|
-
'DOMStringList',
|
|
497
|
-
'DOMRectReadOnly',
|
|
498
|
-
'DOMRectList',
|
|
499
|
-
'DOMRect',
|
|
500
|
-
'DOMQuad',
|
|
501
|
-
'DOMPointReadOnly',
|
|
502
|
-
'DOMPoint',
|
|
503
|
-
'DOMParser',
|
|
504
|
-
'DOMMatrixReadOnly',
|
|
505
|
-
'DOMMatrix',
|
|
506
|
-
'DOMImplementation',
|
|
507
|
-
'DOMException',
|
|
508
|
-
'DOMError',
|
|
509
|
-
'CustomEvent',
|
|
510
|
-
'CustomElementRegistry',
|
|
511
|
-
'Crypto',
|
|
512
|
-
'CountQueuingStrategy',
|
|
513
|
-
'ConvolverNode',
|
|
514
|
-
'ConstantSourceNode',
|
|
515
|
-
'CompressionStream',
|
|
516
|
-
'CompositionEvent',
|
|
517
|
-
'Comment',
|
|
518
|
-
'CloseEvent',
|
|
519
|
-
'ClipboardEvent',
|
|
520
|
-
'CharacterData',
|
|
521
|
-
'ChannelSplitterNode',
|
|
522
|
-
'ChannelMergerNode',
|
|
523
|
-
'CanvasRenderingContext2D',
|
|
524
|
-
'CanvasPattern',
|
|
525
|
-
'CanvasGradient',
|
|
526
|
-
'CanvasCaptureMediaStreamTrack',
|
|
527
|
-
'CSSVariableReferenceValue',
|
|
528
|
-
'CSSUnparsedValue',
|
|
529
|
-
'CSSUnitValue',
|
|
530
|
-
'CSSTranslate',
|
|
531
|
-
'CSSTransformValue',
|
|
532
|
-
'CSSTransformComponent',
|
|
533
|
-
'CSSSupportsRule',
|
|
534
|
-
'CSSStyleValue',
|
|
535
|
-
'CSSStyleSheet',
|
|
536
|
-
'CSSStyleRule',
|
|
537
|
-
'CSSStyleDeclaration',
|
|
538
|
-
'CSSSkewY',
|
|
539
|
-
'CSSSkewX',
|
|
540
|
-
'CSSSkew',
|
|
541
|
-
'CSSScale',
|
|
542
|
-
'CSSRuleList',
|
|
543
|
-
'CSSRule',
|
|
544
|
-
'CSSRotate',
|
|
545
|
-
'CSSPropertyRule',
|
|
546
|
-
'CSSPositionValue',
|
|
547
|
-
'CSSPerspective',
|
|
548
|
-
'CSSPageRule',
|
|
549
|
-
'CSSNumericValue',
|
|
550
|
-
'CSSNumericArray',
|
|
551
|
-
'CSSNamespaceRule',
|
|
552
|
-
'CSSMediaRule',
|
|
553
|
-
'CSSMatrixComponent',
|
|
554
|
-
'CSSMathValue',
|
|
555
|
-
'CSSMathSum',
|
|
556
|
-
'CSSMathProduct',
|
|
557
|
-
'CSSMathNegate',
|
|
558
|
-
'CSSMathMin',
|
|
559
|
-
'CSSMathMax',
|
|
560
|
-
'CSSMathInvert',
|
|
561
|
-
'CSSKeywordValue',
|
|
562
|
-
'CSSKeyframesRule',
|
|
563
|
-
'CSSKeyframeRule',
|
|
564
|
-
'CSSImportRule',
|
|
565
|
-
'CSSImageValue',
|
|
566
|
-
'CSSGroupingRule',
|
|
567
|
-
'CSSFontFaceRule',
|
|
568
|
-
'CSSCounterStyleRule',
|
|
569
|
-
'CSSConditionRule',
|
|
570
|
-
'CSS',
|
|
571
|
-
'CDATASection',
|
|
572
|
-
'ByteLengthQueuingStrategy',
|
|
573
|
-
'BroadcastChannel',
|
|
574
|
-
'BlobEvent',
|
|
575
|
-
'Blob',
|
|
576
|
-
'BiquadFilterNode',
|
|
577
|
-
'BeforeUnloadEvent',
|
|
578
|
-
'BeforeInstallPromptEvent',
|
|
579
|
-
'BatteryManager',
|
|
580
|
-
'BaseAudioContext',
|
|
581
|
-
'BarProp',
|
|
582
|
-
'AudioWorkletNode',
|
|
583
|
-
'AudioScheduledSourceNode',
|
|
584
|
-
'AudioProcessingEvent',
|
|
585
|
-
'AudioParamMap',
|
|
586
|
-
'AudioParam',
|
|
587
|
-
'AudioNode',
|
|
588
|
-
'AudioListener',
|
|
589
|
-
'AudioDestinationNode',
|
|
590
|
-
'AudioContext',
|
|
591
|
-
'AudioBufferSourceNode',
|
|
592
|
-
'AudioBuffer',
|
|
593
|
-
'Attr',
|
|
594
|
-
'AnimationEvent',
|
|
595
|
-
'AnimationEffect',
|
|
596
|
-
'Animation',
|
|
597
|
-
'AnalyserNode',
|
|
598
|
-
'AbstractRange',
|
|
599
|
-
'AbortSignal',
|
|
600
|
-
'AbortController',
|
|
601
|
-
'window',
|
|
602
|
-
'self',
|
|
603
|
-
'document',
|
|
604
|
-
'name',
|
|
605
|
-
'location',
|
|
606
|
-
'customElements',
|
|
607
|
-
'history',
|
|
608
|
-
'locationbar',
|
|
609
|
-
'menubar',
|
|
610
|
-
'personalbar',
|
|
611
|
-
'scrollbars',
|
|
612
|
-
'statusbar',
|
|
613
|
-
'toolbar',
|
|
614
|
-
'status',
|
|
615
|
-
'closed',
|
|
616
|
-
'frames',
|
|
617
|
-
'length',
|
|
618
|
-
'top',
|
|
619
|
-
'opener',
|
|
620
|
-
'parent',
|
|
621
|
-
'frameElement',
|
|
622
|
-
'navigator',
|
|
623
|
-
'origin',
|
|
624
|
-
'external',
|
|
625
|
-
'screen',
|
|
626
|
-
'innerWidth',
|
|
627
|
-
'innerHeight',
|
|
628
|
-
'scrollX',
|
|
629
|
-
'pageXOffset',
|
|
630
|
-
'scrollY',
|
|
631
|
-
'pageYOffset',
|
|
632
|
-
'visualViewport',
|
|
633
|
-
'screenX',
|
|
634
|
-
'screenY',
|
|
635
|
-
'outerWidth',
|
|
636
|
-
'outerHeight',
|
|
637
|
-
'devicePixelRatio',
|
|
638
|
-
'event',
|
|
639
|
-
'clientInformation',
|
|
640
|
-
'offscreenBuffering',
|
|
641
|
-
'screenLeft',
|
|
642
|
-
'screenTop',
|
|
643
|
-
'defaultStatus',
|
|
644
|
-
'defaultstatus',
|
|
645
|
-
'styleMedia',
|
|
646
|
-
'onsearch',
|
|
647
|
-
'isSecureContext',
|
|
648
|
-
'performance',
|
|
649
|
-
'onappinstalled',
|
|
650
|
-
'onbeforeinstallprompt',
|
|
651
|
-
'crypto',
|
|
652
|
-
'indexedDB',
|
|
653
|
-
'webkitStorageInfo',
|
|
654
|
-
'sessionStorage',
|
|
655
|
-
'localStorage',
|
|
656
|
-
'onbeforexrselect',
|
|
657
|
-
'onabort',
|
|
658
|
-
'onblur',
|
|
659
|
-
'oncancel',
|
|
660
|
-
'oncanplay',
|
|
661
|
-
'oncanplaythrough',
|
|
662
|
-
'onchange',
|
|
663
|
-
'onclick',
|
|
664
|
-
'onclose',
|
|
665
|
-
'oncontextmenu',
|
|
666
|
-
'oncuechange',
|
|
667
|
-
'ondblclick',
|
|
668
|
-
'ondrag',
|
|
669
|
-
'ondragend',
|
|
670
|
-
'ondragenter',
|
|
671
|
-
'ondragleave',
|
|
672
|
-
'ondragover',
|
|
673
|
-
'ondragstart',
|
|
674
|
-
'ondrop',
|
|
675
|
-
'ondurationchange',
|
|
676
|
-
'onemptied',
|
|
677
|
-
'onended',
|
|
678
|
-
'onerror',
|
|
679
|
-
'onfocus',
|
|
680
|
-
'onformdata',
|
|
681
|
-
'oninput',
|
|
682
|
-
'oninvalid',
|
|
683
|
-
'onkeydown',
|
|
684
|
-
'onkeypress',
|
|
685
|
-
'onkeyup',
|
|
686
|
-
'onload',
|
|
687
|
-
'onloadeddata',
|
|
688
|
-
'onloadedmetadata',
|
|
689
|
-
'onloadstart',
|
|
690
|
-
'onmousedown',
|
|
691
|
-
'onmouseenter',
|
|
692
|
-
'onmouseleave',
|
|
693
|
-
'onmousemove',
|
|
694
|
-
'onmouseout',
|
|
695
|
-
'onmouseover',
|
|
696
|
-
'onmouseup',
|
|
697
|
-
'onmousewheel',
|
|
698
|
-
'onpause',
|
|
699
|
-
'onplay',
|
|
700
|
-
'onplaying',
|
|
701
|
-
'onprogress',
|
|
702
|
-
'onratechange',
|
|
703
|
-
'onreset',
|
|
704
|
-
'onresize',
|
|
705
|
-
'onscroll',
|
|
706
|
-
'onseeked',
|
|
707
|
-
'onseeking',
|
|
708
|
-
'onselect',
|
|
709
|
-
'onstalled',
|
|
710
|
-
'onsubmit',
|
|
711
|
-
'onsuspend',
|
|
712
|
-
'ontimeupdate',
|
|
713
|
-
'ontoggle',
|
|
714
|
-
'onvolumechange',
|
|
715
|
-
'onwaiting',
|
|
716
|
-
'onwebkitanimationend',
|
|
717
|
-
'onwebkitanimationiteration',
|
|
718
|
-
'onwebkitanimationstart',
|
|
719
|
-
'onwebkittransitionend',
|
|
720
|
-
'onwheel',
|
|
721
|
-
'onauxclick',
|
|
722
|
-
'ongotpointercapture',
|
|
723
|
-
'onlostpointercapture',
|
|
724
|
-
'onpointerdown',
|
|
725
|
-
'onpointermove',
|
|
726
|
-
'onpointerup',
|
|
727
|
-
'onpointercancel',
|
|
728
|
-
'onpointerover',
|
|
729
|
-
'onpointerout',
|
|
730
|
-
'onpointerenter',
|
|
731
|
-
'onpointerleave',
|
|
732
|
-
'onselectstart',
|
|
733
|
-
'onselectionchange',
|
|
734
|
-
'onanimationend',
|
|
735
|
-
'onanimationiteration',
|
|
736
|
-
'onanimationstart',
|
|
737
|
-
'ontransitionrun',
|
|
738
|
-
'ontransitionstart',
|
|
739
|
-
'ontransitionend',
|
|
740
|
-
'ontransitioncancel',
|
|
741
|
-
'onafterprint',
|
|
742
|
-
'onbeforeprint',
|
|
743
|
-
'onbeforeunload',
|
|
744
|
-
'onhashchange',
|
|
745
|
-
'onlanguagechange',
|
|
746
|
-
'onmessage',
|
|
747
|
-
'onmessageerror',
|
|
748
|
-
'onoffline',
|
|
749
|
-
'ononline',
|
|
750
|
-
'onpagehide',
|
|
751
|
-
'onpageshow',
|
|
752
|
-
'onpopstate',
|
|
753
|
-
'onrejectionhandled',
|
|
754
|
-
'onstorage',
|
|
755
|
-
'onunhandledrejection',
|
|
756
|
-
'onunload',
|
|
757
|
-
'alert',
|
|
758
|
-
'atob',
|
|
759
|
-
'blur',
|
|
760
|
-
'btoa',
|
|
761
|
-
'cancelAnimationFrame',
|
|
762
|
-
'cancelIdleCallback',
|
|
763
|
-
'captureEvents',
|
|
764
|
-
'clearInterval',
|
|
765
|
-
'clearTimeout',
|
|
766
|
-
'close',
|
|
767
|
-
'confirm',
|
|
768
|
-
'createImageBitmap',
|
|
769
|
-
'fetch',
|
|
770
|
-
'find',
|
|
771
|
-
'focus',
|
|
772
|
-
'getComputedStyle',
|
|
773
|
-
'getSelection',
|
|
774
|
-
'matchMedia',
|
|
775
|
-
'moveBy',
|
|
776
|
-
'moveTo',
|
|
777
|
-
'open',
|
|
778
|
-
'postMessage',
|
|
779
|
-
'print',
|
|
780
|
-
'prompt',
|
|
781
|
-
'queueMicrotask',
|
|
782
|
-
'releaseEvents',
|
|
783
|
-
'reportError',
|
|
784
|
-
'requestAnimationFrame',
|
|
785
|
-
'requestIdleCallback',
|
|
786
|
-
'resizeBy',
|
|
787
|
-
'resizeTo',
|
|
788
|
-
'scroll',
|
|
789
|
-
'scrollBy',
|
|
790
|
-
'scrollTo',
|
|
791
|
-
'setInterval',
|
|
792
|
-
'setTimeout',
|
|
793
|
-
'stop',
|
|
794
|
-
'webkitCancelAnimationFrame',
|
|
795
|
-
'webkitRequestAnimationFrame',
|
|
796
|
-
'Atomics',
|
|
797
|
-
'chrome',
|
|
798
|
-
'WebAssembly',
|
|
799
|
-
'caches',
|
|
800
|
-
'cookieStore',
|
|
801
|
-
'ondevicemotion',
|
|
802
|
-
'ondeviceorientation',
|
|
803
|
-
'ondeviceorientationabsolute',
|
|
14
|
+
'$$',
|
|
15
|
+
'$',
|
|
16
|
+
'$0',
|
|
17
|
+
'$1',
|
|
18
|
+
'$2',
|
|
19
|
+
'$3',
|
|
20
|
+
'$4',
|
|
21
|
+
'$_',
|
|
22
|
+
'$x',
|
|
23
|
+
'AbortController',
|
|
24
|
+
'AbortSignal',
|
|
804
25
|
'AbsoluteOrientationSensor',
|
|
26
|
+
'AbstractRange',
|
|
805
27
|
'Accelerometer',
|
|
28
|
+
'AggregateError',
|
|
29
|
+
'AnalyserNode',
|
|
30
|
+
'Animation',
|
|
31
|
+
'AnimationEffect',
|
|
32
|
+
'AnimationEvent',
|
|
33
|
+
'AnimationPlaybackEvent',
|
|
34
|
+
'AnimationTimeline',
|
|
35
|
+
'Array',
|
|
36
|
+
'ArrayBuffer',
|
|
37
|
+
'Atomics',
|
|
38
|
+
'Attr',
|
|
39
|
+
'Audio',
|
|
40
|
+
'AudioBuffer',
|
|
41
|
+
'AudioBufferSourceNode',
|
|
42
|
+
'AudioContext',
|
|
43
|
+
'AudioData',
|
|
44
|
+
'AudioDecoder',
|
|
45
|
+
'AudioDestinationNode',
|
|
46
|
+
'AudioEncoder',
|
|
47
|
+
'AudioListener',
|
|
48
|
+
'AudioNode',
|
|
49
|
+
'AudioParam',
|
|
50
|
+
'AudioParamMap',
|
|
51
|
+
'AudioProcessingEvent',
|
|
52
|
+
'AudioScheduledSourceNode',
|
|
806
53
|
'AudioWorklet',
|
|
54
|
+
'AudioWorkletNode',
|
|
55
|
+
'AuthenticatorAssertionResponse',
|
|
56
|
+
'AuthenticatorAttestationResponse',
|
|
57
|
+
'AuthenticatorResponse',
|
|
58
|
+
'BackgroundFetchManager',
|
|
59
|
+
'BackgroundFetchRecord',
|
|
60
|
+
'BackgroundFetchRegistration',
|
|
61
|
+
'BarProp',
|
|
62
|
+
'BarcodeDetector',
|
|
63
|
+
'BaseAudioContext',
|
|
64
|
+
'BatteryManager',
|
|
65
|
+
'BeforeInstallPromptEvent',
|
|
66
|
+
'BeforeUnloadEvent',
|
|
67
|
+
'BigInt',
|
|
68
|
+
'BigInt64Array',
|
|
69
|
+
'BigUint64Array',
|
|
70
|
+
'BiquadFilterNode',
|
|
71
|
+
'Blob',
|
|
72
|
+
'BlobEvent',
|
|
73
|
+
'Bluetooth',
|
|
74
|
+
'BluetoothCharacteristicProperties',
|
|
75
|
+
'BluetoothDevice',
|
|
76
|
+
'BluetoothRemoteGATTCharacteristic',
|
|
77
|
+
'BluetoothRemoteGATTDescriptor',
|
|
78
|
+
'BluetoothRemoteGATTServer',
|
|
79
|
+
'BluetoothRemoteGATTService',
|
|
80
|
+
'BluetoothUUID',
|
|
81
|
+
'Boolean',
|
|
82
|
+
'BroadcastChannel',
|
|
83
|
+
'ByteLengthQueuingStrategy',
|
|
84
|
+
'ByteStreamController',
|
|
85
|
+
'CDATASection',
|
|
86
|
+
'CSS',
|
|
87
|
+
'CSSAnimation',
|
|
88
|
+
'CSSConditionRule',
|
|
89
|
+
'CSSCounterStyleRule',
|
|
90
|
+
'CSSFontFaceRule',
|
|
91
|
+
'CSSGroupingRule',
|
|
92
|
+
'CSSImageValue',
|
|
93
|
+
'CSSImportRule',
|
|
94
|
+
'CSSKeyframeRule',
|
|
95
|
+
'CSSKeyframesRule',
|
|
96
|
+
'CSSKeywordValue',
|
|
97
|
+
'CSSMathInvert',
|
|
98
|
+
'CSSMathMax',
|
|
99
|
+
'CSSMathMin',
|
|
100
|
+
'CSSMathNegate',
|
|
101
|
+
'CSSMathProduct',
|
|
102
|
+
'CSSMathSum',
|
|
103
|
+
'CSSMathValue',
|
|
104
|
+
'CSSMatrixComponent',
|
|
105
|
+
'CSSMediaRule',
|
|
106
|
+
'CSSNamespaceRule',
|
|
107
|
+
'CSSNumericArray',
|
|
108
|
+
'CSSNumericValue',
|
|
109
|
+
'CSSPageRule',
|
|
110
|
+
'CSSPerspective',
|
|
111
|
+
'CSSPositionValue',
|
|
112
|
+
'CSSPropertyRule',
|
|
113
|
+
'CSSRotate',
|
|
114
|
+
'CSSRule',
|
|
115
|
+
'CSSRuleList',
|
|
116
|
+
'CSSScale',
|
|
117
|
+
'CSSSkew',
|
|
118
|
+
'CSSSkewX',
|
|
119
|
+
'CSSSkewY',
|
|
120
|
+
'CSSStyleDeclaration',
|
|
121
|
+
'CSSStyleRule',
|
|
122
|
+
'CSSStyleSheet',
|
|
123
|
+
'CSSStyleValue',
|
|
124
|
+
'CSSSupportsRule',
|
|
125
|
+
'CSSTransformComponent',
|
|
126
|
+
'CSSTransformValue',
|
|
127
|
+
'CSSTransition',
|
|
128
|
+
'CSSTranslate',
|
|
129
|
+
'CSSUnitValue',
|
|
130
|
+
'CSSUnparsedValue',
|
|
131
|
+
'CSSVariableReferenceValue',
|
|
807
132
|
'Cache',
|
|
808
133
|
'CacheStorage',
|
|
134
|
+
'CanvasCaptureMediaStreamTrack',
|
|
135
|
+
'CanvasGradient',
|
|
136
|
+
'CanvasPattern',
|
|
137
|
+
'CanvasRenderingContext2D',
|
|
138
|
+
'ChannelMergerNode',
|
|
139
|
+
'ChannelSplitterNode',
|
|
140
|
+
'CharacterData',
|
|
809
141
|
'Clipboard',
|
|
142
|
+
'ClipboardEvent',
|
|
810
143
|
'ClipboardItem',
|
|
144
|
+
'CloseEvent',
|
|
145
|
+
'Comment',
|
|
146
|
+
'CompositionEvent',
|
|
147
|
+
'CompressionStream',
|
|
148
|
+
'ConstantSourceNode',
|
|
149
|
+
'ConvolverNode',
|
|
811
150
|
'CookieChangeEvent',
|
|
812
151
|
'CookieStore',
|
|
813
152
|
'CookieStoreManager',
|
|
153
|
+
'CountQueuingStrategy',
|
|
814
154
|
'Credential',
|
|
815
155
|
'CredentialsContainer',
|
|
156
|
+
'Crypto',
|
|
816
157
|
'CryptoKey',
|
|
158
|
+
'CustomElementRegistry',
|
|
159
|
+
'CustomEvent',
|
|
160
|
+
'CustomStateSet',
|
|
161
|
+
'DOMError',
|
|
162
|
+
'DOMException',
|
|
163
|
+
'DOMImplementation',
|
|
164
|
+
'DOMMatrix',
|
|
165
|
+
'DOMMatrixReadOnly',
|
|
166
|
+
'DOMParser',
|
|
167
|
+
'DOMParser',
|
|
168
|
+
'DOMPoint',
|
|
169
|
+
'DOMPointReadOnly',
|
|
170
|
+
'DOMQuad',
|
|
171
|
+
'DOMRect',
|
|
172
|
+
'DOMRectList',
|
|
173
|
+
'DOMRectReadOnly',
|
|
174
|
+
'DOMStringList',
|
|
175
|
+
'DOMStringMap',
|
|
176
|
+
'DOMTokenList',
|
|
177
|
+
'DataTransfer',
|
|
178
|
+
'DataTransferItem',
|
|
179
|
+
'DataTransferItemList',
|
|
180
|
+
'DataView',
|
|
181
|
+
'Date',
|
|
182
|
+
'DecompressionStream',
|
|
183
|
+
'DelayNode',
|
|
184
|
+
'DelegatedInkTrailPresenter',
|
|
817
185
|
'DeviceMotionEvent',
|
|
818
186
|
'DeviceMotionEventAcceleration',
|
|
819
187
|
'DeviceMotionEventRotationRate',
|
|
820
188
|
'DeviceOrientationEvent',
|
|
189
|
+
'Document',
|
|
190
|
+
'DocumentFragment',
|
|
191
|
+
'DocumentTimeline',
|
|
192
|
+
'DocumentType',
|
|
193
|
+
'DragEvent',
|
|
194
|
+
'DynamicsCompressorNode',
|
|
195
|
+
'Element',
|
|
196
|
+
'ElementInternals',
|
|
197
|
+
'EncodedAudioChunk',
|
|
198
|
+
'EncodedVideoChunk',
|
|
199
|
+
'Error',
|
|
200
|
+
'ErrorEvent',
|
|
201
|
+
'EvalError',
|
|
202
|
+
'Event',
|
|
203
|
+
'EventCounts',
|
|
204
|
+
'EventSource',
|
|
205
|
+
'EventTarget',
|
|
206
|
+
'External',
|
|
207
|
+
'EyeDropper',
|
|
208
|
+
'FeaturePolicy',
|
|
821
209
|
'FederatedCredential',
|
|
210
|
+
'File',
|
|
211
|
+
'FileList',
|
|
212
|
+
'FileReader',
|
|
213
|
+
'FileSystemDirectoryHandle',
|
|
214
|
+
'FileSystemFileHandle',
|
|
215
|
+
'FileSystemHandle',
|
|
216
|
+
'FileSystemWritableFileStream',
|
|
217
|
+
'FinalizationRegistry',
|
|
218
|
+
'Float32Array',
|
|
219
|
+
'Float64Array',
|
|
220
|
+
'FocusEvent',
|
|
221
|
+
'FontFace',
|
|
222
|
+
'FontFaceSetLoadEvent',
|
|
223
|
+
'FormData',
|
|
224
|
+
'FormDataEvent',
|
|
225
|
+
'FragmentDirective',
|
|
226
|
+
'Function',
|
|
227
|
+
'GainNode',
|
|
228
|
+
'Gamepad',
|
|
229
|
+
'GamepadButton',
|
|
230
|
+
'GamepadEvent',
|
|
231
|
+
'GamepadHapticActuator',
|
|
232
|
+
'Geolocation',
|
|
233
|
+
'GeolocationCoordinates',
|
|
234
|
+
'GeolocationPosition',
|
|
235
|
+
'GeolocationPositionError',
|
|
236
|
+
'GravitySensor',
|
|
237
|
+
'GroupEffect',
|
|
822
238
|
'Gyroscope',
|
|
239
|
+
'HID',
|
|
240
|
+
'HIDConnectionEvent',
|
|
241
|
+
'HIDDevice',
|
|
242
|
+
'HIDInputReportEvent',
|
|
243
|
+
'HTMLAllCollection',
|
|
244
|
+
'HTMLAnchorElement',
|
|
245
|
+
'HTMLAreaElement',
|
|
246
|
+
'HTMLAudioElement',
|
|
247
|
+
'HTMLBRElement',
|
|
248
|
+
'HTMLBaseElement',
|
|
249
|
+
'HTMLBodyElement',
|
|
250
|
+
'HTMLButtonElement',
|
|
251
|
+
'HTMLCanvasElement',
|
|
252
|
+
'HTMLCollection',
|
|
253
|
+
'HTMLDListElement',
|
|
254
|
+
'HTMLDataElement',
|
|
255
|
+
'HTMLDataListElement',
|
|
256
|
+
'HTMLDetailsElement',
|
|
257
|
+
'HTMLDialogElement',
|
|
258
|
+
'HTMLDirectoryElement',
|
|
259
|
+
'HTMLDivElement',
|
|
260
|
+
'HTMLDocument',
|
|
261
|
+
'HTMLElement',
|
|
262
|
+
'HTMLEmbedElement',
|
|
263
|
+
'HTMLFieldSetElement',
|
|
264
|
+
'HTMLFontElement',
|
|
265
|
+
'HTMLFormControlsCollection',
|
|
266
|
+
'HTMLFormElement',
|
|
267
|
+
'HTMLFrameElement',
|
|
268
|
+
'HTMLFrameSetElement',
|
|
269
|
+
'HTMLHRElement',
|
|
270
|
+
'HTMLHeadElement',
|
|
271
|
+
'HTMLHeadingElement',
|
|
272
|
+
'HTMLHtmlElement',
|
|
273
|
+
'HTMLIFrameElement',
|
|
274
|
+
'HTMLImageElement',
|
|
275
|
+
'HTMLInputElement',
|
|
276
|
+
'HTMLLIElement',
|
|
277
|
+
'HTMLLabelElement',
|
|
278
|
+
'HTMLLegendElement',
|
|
279
|
+
'HTMLLinkElement',
|
|
280
|
+
'HTMLMapElement',
|
|
281
|
+
'HTMLMarqueeElement',
|
|
282
|
+
'HTMLMediaElement',
|
|
283
|
+
'HTMLMenuElement',
|
|
284
|
+
'HTMLMetaElement',
|
|
285
|
+
'HTMLMeterElement',
|
|
286
|
+
'HTMLModElement',
|
|
287
|
+
'HTMLOListElement',
|
|
288
|
+
'HTMLObjectElement',
|
|
289
|
+
'HTMLOptGroupElement',
|
|
290
|
+
'HTMLOptionElement',
|
|
291
|
+
'HTMLOptionsCollection',
|
|
292
|
+
'HTMLOutputElement',
|
|
293
|
+
'HTMLParagraphElement',
|
|
294
|
+
'HTMLParamElement',
|
|
295
|
+
'HTMLPictureElement',
|
|
296
|
+
'HTMLPreElement',
|
|
297
|
+
'HTMLProgressElement',
|
|
298
|
+
'HTMLQuoteElement',
|
|
299
|
+
'HTMLSanitizer',
|
|
300
|
+
'HTMLScriptElement',
|
|
301
|
+
'HTMLSelectElement',
|
|
302
|
+
'HTMLSlotElement',
|
|
303
|
+
'HTMLSourceElement',
|
|
304
|
+
'HTMLSpanElement',
|
|
305
|
+
'HTMLStyleElement',
|
|
306
|
+
'HTMLTableCaptionElement',
|
|
307
|
+
'HTMLTableCellElement',
|
|
308
|
+
'HTMLTableColElement',
|
|
309
|
+
'HTMLTableElement',
|
|
310
|
+
'HTMLTableRowElement',
|
|
311
|
+
'HTMLTableSectionElement',
|
|
312
|
+
'HTMLTemplateElement',
|
|
313
|
+
'HTMLTextAreaElement',
|
|
314
|
+
'HTMLTimeElement',
|
|
315
|
+
'HTMLTitleElement',
|
|
316
|
+
'HTMLTrackElement',
|
|
317
|
+
'HTMLUListElement',
|
|
318
|
+
'HTMLUnknownElement',
|
|
319
|
+
'HTMLVideoElement',
|
|
320
|
+
'HashChangeEvent',
|
|
321
|
+
'Headers',
|
|
322
|
+
'History',
|
|
323
|
+
'IDBCursor',
|
|
324
|
+
'IDBCursorWithValue',
|
|
325
|
+
'IDBDatabase',
|
|
326
|
+
'IDBFactory',
|
|
327
|
+
'IDBIndex',
|
|
328
|
+
'IDBKeyRange',
|
|
329
|
+
'IDBObjectStore',
|
|
330
|
+
'IDBOpenDBRequest',
|
|
331
|
+
'IDBRequest',
|
|
332
|
+
'IDBTransaction',
|
|
333
|
+
'IDBVersionChangeEvent',
|
|
334
|
+
'IIRFilterNode',
|
|
335
|
+
'IdleDeadline',
|
|
336
|
+
'IdleDetector',
|
|
337
|
+
'Image',
|
|
338
|
+
'ImageBitmap',
|
|
339
|
+
'ImageBitmapRenderingContext',
|
|
340
|
+
'ImageCapture',
|
|
341
|
+
'ImageData',
|
|
342
|
+
'ImageDecoder',
|
|
343
|
+
'ImageTrack',
|
|
344
|
+
'ImageTrackList',
|
|
345
|
+
'Infinity',
|
|
346
|
+
'Ink',
|
|
347
|
+
'InputDeviceCapabilities',
|
|
348
|
+
'InputDeviceInfo',
|
|
349
|
+
'InputEvent',
|
|
350
|
+
'Int16Array',
|
|
351
|
+
'Int32Array',
|
|
352
|
+
'Int8Array',
|
|
353
|
+
'IntersectionObserver',
|
|
354
|
+
'IntersectionObserverEntry',
|
|
355
|
+
'Intl',
|
|
356
|
+
'JSON',
|
|
823
357
|
'Keyboard',
|
|
358
|
+
'KeyboardEvent',
|
|
824
359
|
'KeyboardLayoutMap',
|
|
360
|
+
'KeyframeEffect',
|
|
361
|
+
'LargestContentfulPaint',
|
|
362
|
+
'LayoutShift',
|
|
363
|
+
'LayoutShiftAttribution',
|
|
825
364
|
'LinearAccelerationSensor',
|
|
365
|
+
'Location',
|
|
826
366
|
'Lock',
|
|
827
367
|
'LockManager',
|
|
828
368
|
'MIDIAccess',
|
|
@@ -833,72 +373,109 @@ exports.default = new Set([
|
|
|
833
373
|
'MIDIOutput',
|
|
834
374
|
'MIDIOutputMap',
|
|
835
375
|
'MIDIPort',
|
|
376
|
+
'Map',
|
|
377
|
+
'Math',
|
|
378
|
+
'MediaCapabilities',
|
|
836
379
|
'MediaDeviceInfo',
|
|
837
380
|
'MediaDevices',
|
|
381
|
+
'MediaElementAudioSourceNode',
|
|
382
|
+
'MediaEncryptedEvent',
|
|
383
|
+
'MediaError',
|
|
838
384
|
'MediaKeyMessageEvent',
|
|
839
385
|
'MediaKeySession',
|
|
840
386
|
'MediaKeyStatusMap',
|
|
841
387
|
'MediaKeySystemAccess',
|
|
842
388
|
'MediaKeys',
|
|
389
|
+
'MediaList',
|
|
390
|
+
'MediaMetadata',
|
|
391
|
+
'MediaQueryList',
|
|
392
|
+
'MediaQueryListEvent',
|
|
393
|
+
'MediaRecorder',
|
|
394
|
+
'MediaSession',
|
|
395
|
+
'MediaSource',
|
|
396
|
+
'MediaSourceHandle',
|
|
397
|
+
'MediaStream',
|
|
398
|
+
'MediaStreamAudioDestinationNode',
|
|
399
|
+
'MediaStreamAudioSourceNode',
|
|
400
|
+
'MediaStreamEvent',
|
|
401
|
+
'MediaStreamTrack',
|
|
402
|
+
'MediaStreamTrackEvent',
|
|
403
|
+
'MediaStreamTrackGenerator',
|
|
404
|
+
'MediaStreamTrackProcessor',
|
|
405
|
+
'MessageChannel',
|
|
406
|
+
'MessageEvent',
|
|
407
|
+
'MessagePort',
|
|
408
|
+
'MimeType',
|
|
409
|
+
'MimeTypeArray',
|
|
410
|
+
'MouseEvent',
|
|
411
|
+
'MutationEvent',
|
|
412
|
+
'MutationObserver',
|
|
413
|
+
'MutationRecord',
|
|
414
|
+
'NaN',
|
|
415
|
+
'NamedNodeMap',
|
|
416
|
+
'Navigation',
|
|
417
|
+
'NavigationCurrentEntryChangeEvent',
|
|
418
|
+
'NavigationHistoryEntry',
|
|
843
419
|
'NavigationPreloadManager',
|
|
420
|
+
'NavigationTransition',
|
|
421
|
+
'Navigator',
|
|
844
422
|
'NavigatorManagedData',
|
|
423
|
+
'NavigatorUAData',
|
|
424
|
+
'NetworkInformation',
|
|
425
|
+
'Node',
|
|
426
|
+
'NodeFilter',
|
|
427
|
+
'NodeIterator',
|
|
428
|
+
'NodeList',
|
|
429
|
+
'Notification',
|
|
430
|
+
'Number',
|
|
431
|
+
'OTPCredential',
|
|
432
|
+
'Object',
|
|
433
|
+
'OfflineAudioCompletionEvent',
|
|
434
|
+
'OfflineAudioContext',
|
|
435
|
+
'OffscreenCanvas',
|
|
436
|
+
'OffscreenCanvasRenderingContext2D',
|
|
437
|
+
'Option',
|
|
845
438
|
'OrientationSensor',
|
|
439
|
+
'OscillatorNode',
|
|
440
|
+
'OverconstrainedError',
|
|
441
|
+
'PERSISTENT',
|
|
442
|
+
'PageTransitionEvent',
|
|
443
|
+
'PannerNode',
|
|
846
444
|
'PasswordCredential',
|
|
847
|
-
'
|
|
848
|
-
'RelativeOrientationSensor',
|
|
849
|
-
'Sensor',
|
|
850
|
-
'SensorErrorEvent',
|
|
851
|
-
'ServiceWorker',
|
|
852
|
-
'ServiceWorkerContainer',
|
|
853
|
-
'ServiceWorkerRegistration',
|
|
854
|
-
'StorageManager',
|
|
855
|
-
'SubtleCrypto',
|
|
856
|
-
'Worklet',
|
|
857
|
-
'XRDOMOverlayState',
|
|
858
|
-
'XRLayer',
|
|
859
|
-
'XRWebGLBinding',
|
|
860
|
-
'AudioData',
|
|
861
|
-
'EncodedAudioChunk',
|
|
862
|
-
'EncodedVideoChunk',
|
|
863
|
-
'ImageTrack',
|
|
864
|
-
'ImageTrackList',
|
|
865
|
-
'VideoColorSpace',
|
|
866
|
-
'VideoFrame',
|
|
867
|
-
'AudioDecoder',
|
|
868
|
-
'AudioEncoder',
|
|
869
|
-
'ImageDecoder',
|
|
870
|
-
'VideoDecoder',
|
|
871
|
-
'VideoEncoder',
|
|
872
|
-
'AuthenticatorAssertionResponse',
|
|
873
|
-
'AuthenticatorAttestationResponse',
|
|
874
|
-
'AuthenticatorResponse',
|
|
875
|
-
'PublicKeyCredential',
|
|
876
|
-
'BarcodeDetector',
|
|
877
|
-
'Bluetooth',
|
|
878
|
-
'BluetoothCharacteristicProperties',
|
|
879
|
-
'BluetoothDevice',
|
|
880
|
-
'BluetoothRemoteGATTCharacteristic',
|
|
881
|
-
'BluetoothRemoteGATTDescriptor',
|
|
882
|
-
'BluetoothRemoteGATTServer',
|
|
883
|
-
'BluetoothRemoteGATTService',
|
|
884
|
-
'FileSystemDirectoryHandle',
|
|
885
|
-
'FileSystemFileHandle',
|
|
886
|
-
'FileSystemHandle',
|
|
887
|
-
'FileSystemWritableFileStream',
|
|
888
|
-
'FragmentDirective',
|
|
889
|
-
'GravitySensor',
|
|
890
|
-
'HID',
|
|
891
|
-
'HIDConnectionEvent',
|
|
892
|
-
'HIDDevice',
|
|
893
|
-
'HIDInputReportEvent',
|
|
894
|
-
'IdleDetector',
|
|
895
|
-
'MediaStreamTrackGenerator',
|
|
896
|
-
'MediaStreamTrackProcessor',
|
|
897
|
-
'OTPCredential',
|
|
445
|
+
'Path2D',
|
|
898
446
|
'PaymentAddress',
|
|
447
|
+
'PaymentInstruments',
|
|
448
|
+
'PaymentManager',
|
|
449
|
+
'PaymentMethodChangeEvent',
|
|
899
450
|
'PaymentRequest',
|
|
451
|
+
'PaymentRequestUpdateEvent',
|
|
900
452
|
'PaymentResponse',
|
|
901
|
-
'
|
|
453
|
+
'Performance',
|
|
454
|
+
'PerformanceElementTiming',
|
|
455
|
+
'PerformanceEntry',
|
|
456
|
+
'PerformanceEventTiming',
|
|
457
|
+
'PerformanceEventTiming',
|
|
458
|
+
'PerformanceLongTaskTiming',
|
|
459
|
+
'PerformanceMark',
|
|
460
|
+
'PerformanceMeasure',
|
|
461
|
+
'PerformanceNavigation',
|
|
462
|
+
'PerformanceNavigationTiming',
|
|
463
|
+
'PerformanceObserver',
|
|
464
|
+
'PerformanceObserverEntryList',
|
|
465
|
+
'PerformancePaintTiming',
|
|
466
|
+
'PerformanceResourceTiming',
|
|
467
|
+
'PerformanceServerTiming',
|
|
468
|
+
'PerformanceTiming',
|
|
469
|
+
'PeriodicSyncManager',
|
|
470
|
+
'PeriodicWave',
|
|
471
|
+
'PermissionStatus',
|
|
472
|
+
'Permissions',
|
|
473
|
+
'PictureInPictureEvent',
|
|
474
|
+
'PictureInPictureWindow',
|
|
475
|
+
'Plugin',
|
|
476
|
+
'PluginArray',
|
|
477
|
+
'PointerEvent',
|
|
478
|
+
'PopStateEvent',
|
|
902
479
|
'Presentation',
|
|
903
480
|
'PresentationAvailability',
|
|
904
481
|
'PresentationConnection',
|
|
@@ -907,10 +484,231 @@ exports.default = new Set([
|
|
|
907
484
|
'PresentationConnectionList',
|
|
908
485
|
'PresentationReceiver',
|
|
909
486
|
'PresentationRequest',
|
|
487
|
+
'ProcessingInstruction',
|
|
910
488
|
'Profiler',
|
|
489
|
+
'ProgressEvent',
|
|
490
|
+
'Promise',
|
|
491
|
+
'PromiseRejectionEvent',
|
|
492
|
+
'Proxy',
|
|
493
|
+
'PublicKeyCredential',
|
|
494
|
+
'PushManager',
|
|
495
|
+
'PushSubscription',
|
|
496
|
+
'PushSubscriptionOptions',
|
|
497
|
+
'RTCCertificate',
|
|
498
|
+
'RTCDTMFSender',
|
|
499
|
+
'RTCDTMFToneChangeEvent',
|
|
500
|
+
'RTCDataChannel',
|
|
501
|
+
'RTCDataChannelEvent',
|
|
502
|
+
'RTCDtlsTransport',
|
|
503
|
+
'RTCEncodedAudioFrame',
|
|
504
|
+
'RTCEncodedVideoFrame',
|
|
505
|
+
'RTCError',
|
|
506
|
+
'RTCErrorEvent',
|
|
507
|
+
'RTCIceCandidate',
|
|
508
|
+
'RTCIceTransport',
|
|
509
|
+
'RTCPeerConnection',
|
|
510
|
+
'RTCPeerConnectionIceErrorEvent',
|
|
511
|
+
'RTCPeerConnectionIceEvent',
|
|
512
|
+
'RTCRtpReceiver',
|
|
513
|
+
'RTCRtpSender',
|
|
514
|
+
'RTCRtpTransceiver',
|
|
515
|
+
'RTCSctpTransport',
|
|
516
|
+
'RTCSessionDescription',
|
|
517
|
+
'RTCStatsReport',
|
|
518
|
+
'RTCTrackEvent',
|
|
519
|
+
'RadioNodeList',
|
|
520
|
+
'Range',
|
|
521
|
+
'RangeError',
|
|
522
|
+
'ReadableByteStreamController',
|
|
523
|
+
'ReadableStream',
|
|
524
|
+
'ReadableStreamBYOBReader',
|
|
525
|
+
'ReadableStreamBYOBRequest',
|
|
526
|
+
'ReadableStreamDefaultController',
|
|
527
|
+
'ReadableStreamDefaultReader',
|
|
528
|
+
'ReferenceError',
|
|
529
|
+
'Reflect',
|
|
530
|
+
'RegExp',
|
|
531
|
+
'RelativeOrientationSensor',
|
|
532
|
+
'RemotePlayback',
|
|
533
|
+
'ReportingObserver',
|
|
534
|
+
'Request',
|
|
535
|
+
'ResizeObserver',
|
|
536
|
+
'ResizeObserverEntry',
|
|
537
|
+
'ResizeObserverSize',
|
|
538
|
+
'Response',
|
|
539
|
+
'SVGAElement',
|
|
540
|
+
'SVGAngle',
|
|
541
|
+
'SVGAnimateElement',
|
|
542
|
+
'SVGAnimateMotionElement',
|
|
543
|
+
'SVGAnimateTransformElement',
|
|
544
|
+
'SVGAnimatedAngle',
|
|
545
|
+
'SVGAnimatedBoolean',
|
|
546
|
+
'SVGAnimatedEnumeration',
|
|
547
|
+
'SVGAnimatedInteger',
|
|
548
|
+
'SVGAnimatedLength',
|
|
549
|
+
'SVGAnimatedLengthList',
|
|
550
|
+
'SVGAnimatedNumber',
|
|
551
|
+
'SVGAnimatedNumberList',
|
|
552
|
+
'SVGAnimatedPreserveAspectRatio',
|
|
553
|
+
'SVGAnimatedRect',
|
|
554
|
+
'SVGAnimatedString',
|
|
555
|
+
'SVGAnimatedTransformList',
|
|
556
|
+
'SVGAnimationElement',
|
|
557
|
+
'SVGCircleElement',
|
|
558
|
+
'SVGClipPathElement',
|
|
559
|
+
'SVGComponentTransferFunctionElement',
|
|
560
|
+
'SVGDefsElement',
|
|
561
|
+
'SVGDescElement',
|
|
562
|
+
'SVGElement',
|
|
563
|
+
'SVGEllipseElement',
|
|
564
|
+
'SVGFEBlendElement',
|
|
565
|
+
'SVGFEColorMatrixElement',
|
|
566
|
+
'SVGFEComponentTransferElement',
|
|
567
|
+
'SVGFECompositeElement',
|
|
568
|
+
'SVGFEConvolveMatrixElement',
|
|
569
|
+
'SVGFEDiffuseLightingElement',
|
|
570
|
+
'SVGFEDisplacementMapElement',
|
|
571
|
+
'SVGFEDistantLightElement',
|
|
572
|
+
'SVGFEDropShadowElement',
|
|
573
|
+
'SVGFEFloodElement',
|
|
574
|
+
'SVGFEFuncAElement',
|
|
575
|
+
'SVGFEFuncBElement',
|
|
576
|
+
'SVGFEFuncGElement',
|
|
577
|
+
'SVGFEFuncRElement',
|
|
578
|
+
'SVGFEGaussianBlurElement',
|
|
579
|
+
'SVGFEImageElement',
|
|
580
|
+
'SVGFEMergeElement',
|
|
581
|
+
'SVGFEMergeNodeElement',
|
|
582
|
+
'SVGFEMorphologyElement',
|
|
583
|
+
'SVGFEOffsetElement',
|
|
584
|
+
'SVGFEPointLightElement',
|
|
585
|
+
'SVGFESpecularLightingElement',
|
|
586
|
+
'SVGFESpotLightElement',
|
|
587
|
+
'SVGFETileElement',
|
|
588
|
+
'SVGFETurbulenceElement',
|
|
589
|
+
'SVGFilterElement',
|
|
590
|
+
'SVGForeignObjectElement',
|
|
591
|
+
'SVGGElement',
|
|
592
|
+
'SVGGeometryElement',
|
|
593
|
+
'SVGGradientElement',
|
|
594
|
+
'SVGGraphicsElement',
|
|
595
|
+
'SVGImageElement',
|
|
596
|
+
'SVGLength',
|
|
597
|
+
'SVGLengthList',
|
|
598
|
+
'SVGLineElement',
|
|
599
|
+
'SVGLinearGradientElement',
|
|
600
|
+
'SVGMPathElement',
|
|
601
|
+
'SVGMarkerElement',
|
|
602
|
+
'SVGMaskElement',
|
|
603
|
+
'SVGMatrix',
|
|
604
|
+
'SVGMetadataElement',
|
|
605
|
+
'SVGNumber',
|
|
606
|
+
'SVGNumberList',
|
|
607
|
+
'SVGPathElement',
|
|
608
|
+
'SVGPatternElement',
|
|
609
|
+
'SVGPoint',
|
|
610
|
+
'SVGPointList',
|
|
611
|
+
'SVGPolygonElement',
|
|
612
|
+
'SVGPolylineElement',
|
|
613
|
+
'SVGPreserveAspectRatio',
|
|
614
|
+
'SVGRadialGradientElement',
|
|
615
|
+
'SVGRect',
|
|
616
|
+
'SVGRectElement',
|
|
617
|
+
'SVGSVGElement',
|
|
618
|
+
'SVGScriptElement',
|
|
619
|
+
'SVGSetElement',
|
|
620
|
+
'SVGStopElement',
|
|
621
|
+
'SVGStringList',
|
|
622
|
+
'SVGStyleElement',
|
|
623
|
+
'SVGSwitchElement',
|
|
624
|
+
'SVGSymbolElement',
|
|
625
|
+
'SVGTSpanElement',
|
|
626
|
+
'SVGTextContentElement',
|
|
627
|
+
'SVGTextElement',
|
|
628
|
+
'SVGTextPathElement',
|
|
629
|
+
'SVGTextPositioningElement',
|
|
630
|
+
'SVGTitleElement',
|
|
631
|
+
'SVGTransform',
|
|
632
|
+
'SVGTransformList',
|
|
633
|
+
'SVGUnitTypes',
|
|
634
|
+
'SVGUseElement',
|
|
635
|
+
'SVGViewElement',
|
|
636
|
+
'Sanitizer',
|
|
637
|
+
'Scheduler',
|
|
911
638
|
'Scheduling',
|
|
639
|
+
'Screen',
|
|
640
|
+
'ScreenOrientation',
|
|
641
|
+
'ScriptProcessorNode',
|
|
642
|
+
'SecurityPolicyViolationEvent',
|
|
643
|
+
'Selection',
|
|
644
|
+
'Sensor',
|
|
645
|
+
'SensorErrorEvent',
|
|
646
|
+
'SequenceEffect',
|
|
912
647
|
'Serial',
|
|
913
648
|
'SerialPort',
|
|
649
|
+
'ServiceWorker',
|
|
650
|
+
'ServiceWorkerContainer',
|
|
651
|
+
'ServiceWorkerRegistration',
|
|
652
|
+
'Set',
|
|
653
|
+
'ShadowRoot',
|
|
654
|
+
'SharedWorker',
|
|
655
|
+
'SourceBuffer',
|
|
656
|
+
'SourceBufferList',
|
|
657
|
+
'SpeechSynthesisErrorEvent',
|
|
658
|
+
'SpeechSynthesisEvent',
|
|
659
|
+
'SpeechSynthesisUtterance',
|
|
660
|
+
'StaticRange',
|
|
661
|
+
'StereoPannerNode',
|
|
662
|
+
'Storage',
|
|
663
|
+
'StorageBucket',
|
|
664
|
+
'StorageBucketManager',
|
|
665
|
+
'StorageEvent',
|
|
666
|
+
'StorageManager',
|
|
667
|
+
'String',
|
|
668
|
+
'StylePropertyMap',
|
|
669
|
+
'StylePropertyMapReadOnly',
|
|
670
|
+
'StyleSheet',
|
|
671
|
+
'StyleSheetList',
|
|
672
|
+
'SubmitEvent',
|
|
673
|
+
'SubtleCrypto',
|
|
674
|
+
'Symbol',
|
|
675
|
+
'SyncManager',
|
|
676
|
+
'SyntaxError',
|
|
677
|
+
'TEMPORARY',
|
|
678
|
+
'TaskAttributionTiming',
|
|
679
|
+
'TaskController',
|
|
680
|
+
'TaskPriorityChangeEvent',
|
|
681
|
+
'TaskSignal',
|
|
682
|
+
'Text',
|
|
683
|
+
'TextDecoder',
|
|
684
|
+
'TextDecoderStream',
|
|
685
|
+
'TextEncoder',
|
|
686
|
+
'TextEncoderStream',
|
|
687
|
+
'TextEvent',
|
|
688
|
+
'TextMetrics',
|
|
689
|
+
'TextTrack',
|
|
690
|
+
'TextTrackCue',
|
|
691
|
+
'TextTrackCueList',
|
|
692
|
+
'TextTrackList',
|
|
693
|
+
'TimeRanges',
|
|
694
|
+
'Touch',
|
|
695
|
+
'TouchEvent',
|
|
696
|
+
'TouchList',
|
|
697
|
+
'TrackEvent',
|
|
698
|
+
'TransformStream',
|
|
699
|
+
'TransitionEvent',
|
|
700
|
+
'TreeWalker',
|
|
701
|
+
'TrustedHTML',
|
|
702
|
+
'TrustedScript',
|
|
703
|
+
'TrustedScriptURL',
|
|
704
|
+
'TrustedTypePolicy',
|
|
705
|
+
'TrustedTypePolicyFactory',
|
|
706
|
+
'TypeError',
|
|
707
|
+
'UIEvent',
|
|
708
|
+
'URIError',
|
|
709
|
+
'URL',
|
|
710
|
+
'URLPattern',
|
|
711
|
+
'URLSearchParams',
|
|
914
712
|
'USB',
|
|
915
713
|
'USBAlternateInterface',
|
|
916
714
|
'USBConfiguration',
|
|
@@ -924,18 +722,82 @@ exports.default = new Set([
|
|
|
924
722
|
'USBIsochronousOutTransferPacket',
|
|
925
723
|
'USBIsochronousOutTransferResult',
|
|
926
724
|
'USBOutTransferResult',
|
|
725
|
+
'Uint16Array',
|
|
726
|
+
'Uint32Array',
|
|
727
|
+
'Uint8Array',
|
|
728
|
+
'Uint8ClampedArray',
|
|
729
|
+
'UserActivation',
|
|
730
|
+
'VTTCue',
|
|
731
|
+
'ValidityState',
|
|
732
|
+
'VideoColorSpace',
|
|
733
|
+
'VideoDecoder',
|
|
734
|
+
'VideoEncoder',
|
|
735
|
+
'VideoFrame',
|
|
736
|
+
'VideoPlaybackQuality',
|
|
927
737
|
'VirtualKeyboard',
|
|
738
|
+
'VirtualKeyboardGeometryChangeEvent',
|
|
739
|
+
'VisualViewport',
|
|
928
740
|
'WakeLock',
|
|
929
741
|
'WakeLockSentinel',
|
|
742
|
+
'WaveShaperNode',
|
|
743
|
+
'WeakMap',
|
|
744
|
+
'WeakRef',
|
|
745
|
+
'WeakSet',
|
|
746
|
+
'WebAssembly',
|
|
747
|
+
'WebAssembly',
|
|
748
|
+
'WebGL2RenderingContext',
|
|
749
|
+
'WebGLActiveInfo',
|
|
750
|
+
'WebGLBuffer',
|
|
751
|
+
'WebGLContextEvent',
|
|
752
|
+
'WebGLFramebuffer',
|
|
753
|
+
'WebGLProgram',
|
|
754
|
+
'WebGLQuery',
|
|
755
|
+
'WebGLRenderbuffer',
|
|
756
|
+
'WebGLRenderingContext',
|
|
757
|
+
'WebGLSampler',
|
|
758
|
+
'WebGLShader',
|
|
759
|
+
'WebGLShaderPrecisionFormat',
|
|
760
|
+
'WebGLSync',
|
|
761
|
+
'WebGLTexture',
|
|
762
|
+
'WebGLTransformFeedback',
|
|
763
|
+
'WebGLUniformLocation',
|
|
764
|
+
'WebGLVertexArrayObject',
|
|
765
|
+
'WebKitCSSMatrix',
|
|
766
|
+
'WebKitMutationObserver',
|
|
767
|
+
'WebSocket',
|
|
768
|
+
'WheelEvent',
|
|
769
|
+
'Window',
|
|
770
|
+
'Worker',
|
|
771
|
+
'Worklet',
|
|
772
|
+
'WritableStream',
|
|
773
|
+
'WritableStreamDefaultController',
|
|
774
|
+
'WritableStreamDefaultWriter',
|
|
775
|
+
'XMLDocument',
|
|
776
|
+
'XMLHttpRequest',
|
|
777
|
+
'XMLHttpRequestEventTarget',
|
|
778
|
+
'XMLHttpRequestUpload',
|
|
779
|
+
'XMLSerializer',
|
|
780
|
+
'XPathEvaluator',
|
|
781
|
+
'XPathExpression',
|
|
782
|
+
'XPathResult',
|
|
930
783
|
'XRAnchor',
|
|
931
784
|
'XRAnchorSet',
|
|
932
785
|
'XRBoundedReferenceSpace',
|
|
786
|
+
'XRCPUDepthInformation',
|
|
787
|
+
'XRDOMOverlayState',
|
|
788
|
+
'XRDepthInformation',
|
|
933
789
|
'XRFrame',
|
|
790
|
+
'XRHitTestResult',
|
|
791
|
+
'XRHitTestSource',
|
|
934
792
|
'XRInputSource',
|
|
935
793
|
'XRInputSourceArray',
|
|
936
794
|
'XRInputSourceEvent',
|
|
937
795
|
'XRInputSourcesChangeEvent',
|
|
796
|
+
'XRLayer',
|
|
797
|
+
'XRLightEstimate',
|
|
798
|
+
'XRLightProbe',
|
|
938
799
|
'XRPose',
|
|
800
|
+
'XRRay',
|
|
939
801
|
'XRReferenceSpace',
|
|
940
802
|
'XRReferenceSpaceEvent',
|
|
941
803
|
'XRRenderState',
|
|
@@ -944,130 +806,283 @@ exports.default = new Set([
|
|
|
944
806
|
'XRSessionEvent',
|
|
945
807
|
'XRSpace',
|
|
946
808
|
'XRSystem',
|
|
809
|
+
'XRTransientInputHitTestResult',
|
|
810
|
+
'XRTransientInputHitTestSource',
|
|
947
811
|
'XRView',
|
|
948
812
|
'XRViewerPose',
|
|
949
813
|
'XRViewport',
|
|
950
|
-
'
|
|
951
|
-
'XRCPUDepthInformation',
|
|
952
|
-
'XRDepthInformation',
|
|
814
|
+
'XRWebGLBinding',
|
|
953
815
|
'XRWebGLDepthInformation',
|
|
954
|
-
'
|
|
955
|
-
'
|
|
956
|
-
'
|
|
957
|
-
'
|
|
958
|
-
'
|
|
959
|
-
'
|
|
960
|
-
'
|
|
961
|
-
'
|
|
962
|
-
'
|
|
963
|
-
'
|
|
964
|
-
'
|
|
965
|
-
'
|
|
966
|
-
'
|
|
816
|
+
'XRWebGLLayer',
|
|
817
|
+
'XSLTProcessor',
|
|
818
|
+
'__defineGetter__',
|
|
819
|
+
'__defineSetter__',
|
|
820
|
+
'__lookupGetter__',
|
|
821
|
+
'__lookupSetter__',
|
|
822
|
+
'__proto__',
|
|
823
|
+
'addEventListener',
|
|
824
|
+
'alert',
|
|
825
|
+
'atob',
|
|
826
|
+
'blur',
|
|
827
|
+
'btoa',
|
|
828
|
+
'caches',
|
|
829
|
+
'cancelAnimationFrame',
|
|
830
|
+
'cancelIdleCallback',
|
|
831
|
+
'captureEvents',
|
|
832
|
+
'chrome',
|
|
833
|
+
'clear',
|
|
834
|
+
'clearInterval',
|
|
835
|
+
'clearTimeout',
|
|
836
|
+
'clientInformation',
|
|
837
|
+
'close',
|
|
838
|
+
'closed',
|
|
839
|
+
'confirm',
|
|
840
|
+
'console',
|
|
841
|
+
'constructor',
|
|
842
|
+
'cookieStore',
|
|
843
|
+
'copy',
|
|
844
|
+
'createImageBitmap',
|
|
845
|
+
'crossOriginIsolated',
|
|
846
|
+
'crypto',
|
|
847
|
+
'customElements',
|
|
848
|
+
'debug',
|
|
849
|
+
'decodeURI',
|
|
850
|
+
'decodeURIComponent',
|
|
851
|
+
'defaultStatus',
|
|
852
|
+
'defaultstatus',
|
|
853
|
+
'devicePixelRatio',
|
|
854
|
+
'dir',
|
|
855
|
+
'dirxml',
|
|
856
|
+
'dispatchEvent',
|
|
857
|
+
'document',
|
|
858
|
+
'encodeURI',
|
|
859
|
+
'encodeURIComponent',
|
|
860
|
+
'escape',
|
|
861
|
+
'eval',
|
|
862
|
+
'event',
|
|
863
|
+
'external',
|
|
864
|
+
'fetch',
|
|
865
|
+
'find',
|
|
866
|
+
'focus',
|
|
867
|
+
'frameElement',
|
|
868
|
+
'frames',
|
|
869
|
+
'getAccessibleName',
|
|
870
|
+
'getAccessibleRole',
|
|
871
|
+
'getComputedStyle',
|
|
872
|
+
'getEventListeners',
|
|
873
|
+
'getSelection',
|
|
874
|
+
'globalThis',
|
|
875
|
+
'hasOwnProperty',
|
|
876
|
+
'history',
|
|
877
|
+
'indexedDB',
|
|
878
|
+
'innerHeight',
|
|
879
|
+
'innerWidth',
|
|
880
|
+
'inspect',
|
|
881
|
+
'isFinite',
|
|
882
|
+
'isNaN',
|
|
883
|
+
'isPrototypeOf',
|
|
884
|
+
'isSecureContext',
|
|
885
|
+
'keys',
|
|
886
|
+
'length',
|
|
887
|
+
'localStorage',
|
|
888
|
+
'location',
|
|
889
|
+
'locationbar',
|
|
890
|
+
'matchMedia',
|
|
891
|
+
'menubar',
|
|
892
|
+
'monitor',
|
|
893
|
+
'monitorEvents',
|
|
894
|
+
'moveBy',
|
|
895
|
+
'moveTo',
|
|
896
|
+
'name',
|
|
897
|
+
'navigator',
|
|
898
|
+
'offscreenBuffering',
|
|
899
|
+
'onabort',
|
|
900
|
+
'onafterprint',
|
|
901
|
+
'onanimationend',
|
|
902
|
+
'onanimationiteration',
|
|
903
|
+
'onanimationstart',
|
|
904
|
+
'onappinstalled',
|
|
905
|
+
'onauxclick',
|
|
906
|
+
'onbeforeinstallprompt',
|
|
907
|
+
'onbeforeprint',
|
|
908
|
+
'onbeforeunload',
|
|
909
|
+
'onbeforexrselect',
|
|
910
|
+
'onblur',
|
|
911
|
+
'oncancel',
|
|
912
|
+
'oncanplay',
|
|
913
|
+
'oncanplaythrough',
|
|
914
|
+
'onchange',
|
|
915
|
+
'onclick',
|
|
916
|
+
'onclose',
|
|
917
|
+
'oncontextmenu',
|
|
918
|
+
'oncuechange',
|
|
919
|
+
'ondblclick',
|
|
920
|
+
'ondevicemotion',
|
|
921
|
+
'ondeviceorientation',
|
|
922
|
+
'ondeviceorientationabsolute',
|
|
923
|
+
'ondrag',
|
|
924
|
+
'ondragend',
|
|
925
|
+
'ondragenter',
|
|
926
|
+
'ondragleave',
|
|
927
|
+
'ondragover',
|
|
928
|
+
'ondragstart',
|
|
929
|
+
'ondrop',
|
|
930
|
+
'ondurationchange',
|
|
931
|
+
'onemptied',
|
|
932
|
+
'onended',
|
|
933
|
+
'onerror',
|
|
934
|
+
'onfocus',
|
|
935
|
+
'onformdata',
|
|
936
|
+
'ongotpointercapture',
|
|
937
|
+
'onhashchange',
|
|
938
|
+
'oninput',
|
|
939
|
+
'oninvalid',
|
|
940
|
+
'onkeydown',
|
|
941
|
+
'onkeypress',
|
|
942
|
+
'onkeyup',
|
|
943
|
+
'onlanguagechange',
|
|
944
|
+
'onload',
|
|
945
|
+
'onloadeddata',
|
|
946
|
+
'onloadedmetadata',
|
|
947
|
+
'onloadstart',
|
|
948
|
+
'onlostpointercapture',
|
|
949
|
+
'onmessage',
|
|
950
|
+
'onmessageerror',
|
|
951
|
+
'onmousedown',
|
|
952
|
+
'onmouseenter',
|
|
953
|
+
'onmouseleave',
|
|
954
|
+
'onmousemove',
|
|
955
|
+
'onmouseout',
|
|
956
|
+
'onmouseover',
|
|
957
|
+
'onmouseup',
|
|
958
|
+
'onmousewheel',
|
|
959
|
+
'onoffline',
|
|
960
|
+
'ononline',
|
|
961
|
+
'onpagehide',
|
|
962
|
+
'onpageshow',
|
|
963
|
+
'onpause',
|
|
964
|
+
'onplay',
|
|
965
|
+
'onplaying',
|
|
966
|
+
'onpointercancel',
|
|
967
|
+
'onpointerdown',
|
|
968
|
+
'onpointerenter',
|
|
969
|
+
'onpointerleave',
|
|
970
|
+
'onpointermove',
|
|
971
|
+
'onpointerout',
|
|
972
|
+
'onpointerover',
|
|
967
973
|
'onpointerrawupdate',
|
|
968
|
-
'
|
|
969
|
-
'
|
|
970
|
-
'
|
|
971
|
-
'
|
|
972
|
-
'
|
|
973
|
-
'
|
|
974
|
-
'
|
|
975
|
-
'
|
|
976
|
-
'
|
|
977
|
-
'
|
|
978
|
-
'
|
|
979
|
-
'
|
|
980
|
-
'
|
|
981
|
-
'
|
|
982
|
-
'
|
|
983
|
-
'
|
|
984
|
-
'
|
|
985
|
-
'
|
|
986
|
-
'
|
|
987
|
-
'
|
|
988
|
-
'
|
|
989
|
-
'
|
|
990
|
-
'
|
|
991
|
-
'
|
|
992
|
-
'
|
|
993
|
-
'
|
|
994
|
-
'
|
|
995
|
-
'
|
|
996
|
-
'
|
|
997
|
-
'
|
|
998
|
-
'
|
|
999
|
-
'
|
|
1000
|
-
'
|
|
1001
|
-
'
|
|
1002
|
-
'Scheduler',
|
|
1003
|
-
'TaskController',
|
|
1004
|
-
'TaskPriorityChangeEvent',
|
|
1005
|
-
'TaskSignal',
|
|
1006
|
-
'SharedWorker',
|
|
1007
|
-
'SpeechSynthesisErrorEvent',
|
|
1008
|
-
'SpeechSynthesisEvent',
|
|
1009
|
-
'SpeechSynthesisUtterance',
|
|
1010
|
-
'TrustedHTML',
|
|
1011
|
-
'TrustedScript',
|
|
1012
|
-
'TrustedScriptURL',
|
|
1013
|
-
'TrustedTypePolicy',
|
|
1014
|
-
'TrustedTypePolicyFactory',
|
|
1015
|
-
'URLPattern',
|
|
1016
|
-
'VideoPlaybackQuality',
|
|
1017
|
-
'VirtualKeyboardGeometryChangeEvent',
|
|
1018
|
-
'XSLTProcessor',
|
|
1019
|
-
'webkitSpeechGrammar',
|
|
1020
|
-
'webkitSpeechGrammarList',
|
|
1021
|
-
'webkitSpeechRecognition',
|
|
1022
|
-
'webkitSpeechRecognitionError',
|
|
1023
|
-
'webkitSpeechRecognitionEvent',
|
|
974
|
+
'onpointerup',
|
|
975
|
+
'onpopstate',
|
|
976
|
+
'onprogress',
|
|
977
|
+
'onratechange',
|
|
978
|
+
'onrejectionhandled',
|
|
979
|
+
'onreset',
|
|
980
|
+
'onresize',
|
|
981
|
+
'onscroll',
|
|
982
|
+
'onsearch',
|
|
983
|
+
'onseeked',
|
|
984
|
+
'onseeking',
|
|
985
|
+
'onselect',
|
|
986
|
+
'onselectionchange',
|
|
987
|
+
'onselectstart',
|
|
988
|
+
'onstalled',
|
|
989
|
+
'onstorage',
|
|
990
|
+
'onsubmit',
|
|
991
|
+
'onsuspend',
|
|
992
|
+
'ontimeupdate',
|
|
993
|
+
'ontoggle',
|
|
994
|
+
'ontransitioncancel',
|
|
995
|
+
'ontransitionend',
|
|
996
|
+
'ontransitionrun',
|
|
997
|
+
'ontransitionstart',
|
|
998
|
+
'onunhandledrejection',
|
|
999
|
+
'onunload',
|
|
1000
|
+
'onvolumechange',
|
|
1001
|
+
'onwaiting',
|
|
1002
|
+
'onwebkitanimationend',
|
|
1003
|
+
'onwebkitanimationiteration',
|
|
1004
|
+
'onwebkitanimationstart',
|
|
1005
|
+
'onwebkittransitionend',
|
|
1006
|
+
'onwheel',
|
|
1007
|
+
'open',
|
|
1024
1008
|
'openDatabase',
|
|
1025
|
-
'
|
|
1026
|
-
'
|
|
1027
|
-
'
|
|
1028
|
-
'
|
|
1009
|
+
'opener',
|
|
1010
|
+
'origin',
|
|
1011
|
+
'originAgentCluster',
|
|
1012
|
+
'outerHeight',
|
|
1013
|
+
'outerWidth',
|
|
1014
|
+
'pageXOffset',
|
|
1015
|
+
'pageYOffset',
|
|
1016
|
+
'parent',
|
|
1017
|
+
'parseFloat',
|
|
1018
|
+
'parseInt',
|
|
1019
|
+
'performance',
|
|
1020
|
+
'personalbar',
|
|
1021
|
+
'postMessage',
|
|
1022
|
+
'print',
|
|
1029
1023
|
'profile',
|
|
1030
1024
|
'profileEnd',
|
|
1031
|
-
'
|
|
1025
|
+
'prompt',
|
|
1026
|
+
'propertyIsEnumerable',
|
|
1027
|
+
'queryObjects',
|
|
1028
|
+
'queueMicrotask',
|
|
1029
|
+
'releaseEvents',
|
|
1030
|
+
'removeEventListener',
|
|
1031
|
+
'reportError',
|
|
1032
|
+
'requestAnimationFrame',
|
|
1033
|
+
'requestIdleCallback',
|
|
1034
|
+
'resizeBy',
|
|
1035
|
+
'resizeTo',
|
|
1036
|
+
'scheduler',
|
|
1037
|
+
'screen',
|
|
1038
|
+
'screenLeft',
|
|
1039
|
+
'screenTop',
|
|
1040
|
+
'screenX',
|
|
1041
|
+
'screenY',
|
|
1042
|
+
'scroll',
|
|
1043
|
+
'scrollBy',
|
|
1044
|
+
'scrollTo',
|
|
1045
|
+
'scrollX',
|
|
1046
|
+
'scrollY',
|
|
1047
|
+
'scrollbars',
|
|
1048
|
+
'self',
|
|
1049
|
+
'sessionStorage',
|
|
1050
|
+
'setInterval',
|
|
1051
|
+
'setTimeout',
|
|
1052
|
+
'showDirectoryPicker',
|
|
1053
|
+
'showOpenFilePicker',
|
|
1054
|
+
'showSaveFilePicker',
|
|
1055
|
+
'speechSynthesis',
|
|
1056
|
+
'status',
|
|
1057
|
+
'statusbar',
|
|
1058
|
+
'stop',
|
|
1059
|
+
'styleMedia',
|
|
1032
1060
|
'table',
|
|
1033
|
-
'
|
|
1034
|
-
'
|
|
1035
|
-
'
|
|
1061
|
+
'toLocaleString',
|
|
1062
|
+
'toString',
|
|
1063
|
+
'toolbar',
|
|
1064
|
+
'top',
|
|
1065
|
+
'trustedTypes',
|
|
1036
1066
|
'undebug',
|
|
1037
|
-
'
|
|
1067
|
+
'undefined',
|
|
1068
|
+
'unescape',
|
|
1038
1069
|
'unmonitor',
|
|
1039
|
-
'inspect',
|
|
1040
|
-
'copy',
|
|
1041
|
-
'queryObjects',
|
|
1042
|
-
'$_',
|
|
1043
|
-
'$0',
|
|
1044
|
-
'$1',
|
|
1045
|
-
'$2',
|
|
1046
|
-
'$3',
|
|
1047
|
-
'$4',
|
|
1048
|
-
'getEventListeners',
|
|
1049
|
-
'getAccessibleName',
|
|
1050
|
-
'getAccessibleRole',
|
|
1051
|
-
'monitorEvents',
|
|
1052
1070
|
'unmonitorEvents',
|
|
1053
|
-
'$',
|
|
1054
|
-
'$$',
|
|
1055
|
-
'$x',
|
|
1056
|
-
'TEMPORARY',
|
|
1057
|
-
'PERSISTENT',
|
|
1058
|
-
'constructor',
|
|
1059
|
-
'addEventListener',
|
|
1060
|
-
'dispatchEvent',
|
|
1061
|
-
'removeEventListener',
|
|
1062
|
-
'__defineGetter__',
|
|
1063
|
-
'__defineSetter__',
|
|
1064
|
-
'hasOwnProperty',
|
|
1065
|
-
'__lookupGetter__',
|
|
1066
|
-
'__lookupSetter__',
|
|
1067
|
-
'isPrototypeOf',
|
|
1068
|
-
'propertyIsEnumerable',
|
|
1069
|
-
'toString',
|
|
1070
1071
|
'valueOf',
|
|
1071
|
-
'
|
|
1072
|
-
'
|
|
1072
|
+
'values',
|
|
1073
|
+
'visualViewport',
|
|
1074
|
+
'webkitCancelAnimationFrame',
|
|
1075
|
+
'webkitMediaStream',
|
|
1076
|
+
'webkitRTCPeerConnection',
|
|
1077
|
+
'webkitRequestAnimationFrame',
|
|
1078
|
+
'webkitRequestFileSystem',
|
|
1079
|
+
'webkitResolveLocalFileSystemURL',
|
|
1080
|
+
'webkitSpeechGrammar',
|
|
1081
|
+
'webkitSpeechGrammarList',
|
|
1082
|
+
'webkitSpeechRecognition',
|
|
1083
|
+
'webkitSpeechRecognitionError',
|
|
1084
|
+
'webkitSpeechRecognitionEvent',
|
|
1085
|
+
'webkitStorageInfo',
|
|
1086
|
+
'webkitURL',
|
|
1087
|
+
'window',
|
|
1073
1088
|
]);
|