This repository has been archived by the owner on Oct 10, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
harness.js
799 lines (796 loc) · 38.4 KB
/
harness.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
/*******************************************************************************
* Copyright (c) 2013 Max Schaefer.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Max Schaefer - initial API and implementation
*******************************************************************************/
/* This module contains a list of native functions and the
* properties they are originally stored in. */
if(typeof define !== 'function') {
var define = require('amdefine')(module);
}
define(function(require, exports) {
// maps canonical name of native function to the property it is stored in
exports.nativeFlows = {
"eval": "eval",
"parseInt": "parseInt",
"parseFloat": "parseFloat",
"isNaN": "isNaN",
"isFinite": "isFinite",
"decodeURI": "decodeURI",
"decodeURIComponent": "decodeURIComponent",
"encodeURI": "encodeURI",
"encodeURIComponent": "encodeURIComponent",
"Object": "Object",
"Object_defineProperties": "defineProperties",
"Object_isSealed": "isSealed",
"Object_defineProperty": "defineProperty",
"Object_freeze": "freeze",
"Object_preventExtensions": "preventExtensions",
"Object_keys": "keys",
"Object_getOwnPropertyNames": "getOwnPropertyNames",
"Object_getPrototypeOf": "getPrototypeOf",
"Object_is": "is",
"Object_isFrozen": "isFrozen",
"Object_prototype_toLocaleString": "toLocaleString",
"Object_prototype_valueOf": "valueOf",
"Object_prototype_toString": "toString",
"Object_prototype_hasOwnProperty": "hasOwnProperty",
"Object_prototype_isPrototypeOf": "isPrototypeOf",
"Object_prototype_propertyIsEnumerable": "propertyIsEnumerable",
"Object_getOwnPropertyDescriptor": "getOwnPropertyDescriptor",
"Object_isExtensible": "isExtensible",
"Object_seal": "seal",
"Object_create": "create",
"Function": "Function",
"Function_prototype": "prototype",
"Function_prototype_toString": "toString",
"Function_prototype_apply": "apply",
"Function_prototype_bind": "bind",
"Function_prototype_call": "call",
"Array": "Array",
"Array_isArray": "isArray",
"Array_prototype_some": "some",
"Array_prototype_indexOf": "indexOf",
"Array_prototype_lastIndexOf": "lastIndexOf",
"Array_prototype_push": "push",
"Array_prototype_sort": "sort",
"Array_prototype_concat": "concat",
"Array_prototype_toLocaleString": "toLocaleString",
"Array_prototype_map": "map",
"Array_prototype_forEach": "forEach",
"Array_prototype_splice": "splice",
"Array_prototype_reverse": "reverse",
"Array_prototype_toString": "toString",
"Array_prototype_join": "join",
"Array_prototype_every": "every",
"Array_prototype_slice": "slice",
"Array_prototype_reduce": "reduce",
"Array_prototype_pop": "pop",
"Array_prototype_unshift": "unshift",
"Array_prototype_shift": "shift",
"Array_prototype_reduceRight": "reduceRight",
"Array_prototype_filter": "filter",
"String": "String",
"String_prototype_strike": "strike",
"String_prototype_fontcolor": "fontcolor",
"String_prototype_blink": "blink",
"String_prototype_trimLeft": "trimLeft",
"String_prototype_fixed": "fixed",
"String_prototype_split": "split",
"String_prototype_indexOf": "indexOf",
"String_prototype_lastIndexOf": "lastIndexOf",
"String_prototype_charAt": "charAt",
"String_prototype_small": "small",
"String_prototype_toLocaleUpperCase": "toLocaleUpperCase",
"String_prototype_concat": "concat",
"String_prototype_bold": "bold",
"String_prototype_substring": "substring",
"String_prototype_toLowerCase": "toLowerCase",
"String_prototype_valueOf": "valueOf",
"String_prototype_big": "big",
"String_prototype_fontsize": "fontsize",
"String_prototype_italics": "italics",
"String_prototype_search": "search",
"String_prototype_sub": "sub",
"String_prototype_toString": "toString",
"String_prototype_toUpperCase": "toUpperCase",
"String_prototype_link": "link",
"String_prototype_slice": "slice",
"String_prototype_replace": "replace",
"String_prototype_anchor": "anchor",
"String_prototype_substr": "substr",
"String_prototype_localeCompare": "localeCompare",
"String_prototype_sup": "sup",
"String_prototype_charCodeAt": "charCodeAt",
"String_prototype_toLocaleLowerCase": "toLocaleLowerCase",
"String_prototype_trim": "trim",
"String_prototype_match": "match",
"String_prototype_trimRight": "trimRight",
"String_fromCharCode": "fromCharCode",
"Boolean": "Boolean",
"Boolean_prototype_valueOf": "valueOf",
"Boolean_prototype_toString": "toString",
"Number": "Number",
"Number_isFinite": "isFinite",
"Number_isNaN": "isNaN",
"Number_prototype_toFixed": "toFixed",
"Number_prototype_toExponential": "toExponential",
"Number_prototype_toLocaleString": "toLocaleString",
"Number_prototype_valueOf": "valueOf",
"Number_prototype_toString": "toString",
"Number_prototype_toPrecision": "toPrecision",
"Date": "Date",
"Date_now": "now",
"Date_UTC": "UTC",
"Date_parse": "parse",
"Date_prototype_getMinutes": "getMinutes",
"Date_prototype_setUTCMilliseconds": "setUTCMilliseconds",
"Date_prototype_setUTCDate": "setUTCDate",
"Date_prototype_getMonth": "getMonth",
"Date_prototype_toGMTString": "toGMTString",
"Date_prototype_setUTCMinutes": "setUTCMinutes",
"Date_prototype_setUTCMonth": "setUTCMonth",
"Date_prototype_getUTCMinutes": "getUTCMinutes",
"Date_prototype_setFullYear": "setFullYear",
"Date_prototype_toDateString": "toDateString",
"Date_prototype_getUTCDay": "getUTCDay",
"Date_prototype_getTimezoneOffset": "getTimezoneOffset",
"Date_prototype_setUTCHours": "setUTCHours",
"Date_prototype_getUTCDate": "getUTCDate",
"Date_prototype_getMilliseconds": "getMilliseconds",
"Date_prototype_getUTCMilliseconds": "getUTCMilliseconds",
"Date_prototype_getDay": "getDay",
"Date_prototype_toJSON": "toJSON",
"Date_prototype_getUTCFullYear": "getUTCFullYear",
"Date_prototype_toLocaleString": "toLocaleString",
"Date_prototype_setUTCSeconds": "setUTCSeconds",
"Date_prototype_setMonth": "setMonth",
"Date_prototype_getDate": "getDate",
"Date_prototype_valueOf": "valueOf",
"Date_prototype_setMinutes": "setMinutes",
"Date_prototype_getTime": "getTime",
"Date_prototype_setSeconds": "setSeconds",
"Date_prototype_toUTCString": "toUTCString",
"Date_prototype_setTime": "setTime",
"Date_prototype_toString": "toString",
"Date_prototype_setYear": "setYear",
"Date_prototype_setHours": "setHours",
"Date_prototype_toTimeString": "toTimeString",
"Date_prototype_getUTCSeconds": "getUTCSeconds",
"Date_prototype_toLocaleTimeString": "toLocaleTimeString",
"Date_prototype_setMilliseconds": "setMilliseconds",
"Date_prototype_getYear": "getYear",
"Date_prototype_getFullYear": "getFullYear",
"Date_prototype_getUTCMonth": "getUTCMonth",
"Date_prototype_getHours": "getHours",
"Date_prototype_toLocaleDateString": "toLocaleDateString",
"Date_prototype_getUTCHours": "getUTCHours",
"Date_prototype_toISOString": "toISOString",
"Date_prototype_getSeconds": "getSeconds",
"Date_prototype_setUTCFullYear": "setUTCFullYear",
"Date_prototype_setDate": "setDate",
"RegExp": "RegExp",
"RegExp_prototype_compile": "compile",
"RegExp_prototype_exec": "exec",
"RegExp_prototype_toString": "toString",
"RegExp_prototype_test": "test",
"Error": "Error",
"Error_captureStackTrace": "captureStackTrace",
"Error_prototype_toString": "toString",
"EvalError": "EvalError",
"RangeError": "RangeError",
"ReferenceError": "ReferenceError",
"SyntaxError": "SyntaxError",
"TypeError": "TypeError",
"URIError": "URIError",
"Math_sqrt": "sqrt",
"Math_abs": "abs",
"Math_max": "max",
"Math_tan": "tan",
"Math_round": "round",
"Math_random": "random",
"Math_exp": "exp",
"Math_log": "log",
"Math_ceil": "ceil",
"Math_sin": "sin",
"Math_atan": "atan",
"Math_cos": "cos",
"Math_asin": "asin",
"Math_pow": "pow",
"Math_atan2": "atan2",
"Math_acos": "acos",
"Math_min": "min",
"Math_floor": "floor",
"JSON_parse": "parse",
"JSON_stringify": "stringify",
"Attr": "Attr",
"Attr_toString": "toString",
"Audio": "Audio",
"DOMStringList": "DOMStringList",
"DOMStringList_toString": "toString",
"DOMStringList_prototype_contains": "contains",
"DOMStringList_prototype_item": "item",
"CanvasGradient": "CanvasGradient",
"CanvasGradient_toString": "toString",
"CanvasGradient_prototype_addColorStop": "addColorStop",
"CanvasPattern": "CanvasPattern",
"CanvasPattern_toString": "toString",
"CanvasRenderingContext2D": "CanvasRenderingContext2D",
"CanvasRenderingContext2D_toString": "toString",
"CanvasRenderingContext2D_prototype_fillRect": "fillRect",
"CanvasRenderingContext2D_prototype_setLineWidth": "setLineWidth",
"CanvasRenderingContext2D_prototype_save": "save",
"CanvasRenderingContext2D_prototype_strokeRect": "strokeRect",
"CanvasRenderingContext2D_prototype_createRadialGradient": "createRadialGradient",
"CanvasRenderingContext2D_prototype_stroke": "stroke",
"CanvasRenderingContext2D_prototype_setLineCap": "setLineCap",
"CanvasRenderingContext2D_prototype_isPointInPath": "isPointInPath",
"CanvasRenderingContext2D_prototype_lineTo": "lineTo",
"CanvasRenderingContext2D_prototype_setMiterLimit": "setMiterLimit",
"CanvasRenderingContext2D_prototype_clip": "clip",
"CanvasRenderingContext2D_prototype_arc": "arc",
"CanvasRenderingContext2D_prototype_closePath": "closePath",
"CanvasRenderingContext2D_prototype_restore": "restore",
"CanvasRenderingContext2D_prototype_getImageData": "getImageData",
"CanvasRenderingContext2D_prototype_setTransform": "setTransform",
"CanvasRenderingContext2D_prototype_setStrokeColor": "setStrokeColor",
"CanvasRenderingContext2D_prototype_clearRect": "clearRect",
"CanvasRenderingContext2D_prototype_webkitPutImageDataHD": "webkitPutImageDataHD",
"CanvasRenderingContext2D_prototype_setFillColor": "setFillColor",
"CanvasRenderingContext2D_prototype_createLinearGradient": "createLinearGradient",
"CanvasRenderingContext2D_prototype_drawImage": "drawImage",
"CanvasRenderingContext2D_prototype_bezierCurveTo": "bezierCurveTo",
"CanvasRenderingContext2D_prototype_moveTo": "moveTo",
"CanvasRenderingContext2D_prototype_fill": "fill",
"CanvasRenderingContext2D_prototype_rect": "rect",
"CanvasRenderingContext2D_prototype_webkitGetImageDataHD": "webkitGetImageDataHD",
"CanvasRenderingContext2D_prototype_fillText": "fillText",
"CanvasRenderingContext2D_prototype_putImageData": "putImageData",
"CanvasRenderingContext2D_prototype_beginPath": "beginPath",
"CanvasRenderingContext2D_prototype_rotate": "rotate",
"CanvasRenderingContext2D_prototype_measureText": "measureText",
"CanvasRenderingContext2D_prototype_scale": "scale",
"CanvasRenderingContext2D_prototype_quadraticCurveTo": "quadraticCurveTo",
"CanvasRenderingContext2D_prototype_translate": "translate",
"CanvasRenderingContext2D_prototype_setCompositeOperation": "setCompositeOperation",
"CanvasRenderingContext2D_prototype_clearShadow": "clearShadow",
"CanvasRenderingContext2D_prototype_setShadow": "setShadow",
"CanvasRenderingContext2D_prototype_setLineJoin": "setLineJoin",
"CanvasRenderingContext2D_prototype_arcTo": "arcTo",
"CanvasRenderingContext2D_prototype_strokeText": "strokeText",
"CanvasRenderingContext2D_prototype_createPattern": "createPattern",
"CanvasRenderingContext2D_prototype_drawImageFromRect": "drawImageFromRect",
"CanvasRenderingContext2D_prototype_transform": "transform",
"CanvasRenderingContext2D_prototype_setAlpha": "setAlpha",
"CanvasRenderingContext2D_prototype_createImageData": "createImageData",
"CDATASection": "CDATASection",
"CDATASection_toString": "toString",
"CharacterData": "CharacterData",
"CharacterData_toString": "toString",
"CharacterData_prototype_replaceData": "replaceData",
"CharacterData_prototype_insertData": "insertData",
"CharacterData_prototype_deleteData": "deleteData",
"CharacterData_prototype_appendData": "appendData",
"CharacterData_prototype_substringData": "substringData",
"Comment": "Comment",
"Comment_toString": "toString",
"CSSRule": "CSSRule",
"CSSRule_toString": "toString",
"CSSStyleDeclaration": "CSSStyleDeclaration",
"CSSStyleDeclaration_toString": "toString",
"CSSStyleDeclaration_prototype_getPropertyCSSValue": "getPropertyCSSValue",
"CSSStyleDeclaration_prototype_setProperty": "setProperty",
"CSSStyleDeclaration_prototype_getPropertyPriority": "getPropertyPriority",
"CSSStyleDeclaration_prototype_item": "item",
"CSSStyleDeclaration_prototype_isPropertyImplicit": "isPropertyImplicit",
"CSSStyleDeclaration_prototype_getPropertyValue": "getPropertyValue",
"CSSStyleDeclaration_prototype_getPropertyShorthand": "getPropertyShorthand",
"CSSStyleDeclaration_prototype_removeProperty": "removeProperty",
"CSSStyleSheet": "CSSStyleSheet",
"CSSStyleSheet_toString": "toString",
"CSSStyleSheet_prototype_deleteRule": "deleteRule",
"CSSStyleSheet_prototype_removeRule": "removeRule",
"CSSStyleSheet_prototype_insertRule": "insertRule",
"CSSStyleSheet_prototype_addRule": "addRule",
"Document": "Document",
"Document_toString": "toString",
"Document_prototype_createElementNS": "createElementNS",
"Document_prototype_queryCommandIndeterm": "queryCommandIndeterm",
"Document_prototype_createProcessingInstruction": "createProcessingInstruction",
"Document_prototype_evaluate": "evaluate",
"Document_prototype_createAttribute": "createAttribute",
"Document_prototype_adoptNode": "adoptNode",
"Document_prototype_getCSSCanvasContext": "getCSSCanvasContext",
"Document_prototype_createTextNode": "createTextNode",
"Document_prototype_queryCommandState": "queryCommandState",
"Document_prototype_importNode": "importNode",
"Document_prototype_getSelection": "getSelection",
"Document_prototype_webkitCancelFullScreen": "webkitCancelFullScreen",
"Document_prototype_createElement": "createElement",
"Document_prototype_getElementsByName": "getElementsByName",
"Document_prototype_createCDATASection": "createCDATASection",
"Document_prototype_querySelectorAll": "querySelectorAll",
"Document_prototype_caretRangeFromPoint": "caretRangeFromPoint",
"Document_prototype_queryCommandEnabled": "queryCommandEnabled",
"Document_prototype_createRange": "createRange",
"Document_prototype_createDocumentFragment": "createDocumentFragment",
"Document_prototype_createNodeIterator": "createNodeIterator",
"Document_prototype_createEntityReference": "createEntityReference",
"Document_prototype_createAttributeNS": "createAttributeNS",
"Document_prototype_getOverrideStyle": "getOverrideStyle",
"Document_prototype_execCommand": "execCommand",
"Document_prototype_createTreeWalker": "createTreeWalker",
"Document_prototype_getElementById": "getElementById",
"Document_prototype_webkitGetFlowByName": "webkitGetFlowByName",
"Document_prototype_getElementsByClassName": "getElementsByClassName",
"Document_prototype_querySelector": "querySelector",
"Document_prototype_createExpression": "createExpression",
"Document_prototype_createComment": "createComment",
"Document_prototype_createEvent": "createEvent",
"Document_prototype_elementFromPoint": "elementFromPoint",
"Document_prototype_getElementsByTagNameNS": "getElementsByTagNameNS",
"Document_prototype_createNSResolver": "createNSResolver",
"Document_prototype_webkitExitFullscreen": "webkitExitFullscreen",
"Document_prototype_queryCommandValue": "queryCommandValue",
"Document_prototype_getElementsByTagName": "getElementsByTagName",
"Document_prototype_queryCommandSupported": "queryCommandSupported",
"DocumentFragment": "DocumentFragment",
"DocumentFragment_toString": "toString",
"DocumentFragment_prototype_querySelectorAll": "querySelectorAll",
"DocumentFragment_prototype_querySelector": "querySelector",
"DocumentType": "DocumentType",
"DocumentType_toString": "toString",
"DOMException": "DOMException",
"DOMException_toString": "toString",
"DOMException_prototype_toString": "toString",
"DOMImplementation": "DOMImplementation",
"DOMImplementation_toString": "toString",
"DOMImplementation_prototype_createDocument": "createDocument",
"DOMImplementation_prototype_createHTMLDocument": "createHTMLDocument",
"DOMImplementation_prototype_createDocumentType": "createDocumentType",
"DOMImplementation_prototype_hasFeature": "hasFeature",
"DOMImplementation_prototype_createCSSStyleSheet": "createCSSStyleSheet",
"DOMParser": "DOMParser",
"DOMParser_toString": "toString",
"DOMParser_prototype_parseFromString": "parseFromString",
"Element": "Element",
"Element_toString": "toString",
"Element_prototype_setAttributeNode": "setAttributeNode",
"Element_prototype_scrollIntoView": "scrollIntoView",
"Element_prototype_webkitRequestFullScreen": "webkitRequestFullScreen",
"Element_prototype_getAttributeNode": "getAttributeNode",
"Element_prototype_focus": "focus",
"Element_prototype_setAttributeNS": "setAttributeNS",
"Element_prototype_getAttribute": "getAttribute",
"Element_prototype_scrollIntoViewIfNeeded": "scrollIntoViewIfNeeded",
"Element_prototype_hasAttributeNS": "hasAttributeNS",
"Element_prototype_getClientRects": "getClientRects",
"Element_prototype_getAttributeNS": "getAttributeNS",
"Element_prototype_webkitMatchesSelector": "webkitMatchesSelector",
"Element_prototype_setAttribute": "setAttribute",
"Element_prototype_removeAttributeNS": "removeAttributeNS",
"Element_prototype_getBoundingClientRect": "getBoundingClientRect",
"Element_prototype_querySelectorAll": "querySelectorAll",
"Element_prototype_hasAttribute": "hasAttribute",
"Element_prototype_setAttributeNodeNS": "setAttributeNodeNS",
"Element_prototype_getElementsByClassName": "getElementsByClassName",
"Element_prototype_getAttributeNodeNS": "getAttributeNodeNS",
"Element_prototype_querySelector": "querySelector",
"Element_prototype_webkitRequestFullscreen": "webkitRequestFullscreen",
"Element_prototype_removeAttribute": "removeAttribute",
"Element_prototype_scrollByLines": "scrollByLines",
"Element_prototype_blur": "blur",
"Element_prototype_removeAttributeNode": "removeAttributeNode",
"Element_prototype_getElementsByTagNameNS": "getElementsByTagNameNS",
"Element_prototype_scrollByPages": "scrollByPages",
"Element_prototype_getElementsByTagName": "getElementsByTagName",
"Event": "Event",
"Event_toString": "toString",
"Event_prototype_stopPropagation": "stopPropagation",
"Event_prototype_initEvent": "initEvent",
"Event_prototype_preventDefault": "preventDefault",
"Event_prototype_stopImmediatePropagation": "stopImmediatePropagation",
"HTMLCollection": "HTMLCollection",
"HTMLCollection_toString": "toString",
"HTMLCollection_prototype_item": "item",
"HTMLCollection_prototype_namedItem": "namedItem",
"HTMLElement": "HTMLElement",
"HTMLElement_toString": "toString",
"HTMLElement_prototype_click": "click",
"HTMLElement_prototype_insertAdjacentElement": "insertAdjacentElement",
"HTMLElement_prototype_insertAdjacentHTML": "insertAdjacentHTML",
"HTMLElement_prototype_insertAdjacentText": "insertAdjacentText",
"HTMLAnchorElement": "HTMLAnchorElement",
"HTMLAnchorElement_toString": "toString",
"HTMLAnchorElement_prototype_toString": "toString",
"HTMLAppletElement": "HTMLAppletElement",
"HTMLAppletElement_toString": "toString",
"HTMLAudioElement": "HTMLAudioElement",
"HTMLAudioElement_toString": "toString",
"HTMLAreaElement": "HTMLAreaElement",
"HTMLAreaElement_toString": "toString",
"HTMLBaseElement": "HTMLBaseElement",
"HTMLBaseElement_toString": "toString",
"HTMLBaseFontElement": "HTMLBaseFontElement",
"HTMLBaseFontElement_toString": "toString",
"HTMLBodyElement": "HTMLBodyElement",
"HTMLBodyElement_toString": "toString",
"HTMLBRElement": "HTMLBRElement",
"HTMLBRElement_toString": "toString",
"HTMLButtonElement": "HTMLButtonElement",
"HTMLButtonElement_toString": "toString",
"HTMLButtonElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLButtonElement_prototype_checkValidity": "checkValidity",
"HTMLCanvasElement": "HTMLCanvasElement",
"HTMLCanvasElement_toString": "toString",
"HTMLCanvasElement_prototype_toDataURL": "toDataURL",
"HTMLCanvasElement_prototype_getContext": "getContext",
"HTMLDirectoryElement": "HTMLDirectoryElement",
"HTMLDirectoryElement_toString": "toString",
"HTMLDivElement": "HTMLDivElement",
"HTMLDivElement_toString": "toString",
"HTMLDListElement": "HTMLDListElement",
"HTMLDListElement_toString": "toString",
"HTMLEmbedElement": "HTMLEmbedElement",
"HTMLEmbedElement_toString": "toString",
"HTMLEmbedElement_prototype_getSVGDocument": "getSVGDocument",
"HTMLFieldSetElement": "HTMLFieldSetElement",
"HTMLFieldSetElement_toString": "toString",
"HTMLFieldSetElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLFieldSetElement_prototype_checkValidity": "checkValidity",
"HTMLFontElement": "HTMLFontElement",
"HTMLFontElement_toString": "toString",
"HTMLFormElement": "HTMLFormElement",
"HTMLFormElement_toString": "toString",
"HTMLFormElement_prototype_reset": "reset",
"HTMLFormElement_prototype_submit": "submit",
"HTMLFormElement_prototype_checkValidity": "checkValidity",
"HTMLFrameElement": "HTMLFrameElement",
"HTMLFrameElement_toString": "toString",
"HTMLFrameElement_prototype_getSVGDocument": "getSVGDocument",
"HTMLFrameSetElement": "HTMLFrameSetElement",
"HTMLFrameSetElement_toString": "toString",
"HTMLHeadElement": "HTMLHeadElement",
"HTMLHeadElement_toString": "toString",
"HTMLHeadingElement": "HTMLHeadingElement",
"HTMLHeadingElement_toString": "toString",
"HTMLHtmlElement": "HTMLHtmlElement",
"HTMLHtmlElement_toString": "toString",
"HTMLHRElement": "HTMLHRElement",
"HTMLHRElement_toString": "toString",
"HTMLIFrameElement": "HTMLIFrameElement",
"HTMLIFrameElement_toString": "toString",
"HTMLIFrameElement_prototype_getSVGDocument": "getSVGDocument",
"HTMLImageElement": "HTMLImageElement",
"HTMLImageElement_toString": "toString",
"HTMLInputElement": "HTMLInputElement",
"HTMLInputElement_toString": "toString",
"HTMLInputElement_prototype_stepDown": "stepDown",
"HTMLInputElement_prototype_select": "select",
"HTMLInputElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLInputElement_prototype_checkValidity": "checkValidity",
"HTMLInputElement_prototype_setSelectionRange": "setSelectionRange",
"HTMLInputElement_prototype_stepUp": "stepUp",
"HTMLKeygenElement": "HTMLKeygenElement",
"HTMLKeygenElement_toString": "toString",
"HTMLKeygenElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLKeygenElement_prototype_checkValidity": "checkValidity",
"HTMLLabelElement": "HTMLLabelElement",
"HTMLLabelElement_toString": "toString",
"HTMLLIElement": "HTMLLIElement",
"HTMLLIElement_toString": "toString",
"HTMLLinkElement": "HTMLLinkElement",
"HTMLLinkElement_toString": "toString",
"HTMLMapElement": "HTMLMapElement",
"HTMLMapElement_toString": "toString",
"HTMLMenuElement": "HTMLMenuElement",
"HTMLMenuElement_toString": "toString",
"HTMLMetaElement": "HTMLMetaElement",
"HTMLMetaElement_toString": "toString",
"HTMLModElement": "HTMLModElement",
"HTMLModElement_toString": "toString",
"HTMLObjectElement": "HTMLObjectElement",
"HTMLObjectElement_toString": "toString",
"HTMLObjectElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLObjectElement_prototype_checkValidity": "checkValidity",
"HTMLObjectElement_prototype_getSVGDocument": "getSVGDocument",
"HTMLOListElement": "HTMLOListElement",
"HTMLOListElement_toString": "toString",
"HTMLOptGroupElement": "HTMLOptGroupElement",
"HTMLOptGroupElement_toString": "toString",
"HTMLOptionElement": "HTMLOptionElement",
"HTMLOptionElement_toString": "toString",
"HTMLOutputElement": "HTMLOutputElement",
"HTMLOutputElement_toString": "toString",
"HTMLOutputElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLOutputElement_prototype_checkValidity": "checkValidity",
"HTMLParagraphElement": "HTMLParagraphElement",
"HTMLParagraphElement_toString": "toString",
"HTMLParamElement": "HTMLParamElement",
"HTMLParamElement_toString": "toString",
"HTMLPreElement": "HTMLPreElement",
"HTMLPreElement_toString": "toString",
"HTMLQuoteElement": "HTMLQuoteElement",
"HTMLQuoteElement_toString": "toString",
"HTMLScriptElement": "HTMLScriptElement",
"HTMLScriptElement_toString": "toString",
"HTMLSelectElement": "HTMLSelectElement",
"HTMLSelectElement_toString": "toString",
"HTMLSelectElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLSelectElement_prototype_add": "add",
"HTMLSelectElement_prototype_item": "item",
"HTMLSelectElement_prototype_namedItem": "namedItem",
"HTMLSelectElement_prototype_checkValidity": "checkValidity",
"HTMLSelectElement_prototype_remove": "remove",
"HTMLSourceElement": "HTMLSourceElement",
"HTMLSourceElement_toString": "toString",
"HTMLSpanElement": "HTMLSpanElement",
"HTMLSpanElement_toString": "toString",
"HTMLStyleElement": "HTMLStyleElement",
"HTMLStyleElement_toString": "toString",
"HTMLTableElement": "HTMLTableElement",
"HTMLTableElement_toString": "toString",
"HTMLTableElement_prototype_deleteTFoot": "deleteTFoot",
"HTMLTableElement_prototype_deleteRow": "deleteRow",
"HTMLTableElement_prototype_createTHead": "createTHead",
"HTMLTableElement_prototype_createTFoot": "createTFoot",
"HTMLTableElement_prototype_createTBody": "createTBody",
"HTMLTableElement_prototype_deleteTHead": "deleteTHead",
"HTMLTableElement_prototype_createCaption": "createCaption",
"HTMLTableElement_prototype_insertRow": "insertRow",
"HTMLTableElement_prototype_deleteCaption": "deleteCaption",
"HTMLTableCaptionElement": "HTMLTableCaptionElement",
"HTMLTableCaptionElement_toString": "toString",
"HTMLTableColElement": "HTMLTableColElement",
"HTMLTableColElement_toString": "toString",
"HTMLTableRowElement": "HTMLTableRowElement",
"HTMLTableRowElement_toString": "toString",
"HTMLTableRowElement_prototype_insertCell": "insertCell",
"HTMLTableRowElement_prototype_deleteCell": "deleteCell",
"HTMLTableSectionElement": "HTMLTableSectionElement",
"HTMLTableSectionElement_toString": "toString",
"HTMLTableSectionElement_prototype_deleteRow": "deleteRow",
"HTMLTableSectionElement_prototype_insertRow": "insertRow",
"HTMLTextAreaElement": "HTMLTextAreaElement",
"HTMLTextAreaElement_toString": "toString",
"HTMLTextAreaElement_prototype_select": "select",
"HTMLTextAreaElement_prototype_setCustomValidity": "setCustomValidity",
"HTMLTextAreaElement_prototype_checkValidity": "checkValidity",
"HTMLTextAreaElement_prototype_setSelectionRange": "setSelectionRange",
"HTMLTitleElement": "HTMLTitleElement",
"HTMLTitleElement_toString": "toString",
"HTMLUListElement": "HTMLUListElement",
"HTMLUListElement_toString": "toString",
"HTMLUnknownElement": "HTMLUnknownElement",
"HTMLUnknownElement_toString": "toString",
"HTMLVideoElement": "HTMLVideoElement",
"HTMLVideoElement_toString": "toString",
"HTMLVideoElement_prototype_webkitEnterFullscreen": "webkitEnterFullscreen",
"HTMLVideoElement_prototype_webkitEnterFullScreen": "webkitEnterFullScreen",
"HTMLVideoElement_prototype_webkitExitFullScreen": "webkitExitFullScreen",
"HTMLVideoElement_prototype_webkitExitFullscreen": "webkitExitFullscreen",
"Image": "Image",
"ImageData": "ImageData",
"ImageData_toString": "toString",
"MimeType": "MimeType",
"MimeType_toString": "toString",
"MouseEvent": "MouseEvent",
"MouseEvent_toString": "toString",
"MouseEvent_prototype_initMouseEvent": "initMouseEvent",
"Node": "Node",
"Node_toString": "toString",
"Node_prototype_insertBefore": "insertBefore",
"Node_prototype_addEventListener": "addEventListener",
"Node_prototype_compareDocumentPosition": "compareDocumentPosition",
"Node_prototype_contains": "contains",
"Node_prototype_hasAttributes": "hasAttributes",
"Node_prototype_isSupported": "isSupported",
"Node_prototype_lookupNamespaceURI": "lookupNamespaceURI",
"Node_prototype_lookupPrefix": "lookupPrefix",
"Node_prototype_isSameNode": "isSameNode",
"Node_prototype_normalize": "normalize",
"Node_prototype_removeChild": "removeChild",
"Node_prototype_cloneNode": "cloneNode",
"Node_prototype_hasChildNodes": "hasChildNodes",
"Node_prototype_dispatchEvent": "dispatchEvent",
"Node_prototype_removeEventListener": "removeEventListener",
"Node_prototype_isDefaultNamespace": "isDefaultNamespace",
"Node_prototype_replaceChild": "replaceChild",
"Node_prototype_isEqualNode": "isEqualNode",
"Node_prototype_appendChild": "appendChild",
"NodeList": "NodeList",
"NodeList_toString": "toString",
"NodeList_prototype_item": "item",
"Option": "Option",
"Plugin": "Plugin",
"Plugin_toString": "toString",
"Plugin_prototype_item": "item",
"Plugin_prototype_namedItem": "namedItem",
"ProcessingInstruction": "ProcessingInstruction",
"ProcessingInstruction_toString": "toString",
"Range": "Range",
"Range_toString": "toString",
"Range_prototype_setEnd": "setEnd",
"Range_prototype_compareNode": "compareNode",
"Range_prototype_intersectsNode": "intersectsNode",
"Range_prototype_isPointInRange": "isPointInRange",
"Range_prototype_getClientRects": "getClientRects",
"Range_prototype_setStartAfter": "setStartAfter",
"Range_prototype_insertNode": "insertNode",
"Range_prototype_extractContents": "extractContents",
"Range_prototype_expand": "expand",
"Range_prototype_deleteContents": "deleteContents",
"Range_prototype_getBoundingClientRect": "getBoundingClientRect",
"Range_prototype_setStartBefore": "setStartBefore",
"Range_prototype_compareBoundaryPoints": "compareBoundaryPoints",
"Range_prototype_cloneContents": "cloneContents",
"Range_prototype_toString": "toString",
"Range_prototype_createContextualFragment": "createContextualFragment",
"Range_prototype_selectNode": "selectNode",
"Range_prototype_collapse": "collapse",
"Range_prototype_setEndBefore": "setEndBefore",
"Range_prototype_detach": "detach",
"Range_prototype_setStart": "setStart",
"Range_prototype_comparePoint": "comparePoint",
"Range_prototype_selectNodeContents": "selectNodeContents",
"Range_prototype_cloneRange": "cloneRange",
"Range_prototype_setEndAfter": "setEndAfter",
"Range_prototype_surroundContents": "surroundContents",
"RangeException": "RangeException",
"RangeException_toString": "toString",
"RangeException_prototype_toString": "toString",
"Text": "Text",
"Text_toString": "toString",
"Text_prototype_splitText": "splitText",
"Text_prototype_replaceWholeText": "replaceWholeText",
"TextMetrics": "TextMetrics",
"TextMetrics_toString": "toString",
"UIEvent": "UIEvent",
"UIEvent_toString": "toString",
"UIEvent_prototype_initUIEvent": "initUIEvent",
"Window": "Window",
"Window_toString": "toString",
"Window_prototype_releaseEvents": "releaseEvents",
"Window_prototype_scrollBy": "scrollBy",
"Window_prototype_alert": "alert",
"Window_prototype_removeEventListener": "removeEventListener",
"Window_prototype_btoa": "btoa",
"Window_prototype_postMessage": "postMessage",
"Window_prototype_webkitRequestFileSystem": "webkitRequestFileSystem",
"Window_prototype_open": "open",
"Window_prototype_focus": "focus",
"Window_prototype_prompt": "prompt",
"Window_prototype_getMatchedCSSRules": "getMatchedCSSRules",
"Window_prototype_webkitCancelAnimationFrame": "webkitCancelAnimationFrame",
"Window_prototype_webkitConvertPointFromPageToNode": "webkitConvertPointFromPageToNode",
"Window_prototype_webkitPostMessage": "webkitPostMessage",
"Window_prototype_find": "find",
"Window_prototype_scroll": "scroll",
"Window_prototype_getSelection": "getSelection",
"Window_prototype_print": "print",
"Window_prototype_setInterval": "setInterval",
"Window_prototype_close": "close",
"Window_prototype_stop": "stop",
"Window_prototype_dispatchEvent": "dispatchEvent",
"Window_prototype_resizeBy": "resizeBy",
"Window_prototype_clearTimeout": "clearTimeout",
"Window_prototype_setTimeout": "setTimeout",
"Window_prototype_clearInterval": "clearInterval",
"Window_prototype_captureEvents": "captureEvents",
"Window_prototype_toString": "toString",
"Window_prototype_webkitConvertPointFromNodeToPage": "webkitConvertPointFromNodeToPage",
"Window_prototype_webkitCancelRequestAnimationFrame": "webkitCancelRequestAnimationFrame",
"Window_prototype_atob": "atob",
"Window_prototype_moveTo": "moveTo",
"Window_prototype_webkitResolveLocalFileSystemURL": "webkitResolveLocalFileSystemURL",
"Window_prototype_getComputedStyle": "getComputedStyle",
"Window_prototype_confirm": "confirm",
"Window_prototype_scrollTo": "scrollTo",
"Window_prototype_webkitRequestAnimationFrame": "webkitRequestAnimationFrame",
"Window_prototype_matchMedia": "matchMedia",
"Window_prototype_resizeTo": "resizeTo",
"Window_prototype_blur": "blur",
"Window_prototype_showModalDialog": "showModalDialog",
"Window_prototype_moveBy": "moveBy",
"Window_prototype_openDatabase": "openDatabase",
"Window_prototype_addEventListener": "addEventListener",
"XMLHttpRequest": "XMLHttpRequest",
"XMLHttpRequest_toString": "toString",
"XMLHttpRequest_prototype_getResponseHeader": "getResponseHeader",
"XMLHttpRequest_prototype_removeEventListener": "removeEventListener",
"XMLHttpRequest_prototype_open": "open",
"XMLHttpRequest_prototype_abort": "abort",
"XMLHttpRequest_prototype_setRequestHeader": "setRequestHeader",
"XMLHttpRequest_prototype_send": "send",
"XMLHttpRequest_prototype_dispatchEvent": "dispatchEvent",
"XMLHttpRequest_prototype_overrideMimeType": "overrideMimeType",
"XMLHttpRequest_prototype_getAllResponseHeaders": "getAllResponseHeaders",
"XMLHttpRequest_prototype_addEventListener": "addEventListener",
"XMLSerializer": "XMLSerializer",
"XMLSerializer_toString": "toString",
"XMLSerializer_prototype_serializeToString": "serializeToString",
"XPathResult": "XPathResult",
"XPathResult_toString": "toString",
"XPathResult_prototype_iterateNext": "iterateNext",
"XPathResult_prototype_snapshotItem": "snapshotItem",
"XSLTProcessor": "XSLTProcessor",
"XSLTProcessor_toString": "toString",
"XSLTProcessor_prototype_removeParameter": "removeParameter",
"XSLTProcessor_prototype_reset": "reset",
"XSLTProcessor_prototype_clearParameters": "clearParameters",
"XSLTProcessor_prototype_transformToFragment": "transformToFragment",
"XSLTProcessor_prototype_setParameter": "setParameter",
"XSLTProcessor_prototype_importStylesheet": "importStylesheet",
"XSLTProcessor_prototype_transformToDocument": "transformToDocument",
"XSLTProcessor_prototype_getParameter": "getParameter",
"ArrayBuffer": "ArrayBuffer",
"ArrayBuffer_toString": "toString",
"ArrayBuffer_prototype_slice": "slice",
"DataView": "DataView",
"DataView_toString": "toString",
"DataView_prototype_getUint16": "getUint16",
"DataView_prototype_setFloat32": "setFloat32",
"DataView_prototype_setInt16": "setInt16",
"DataView_prototype_getInt16": "getInt16",
"DataView_prototype_getInt8": "getInt8",
"DataView_prototype_getFloat32": "getFloat32",
"DataView_prototype_setUint8": "setUint8",
"DataView_prototype_setInt8": "setInt8",
"DataView_prototype_getUint8": "getUint8",
"DataView_prototype_setFloat64": "setFloat64",
"DataView_prototype_getFloat64": "getFloat64",
"DataView_prototype_getUint32": "getUint32",
"DataView_prototype_getInt32": "getInt32",
"DataView_prototype_setInt32": "setInt32",
"DataView_prototype_setUint16": "setUint16",
"DataView_prototype_setUint32": "setUint32",
"Float32Array": "Float32Array",
"Float32Array_toString": "toString",
"Float32Array_prototype_set": "set",
"Float32Array_prototype_subarray": "subarray",
"Float64Array": "Float64Array",
"Float64Array_toString": "toString",
"Float64Array_prototype_set": "set",
"Float64Array_prototype_subarray": "subarray",
"Int16Array": "Int16Array",
"Int16Array_toString": "toString",
"Int16Array_prototype_set": "set",
"Int16Array_prototype_subarray": "subarray",
"Int32Array": "Int32Array",
"Int32Array_toString": "toString",
"Int32Array_prototype_set": "set",
"Int32Array_prototype_subarray": "subarray",
"Int8Array": "Int8Array",
"Int8Array_toString": "toString",
"Int8Array_prototype_set": "set",
"Int8Array_prototype_subarray": "subarray",
"Uint16Array": "Uint16Array",
"Uint16Array_toString": "toString",
"Uint16Array_prototype_set": "set",
"Uint16Array_prototype_subarray": "subarray",
"Uint32Array": "Uint32Array",
"Uint32Array_toString": "toString",
"Uint32Array_prototype_set": "set",
"Uint32Array_prototype_subarray": "subarray",
"Uint8Array": "Uint8Array",
"Uint8Array_toString": "toString",
"Uint8Array_prototype_set": "set",
"Uint8Array_prototype_subarray": "subarray",
"console_log": "log",
"console_warn": "warn",
"console_error": "error",
"Audio_prototype_canPlayType": "canPlayType",
"Audio_prototype_load": "load",
"Audio_prototype_pause": "pause",
"Audio_prototype_play": "play",
"Node_prototype_attachEvent": "attachEvent",
"Node_prototype_detachEvent": "detachEvent",
"Node_prototype_doScroll": "doScroll"
};
return exports;
});