-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathDomProperties.js
3644 lines (3641 loc) · 120 KB
/
DomProperties.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
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
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
//-------------------------------------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
//-------------------------------------------------------------------------------------------------------
var obj = {};
function testProperty(prop)
{
obj[prop] = Math.random();
}
testProperty("ABORT_ERR");
testProperty("ACTIVE_ATTRIBUTES");
testProperty("ACTIVE_TEXTURE");
testProperty("ACTIVE_UNIFORMS");
testProperty("ADDITION");
testProperty("ALIASED_LINE_WIDTH_RANGE");
testProperty("ALIASED_POINT_SIZE_RANGE");
testProperty("ALPHA");
testProperty("ALPHA_BITS");
testProperty("ALWAYS");
testProperty("ARRAY_BUFFER");
testProperty("ARRAY_BUFFER_BINDING");
testProperty("ATTACHED_SHADERS");
testProperty("ATTRIBUTE_NODE");
testProperty("AT_TARGET");
testProperty("AnimationEvent");
testProperty("AnimationEventPrototype");
testProperty("ApplicationCache");
testProperty("ApplicationCachePrototype");
testProperty("Attr");
testProperty("AttrPrototype");
testProperty("Audio");
testProperty("AudioTrack");
testProperty("AudioTrackList");
testProperty("AudioTrackListPrototype");
testProperty("AudioTrackPrototype");
testProperty("BACK");
testProperty("BAD_BOUNDARYPOINTS_ERR");
testProperty("BLEND");
testProperty("BLEND_COLOR");
testProperty("BLEND_DST_ALPHA");
testProperty("BLEND_DST_RGB");
testProperty("BLEND_EQUATION");
testProperty("BLEND_EQUATION_ALPHA");
testProperty("BLEND_EQUATION_RGB");
testProperty("BLEND_SRC_ALPHA");
testProperty("BLEND_SRC_RGB");
testProperty("BLUE_BITS");
testProperty("BOOL");
testProperty("BOOL_VEC2");
testProperty("BOOL_VEC3");
testProperty("BOOL_VEC4");
testProperty("BROWSER_DEFAULT_WEBGL");
testProperty("BUBBLING_PHASE");
testProperty("BUFFER_SIZE");
testProperty("BUFFER_USAGE");
testProperty("BYTE");
testProperty("BaseHref");
testProperty("BeforeUnloadEvent");
testProperty("BeforeUnloadEventPrototype");
testProperty("Blob");
testProperty("BlobPrototype");
testProperty("BookmarkCollection");
testProperty("BookmarkCollectionPrototype");
testProperty("CAPTURING_PHASE");
testProperty("CCW");
testProperty("CDATASection");
testProperty("CDATASectionPrototype");
testProperty("CDATA_SECTION_NODE");
testProperty("CHARSET_RULE");
testProperty("CHECKING");
testProperty("CLAMP_TO_EDGE");
testProperty("CLOSED");
testProperty("CLOSING");
testProperty("COLOR_ATTACHMENT0");
testProperty("COLOR_BUFFER_BIT");
testProperty("COLOR_CLEAR_VALUE");
testProperty("COLOR_WRITEMASK");
testProperty("COMMENT_NODE");
testProperty("COMPILE_STATUS");
testProperty("COMPLETED");
testProperty("COMPRESSED_TEXTURE_FORMATS");
testProperty("CONNECTING");
testProperty("CONSTANT_ALPHA");
testProperty("CONSTANT_COLOR");
testProperty("CONTEXT_LOST_WEBGL");
testProperty("CSSFontFaceRule");
testProperty("CSSFontFaceRulePrototype");
testProperty("CSSImportRule");
testProperty("CSSImportRulePrototype");
testProperty("CSSKeyframeRule");
testProperty("CSSKeyframeRulePrototype");
testProperty("CSSKeyframesRule");
testProperty("CSSKeyframesRulePrototype");
testProperty("CSSMediaRule");
testProperty("CSSMediaRulePrototype");
testProperty("CSSNamespaceRule");
testProperty("CSSNamespaceRulePrototype");
testProperty("CSSPageRule");
testProperty("CSSPageRulePrototype");
testProperty("CSSRule");
testProperty("CSSRuleList");
testProperty("CSSRuleListPrototype");
testProperty("CSSRulePrototype");
testProperty("CSSStyleDeclaration");
testProperty("CSSStyleDeclarationPrototype");
testProperty("CSSStyleRule");
testProperty("CSSStyleRulePrototype");
testProperty("CSSStyleSheet");
testProperty("CSSStyleSheetPrototype");
testProperty("CULL_FACE");
testProperty("CULL_FACE_MODE");
testProperty("CURRENT");
testProperty("CURRENT_PROGRAM");
testProperty("CURRENT_VERTEX_ATTRIB");
testProperty("CW");
testProperty("CanvasGradient");
testProperty("CanvasGradientPrototype");
testProperty("CanvasPattern");
testProperty("CanvasPatternPrototype");
testProperty("CanvasRenderingContext2D");
testProperty("CanvasRenderingContext2DPrototype");
testProperty("CharacterData");
testProperty("CharacterDataPrototype");
testProperty("ClientRect");
testProperty("ClientRectList");
testProperty("ClientRectListPrototype");
testProperty("ClientRectPrototype");
testProperty("CloseEvent");
testProperty("CloseEventPrototype");
testProperty("Comment");
testProperty("CommentPrototype");
testProperty("CompositionEvent");
testProperty("CompositionEventPrototype");
testProperty("Console");
testProperty("ConsolePrototype");
testProperty("ControlRangeCollection");
testProperty("ControlRangeCollectionPrototype");
testProperty("Coordinates");
testProperty("CoordinatesPrototype");
testProperty("Crypto");
testProperty("CryptoOperation");
testProperty("CryptoOperationPrototype");
testProperty("CryptoPrototype");
testProperty("CustomEvent");
testProperty("CustomEventPrototype");
testProperty("DATA_CLONE_ERR");
testProperty("DECR");
testProperty("DECR_WRAP");
testProperty("DELETE_STATUS");
testProperty("DEPTH_ATTACHMENT");
testProperty("DEPTH_BITS");
testProperty("DEPTH_BUFFER_BIT");
testProperty("DEPTH_CLEAR_VALUE");
testProperty("DEPTH_COMPONENT");
testProperty("DEPTH_COMPONENT16");
testProperty("DEPTH_FUNC");
testProperty("DEPTH_RANGE");
testProperty("DEPTH_STENCIL");
testProperty("DEPTH_STENCIL_ATTACHMENT");
testProperty("DEPTH_TEST");
testProperty("DEPTH_WRITEMASK");
testProperty("DISABLED");
testProperty("DISPATCH_REQUEST_ERR");
testProperty("DITHER");
testProperty("DOCUMENT_FRAGMENT_NODE");
testProperty("DOCUMENT_NODE");
testProperty("DOCUMENT_POSITION_CONTAINED_BY");
testProperty("DOCUMENT_POSITION_CONTAINS");
testProperty("DOCUMENT_POSITION_DISCONNECTED");
testProperty("DOCUMENT_POSITION_FOLLOWING");
testProperty("DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC");
testProperty("DOCUMENT_POSITION_PRECEDING");
testProperty("DOCUMENT_TYPE_NODE");
testProperty("DOMError");
testProperty("DOMErrorPrototype");
testProperty("DOMException");
testProperty("DOMExceptionPrototype");
testProperty("DOMImplementation");
testProperty("DOMImplementationPrototype");
testProperty("DOMParser");
testProperty("DOMParserPrototype");
testProperty("DOMSTRING_SIZE_ERR");
testProperty("DOMSettableTokenList");
testProperty("DOMSettableTokenListPrototype");
testProperty("DOMStringList");
testProperty("DOMStringListPrototype");
testProperty("DOMStringMap");
testProperty("DOMStringMapPrototype");
testProperty("DOMTokenList");
testProperty("DOMTokenListPrototype");
testProperty("DOM_DELTA_LINE");
testProperty("DOM_DELTA_PAGE");
testProperty("DOM_DELTA_PIXEL");
testProperty("DOM_INPUT_METHOD_DROP");
testProperty("DOM_INPUT_METHOD_HANDWRITING");
testProperty("DOM_INPUT_METHOD_IME");
testProperty("DOM_INPUT_METHOD_KEYBOARD");
testProperty("DOM_INPUT_METHOD_MULTIMODAL");
testProperty("DOM_INPUT_METHOD_OPTION");
testProperty("DOM_INPUT_METHOD_PASTE");
testProperty("DOM_INPUT_METHOD_SCRIPT");
testProperty("DOM_INPUT_METHOD_UNKNOWN");
testProperty("DOM_INPUT_METHOD_VOICE");
testProperty("DOM_KEY_LOCATION_JOYSTICK");
testProperty("DOM_KEY_LOCATION_LEFT");
testProperty("DOM_KEY_LOCATION_MOBILE");
testProperty("DOM_KEY_LOCATION_NUMPAD");
testProperty("DOM_KEY_LOCATION_RIGHT");
testProperty("DOM_KEY_LOCATION_STANDARD");
testProperty("DONE");
testProperty("DONT_CARE");
testProperty("DOWNLOADING");
testProperty("DST_ALPHA");
testProperty("DST_COLOR");
testProperty("DYNAMIC_DRAW");
testProperty("DataTransfer");
testProperty("DataTransferPrototype");
testProperty("DiagnosticsBrowser");
testProperty("DiagnosticsBrowserPrototype");
testProperty("DiagnosticsCookieEntry");
testProperty("DiagnosticsCookieEntryPrototype");
testProperty("DiagnosticsCookies");
testProperty("DiagnosticsCookiesPrototype");
testProperty("DiagnosticsDom");
testProperty("DiagnosticsDomPrototype");
testProperty("DiagnosticsElementEventHelper");
testProperty("DiagnosticsElementEventHelperPrototype");
testProperty("DiagnosticsEmulation");
testProperty("DiagnosticsEmulationPrototype");
testProperty("DiagnosticsExternal");
testProperty("DiagnosticsExternalPrototype");
testProperty("DiagnosticsGeoLocation");
testProperty("DiagnosticsGeoLocationPrototype");
testProperty("DiagnosticsGlobalScope");
testProperty("DiagnosticsGlobalScopePrototype");
testProperty("DiagnosticsIndexedDB");
testProperty("DiagnosticsIndexedDBPrototype");
testProperty("DiagnosticsMemoryProfiler");
testProperty("DiagnosticsMemoryProfilerPrototype");
testProperty("DiagnosticsResources");
testProperty("DiagnosticsResourcesPrototype");
testProperty("DiagnosticsSourceLocation");
testProperty("DiagnosticsSourceLocationPrototype");
testProperty("DiagnosticsStorage");
testProperty("DiagnosticsStoragePrototype");
testProperty("DiagnosticsStyleProperty");
testProperty("DiagnosticsStylePropertyList");
testProperty("DiagnosticsStylePropertyListPrototype");
testProperty("DiagnosticsStylePropertyPrototype");
testProperty("DiagnosticsStyles");
testProperty("DiagnosticsStylesPrototype");
testProperty("DiagnosticsTracedStyles");
testProperty("DiagnosticsTracedStylesPrototype");
testProperty("DiagnosticsUserAgentStringManager");
testProperty("DiagnosticsUserAgentStringManagerPrototype");
testProperty("DiagnosticsViewport");
testProperty("DiagnosticsViewportPrototype");
testProperty("DiagnosticsWebWorker");
testProperty("DiagnosticsWebWorkerPrototype");
testProperty("Document");
testProperty("DocumentFragment");
testProperty("DocumentFragmentPrototype");
testProperty("DocumentPrototype");
testProperty("DocumentType");
testProperty("DocumentTypePrototype");
testProperty("DragEvent");
testProperty("DragEventPrototype");
testProperty("ELEMENT_ARRAY_BUFFER");
testProperty("ELEMENT_ARRAY_BUFFER_BINDING");
testProperty("ELEMENT_NODE");
testProperty("EMPTY");
testProperty("END_TO_END");
testProperty("END_TO_START");
testProperty("ENTITY_NODE");
testProperty("ENTITY_REFERENCE_NODE");
testProperty("EQUAL");
testProperty("ERROR");
testProperty("Element");
testProperty("ElementPrototype");
testProperty("ErrorEvent");
testProperty("ErrorEventPrototype");
testProperty("Event");
testProperty("EventException");
testProperty("EventExceptionPrototype");
testProperty("EventPrototype");
testProperty("FASTEST");
testProperty("FILTER_ACCEPT");
testProperty("FILTER_REJECT");
testProperty("FILTER_SKIP");
testProperty("FLOAT");
testProperty("FLOAT_MAT2");
testProperty("FLOAT_MAT3");
testProperty("FLOAT_MAT4");
testProperty("FLOAT_VEC2");
testProperty("FLOAT_VEC3");
testProperty("FLOAT_VEC4");
testProperty("FONT_FACE_RULE");
testProperty("FRAGMENT_SHADER");
testProperty("FRAMEBUFFER");
testProperty("FRAMEBUFFER_ATTACHMENT_OBJECT_NAME");
testProperty("FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE");
testProperty("FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE");
testProperty("FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL");
testProperty("FRAMEBUFFER_BINDING");
testProperty("FRAMEBUFFER_COMPLETE");
testProperty("FRAMEBUFFER_INCOMPLETE_ATTACHMENT");
testProperty("FRAMEBUFFER_INCOMPLETE_DIMENSIONS");
testProperty("FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT");
testProperty("FRAMEBUFFER_UNSUPPORTED");
testProperty("FRONT");
testProperty("FRONT_AND_BACK");
testProperty("FRONT_FACE");
testProperty("FUNC_ADD");
testProperty("FUNC_REVERSE_SUBTRACT");
testProperty("FUNC_SUBTRACT");
testProperty("File");
testProperty("FileList");
testProperty("FileListPrototype");
testProperty("FilePrototype");
testProperty("FileReader");
testProperty("FileReaderPrototype");
testProperty("FileReaderSync");
testProperty("FileReaderSyncPrototype");
testProperty("FocusEvent");
testProperty("FocusEventPrototype");
testProperty("FormData");
testProperty("FormDataPrototype");
testProperty("GENERATE_MIPMAP_HINT");
testProperty("GEQUAL");
testProperty("GREATER");
testProperty("GREEN_BITS");
testProperty("Geolocation");
testProperty("GeolocationPrototype");
testProperty("HAVE_CURRENT_DATA");
testProperty("HAVE_ENOUGH_DATA");
testProperty("HAVE_FUTURE_DATA");
testProperty("HAVE_METADATA");
testProperty("HAVE_NOTHING");
testProperty("HEADERS_RECEIVED");
testProperty("HIDDEN");
testProperty("HIERARCHY_REQUEST_ERR");
testProperty("HIGH");
testProperty("HIGH_FLOAT");
testProperty("HIGH_INT");
testProperty("HTMLAllCollection");
testProperty("HTMLAllCollectionPrototype");
testProperty("HTMLAnchorElement");
testProperty("HTMLAnchorElementPrototype");
testProperty("HTMLAppletElement");
testProperty("HTMLAppletElementPrototype");
testProperty("HTMLAreaElement");
testProperty("HTMLAreaElementPrototype");
testProperty("HTMLAreasCollection");
testProperty("HTMLAreasCollectionPrototype");
testProperty("HTMLAudioElement");
testProperty("HTMLAudioElementPrototype");
testProperty("HTMLBGSoundElement");
testProperty("HTMLBGSoundElementPrototype");
testProperty("HTMLBRElement");
testProperty("HTMLBRElementPrototype");
testProperty("HTMLBaseElement");
testProperty("HTMLBaseElementPrototype");
testProperty("HTMLBaseFontElement");
testProperty("HTMLBaseFontElementPrototype");
testProperty("HTMLBlockElement");
testProperty("HTMLBlockElementPrototype");
testProperty("HTMLBodyElement");
testProperty("HTMLBodyElementPrototype");
testProperty("HTMLButtonElement");
testProperty("HTMLButtonElementPrototype");
testProperty("HTMLCanvasElement");
testProperty("HTMLCanvasElementPrototype");
testProperty("HTMLCollection");
testProperty("HTMLCollectionPrototype");
testProperty("HTMLDDElement");
testProperty("HTMLDDElementPrototype");
testProperty("HTMLDListElement");
testProperty("HTMLDListElementPrototype");
testProperty("HTMLDTElement");
testProperty("HTMLDTElementPrototype");
testProperty("HTMLDataListElement");
testProperty("HTMLDataListElementPrototype");
testProperty("HTMLDirectoryElement");
testProperty("HTMLDirectoryElementPrototype");
testProperty("HTMLDivElement");
testProperty("HTMLDivElementPrototype");
testProperty("HTMLDocument");
testProperty("HTMLDocumentPrototype");
testProperty("HTMLElement");
testProperty("HTMLElementPrototype");
testProperty("HTMLEmbedElement");
testProperty("HTMLEmbedElementPrototype");
testProperty("HTMLFieldSetElement");
testProperty("HTMLFieldSetElementPrototype");
testProperty("HTMLFontElement");
testProperty("HTMLFontElementPrototype");
testProperty("HTMLFormElement");
testProperty("HTMLFormElementPrototype");
testProperty("HTMLFrameElement");
testProperty("HTMLFrameElementPrototype");
testProperty("HTMLFrameSetElement");
testProperty("HTMLFrameSetElementPrototype");
testProperty("HTMLHRElement");
testProperty("HTMLHRElementPrototype");
testProperty("HTMLHeadElement");
testProperty("HTMLHeadElementPrototype");
testProperty("HTMLHeadingElement");
testProperty("HTMLHeadingElementPrototype");
testProperty("HTMLHtmlElement");
testProperty("HTMLHtmlElementPrototype");
testProperty("HTMLIFrameElement");
testProperty("HTMLIFrameElementPrototype");
testProperty("HTMLImageElement");
testProperty("HTMLImageElementPrototype");
testProperty("HTMLInputElement");
testProperty("HTMLInputElementPrototype");
testProperty("HTMLIsIndexElement");
testProperty("HTMLIsIndexElementPrototype");
testProperty("HTMLLIElement");
testProperty("HTMLLIElementPrototype");
testProperty("HTMLLabelElement");
testProperty("HTMLLabelElementPrototype");
testProperty("HTMLLegendElement");
testProperty("HTMLLegendElementPrototype");
testProperty("HTMLLinkElement");
testProperty("HTMLLinkElementPrototype");
testProperty("HTMLMapElement");
testProperty("HTMLMapElementPrototype");
testProperty("HTMLMarqueeElement");
testProperty("HTMLMarqueeElementPrototype");
testProperty("HTMLMediaElement");
testProperty("HTMLMediaElementPrototype");
testProperty("HTMLMenuElement");
testProperty("HTMLMenuElementPrototype");
testProperty("HTMLMetaElement");
testProperty("HTMLMetaElementPrototype");
testProperty("HTMLModElement");
testProperty("HTMLModElementPrototype");
testProperty("HTMLNextIdElement");
testProperty("HTMLNextIdElementPrototype");
testProperty("HTMLOListElement");
testProperty("HTMLOListElementPrototype");
testProperty("HTMLObjectElement");
testProperty("HTMLObjectElementPrototype");
testProperty("HTMLOptGroupElement");
testProperty("HTMLOptGroupElementPrototype");
testProperty("HTMLOptionElement");
testProperty("HTMLOptionElementPrototype");
testProperty("HTMLParagraphElement");
testProperty("HTMLParagraphElementPrototype");
testProperty("HTMLParamElement");
testProperty("HTMLParamElementPrototype");
testProperty("HTMLPhraseElement");
testProperty("HTMLPhraseElementPrototype");
testProperty("HTMLPreElement");
testProperty("HTMLPreElementPrototype");
testProperty("HTMLProgressElement");
testProperty("HTMLProgressElementPrototype");
testProperty("HTMLQuoteElement");
testProperty("HTMLQuoteElementPrototype");
testProperty("HTMLScriptElement");
testProperty("HTMLScriptElementPrototype");
testProperty("HTMLSelectElement");
testProperty("HTMLSelectElementPrototype");
testProperty("HTMLSourceElement");
testProperty("HTMLSourceElementPrototype");
testProperty("HTMLSpanElement");
testProperty("HTMLSpanElementPrototype");
testProperty("HTMLStyleElement");
testProperty("HTMLStyleElementPrototype");
testProperty("HTMLTableCaptionElement");
testProperty("HTMLTableCaptionElementPrototype");
testProperty("HTMLTableCellElement");
testProperty("HTMLTableCellElementPrototype");
testProperty("HTMLTableColElement");
testProperty("HTMLTableColElementPrototype");
testProperty("HTMLTableDataCellElement");
testProperty("HTMLTableDataCellElementPrototype");
testProperty("HTMLTableElement");
testProperty("HTMLTableElementPrototype");
testProperty("HTMLTableHeaderCellElement");
testProperty("HTMLTableHeaderCellElementPrototype");
testProperty("HTMLTableRowElement");
testProperty("HTMLTableRowElementPrototype");
testProperty("HTMLTableSectionElement");
testProperty("HTMLTableSectionElementPrototype");
testProperty("HTMLTextAreaElement");
testProperty("HTMLTextAreaElementPrototype");
testProperty("HTMLTitleElement");
testProperty("HTMLTitleElementPrototype");
testProperty("HTMLTrackElement");
testProperty("HTMLTrackElementPrototype");
testProperty("HTMLUListElement");
testProperty("HTMLUListElementPrototype");
testProperty("HTMLUnknownElement");
testProperty("HTMLUnknownElementPrototype");
testProperty("HTMLVideoElement");
testProperty("HTMLVideoElementPrototype");
testProperty("History");
testProperty("HistoryPrototype");
testProperty("IDBCursor");
testProperty("IDBCursorPrototype");
testProperty("IDBCursorWithValue");
testProperty("IDBCursorWithValuePrototype");
testProperty("IDBDatabase");
testProperty("IDBDatabasePrototype");
testProperty("IDBFactory");
testProperty("IDBFactoryPrototype");
testProperty("IDBIndex");
testProperty("IDBIndexPrototype");
testProperty("IDBKeyRange");
testProperty("IDBKeyRangePrototype");
testProperty("IDBObjectStore");
testProperty("IDBObjectStorePrototype");
testProperty("IDBOpenDBRequest");
testProperty("IDBOpenDBRequestPrototype");
testProperty("IDBRequest");
testProperty("IDBRequestPrototype");
testProperty("IDBTransaction");
testProperty("IDBTransactionPrototype");
testProperty("IDBVersionChangeEvent");
testProperty("IDBVersionChangeEventPrototype");
testProperty("IDLE");
testProperty("IMPORT_RULE");
testProperty("INCR");
testProperty("INCR_WRAP");
testProperty("INDEX_SIZE_ERR");
testProperty("INT");
testProperty("INT_VEC2");
testProperty("INT_VEC3");
testProperty("INT_VEC4");
testProperty("INUSE_ATTRIBUTE_ERR");
testProperty("INVALID_ACCESS_ERR");
testProperty("INVALID_CHARACTER_ERR");
testProperty("INVALID_ENUM");
testProperty("INVALID_FRAMEBUFFER_OPERATION");
testProperty("INVALID_MODIFICATION_ERR");
testProperty("INVALID_NODE_TYPE_ERR");
testProperty("INVALID_OPERATION");
testProperty("INVALID_STATE_ERR");
testProperty("INVALID_VALUE");
testProperty("INVERT");
testProperty("Image");
testProperty("ImageData");
testProperty("ImageDataPrototype");
testProperty("KEEP");
testProperty("KEYFRAMES_RULE");
testProperty("KEYFRAME_RULE");
testProperty("Key");
testProperty("KeyOperation");
testProperty("KeyOperationPrototype");
testProperty("KeyPair");
testProperty("KeyPairPrototype");
testProperty("KeyPrototype");
testProperty("KeyboardEvent");
testProperty("KeyboardEventPrototype");
testProperty("LENGTHADJUST_SPACING");
testProperty("LENGTHADJUST_SPACINGANDGLYPHS");
testProperty("LENGTHADJUST_UNKNOWN");
testProperty("LEQUAL");
testProperty("LESS");
testProperty("LINEAR");
testProperty("LINEAR_MIPMAP_LINEAR");
testProperty("LINEAR_MIPMAP_NEAREST");
testProperty("LINES");
testProperty("LINE_LOOP");
testProperty("LINE_STRIP");
testProperty("LINE_WIDTH");
testProperty("LINK_STATUS");
testProperty("LOADED");
testProperty("LOADING");
testProperty("LOW_FLOAT");
testProperty("LOW_INT");
testProperty("LUMINANCE");
testProperty("LUMINANCE_ALPHA");
testProperty("Location");
testProperty("LocationPrototype");
testProperty("LongRunningScriptDetectedEvent");
testProperty("LongRunningScriptDetectedEventPrototype");
testProperty("MAX_COMBINED_TEXTURE_IMAGE_UNITS");
testProperty("MAX_CUBE_MAP_TEXTURE_SIZE");
testProperty("MAX_FRAGMENT_UNIFORM_VECTORS");
testProperty("MAX_RENDERBUFFER_SIZE");
testProperty("MAX_TEXTURE_IMAGE_UNITS");
testProperty("MAX_TEXTURE_SIZE");
testProperty("MAX_VARYING_VECTORS");
testProperty("MAX_VERTEX_ATTRIBS");
testProperty("MAX_VERTEX_TEXTURE_IMAGE_UNITS");
testProperty("MAX_VERTEX_UNIFORM_VECTORS");
testProperty("MAX_VIEWPORT_DIMS");
testProperty("MEDIA_ERR_ABORTED");
testProperty("MEDIA_ERR_DECODE");
testProperty("MEDIA_ERR_NETWORK");
testProperty("MEDIA_ERR_SRC_NOT_SUPPORTED");
testProperty("MEDIA_RULE");
testProperty("MEDIUM_FLOAT");
testProperty("MEDIUM_INT");
testProperty("MIRRORED_REPEAT");
testProperty("MODIFICATION");
testProperty("MSApp");
testProperty("MSAppPrototype");
testProperty("MSAppView");
testProperty("MSAppViewPrototype");
testProperty("MSBehaviorUrnsCollection");
testProperty("MSBehaviorUrnsCollectionPrototype");
testProperty("MSBlobBuilder");
testProperty("MSBlobBuilderPrototype");
testProperty("MSCSSMatrix");
testProperty("MSCSSMatrixPrototype");
testProperty("MSCSSProperties");
testProperty("MSCSSPropertiesPrototype");
testProperty("MSCSSRuleList");
testProperty("MSCSSRuleListPrototype");
testProperty("MSCompatibleInfo");
testProperty("MSCompatibleInfoCollection");
testProperty("MSCompatibleInfoCollectionPrototype");
testProperty("MSCompatibleInfoPrototype");
testProperty("MSCurrentStyleCSSProperties");
testProperty("MSCurrentStyleCSSPropertiesPrototype");
testProperty("MSEventObj");
testProperty("MSEventObjPrototype");
testProperty("MSGESTURE_FLAG_BEGIN");
testProperty("MSGESTURE_FLAG_CANCEL");
testProperty("MSGESTURE_FLAG_END");
testProperty("MSGESTURE_FLAG_INERTIA");
testProperty("MSGESTURE_FLAG_NONE");
testProperty("MSGesture");
testProperty("MSGestureEvent");
testProperty("MSGestureEventPrototype");
testProperty("MSGesturePrototype");
testProperty("MSGraphicsTrust");
testProperty("MSGraphicsTrustPrototype");
testProperty("MSHTMLWebViewElement");
testProperty("MSHTMLWebViewElementPrototype");
testProperty("MSManipulationEvent");
testProperty("MSManipulationEventPrototype");
testProperty("MSMediaKeyError");
testProperty("MSMediaKeyErrorPrototype");
testProperty("MSMediaKeyMessageEvent");
testProperty("MSMediaKeyMessageEventPrototype");
testProperty("MSMediaKeyNeededEvent");
testProperty("MSMediaKeyNeededEventPrototype");
testProperty("MSMediaKeySession");
testProperty("MSMediaKeySessionPrototype");
testProperty("MSMediaKeys");
testProperty("MSMediaKeysPrototype");
testProperty("MSMediaPlaybackQuality");
testProperty("MSMediaPlaybackQualityPrototype");
testProperty("MSMimeTypesCollection");
testProperty("MSMimeTypesCollectionPrototype");
testProperty("MSNamespaceInfo");
testProperty("MSNamespaceInfoCollection");
testProperty("MSNamespaceInfoCollectionPrototype");
testProperty("MSNamespaceInfoPrototype");
testProperty("MSPOINTER_TYPE_MOUSE");
testProperty("MSPOINTER_TYPE_PEN");
testProperty("MSPOINTER_TYPE_TOUCH");
testProperty("MSPluginsCollection");
testProperty("MSPluginsCollectionPrototype");
testProperty("MSPointerEvent");
testProperty("MSPointerEventPrototype");
testProperty("MSPopupWindow");
testProperty("MSPopupWindowPrototype");
testProperty("MSRangeCollection");
testProperty("MSRangeCollectionPrototype");
testProperty("MSSelection");
testProperty("MSSelectionPrototype");
testProperty("MSSiteModeEvent");
testProperty("MSSiteModeEventPrototype");
testProperty("MSStream");
testProperty("MSStreamPrototype");
testProperty("MSStreamReader");
testProperty("MSStreamReaderPrototype");
testProperty("MSStyleCSSProperties");
testProperty("MSStyleCSSPropertiesPrototype");
testProperty("MSWebViewAsyncOperation");
testProperty("MSWebViewAsyncOperationPrototype");
testProperty("MS_MANIPULATION_STATE_ACTIVE");
testProperty("MS_MANIPULATION_STATE_CANCELLED");
testProperty("MS_MANIPULATION_STATE_COMMITTED");
testProperty("MS_MANIPULATION_STATE_DRAGGING");
testProperty("MS_MANIPULATION_STATE_INERTIA");
testProperty("MS_MANIPULATION_STATE_PRESELECT");
testProperty("MS_MANIPULATION_STATE_SELECTING");
testProperty("MS_MANIPULATION_STATE_STOPPED");
testProperty("MS_MEDIA_ERR_ENCRYPTED");
testProperty("MS_MEDIA_KEYERR_CLIENT");
testProperty("MS_MEDIA_KEYERR_DOMAIN");
testProperty("MS_MEDIA_KEYERR_HARDWARECHANGE");
testProperty("MS_MEDIA_KEYERR_OUTPUT");
testProperty("MS_MEDIA_KEYERR_SERVICE");
testProperty("MS_MEDIA_KEYERR_UNKNOWN");
testProperty("MediaError");
testProperty("MediaErrorPrototype");
testProperty("MediaList");
testProperty("MediaListPrototype");
testProperty("MediaQueryList");
testProperty("MediaQueryListPrototype");
testProperty("MediaSource");
testProperty("MediaSourcePrototype");
testProperty("MessageChannel");
testProperty("MessageChannelPrototype");
testProperty("MessageEvent");
testProperty("MessageEventPrototype");
testProperty("MessagePort");
testProperty("MessagePortPrototype");
testProperty("Methods");
testProperty("MimeType");
testProperty("MimeTypeArray");
testProperty("MimeTypeArrayPrototype");
testProperty("MimeTypePrototype");
testProperty("MouseEvent");
testProperty("MouseEventPrototype");
testProperty("MouseWheelEvent");
testProperty("MouseWheelEventPrototype");
testProperty("MutationEvent");
testProperty("MutationEventPrototype");
testProperty("MutationObserver");
testProperty("MutationObserverPrototype");
testProperty("MutationRecord");
testProperty("MutationRecordPrototype");
testProperty("NAMESPACE_ERR");
testProperty("NAMESPACE_RULE");
testProperty("NEAREST");
testProperty("NEAREST_MIPMAP_LINEAR");
testProperty("NEAREST_MIPMAP_NEAREST");
testProperty("NETWORK_EMPTY");
testProperty("NETWORK_ERR");
testProperty("NETWORK_IDLE");
testProperty("NETWORK_LOADING");
testProperty("NETWORK_NO_SOURCE");
testProperty("NEVER");
testProperty("NEXT");
testProperty("NEXT_NO_DUPLICATE");
testProperty("NICEST");
testProperty("NONE");
testProperty("NORMAL");
testProperty("NOTATION_NODE");
testProperty("NOTEQUAL");
testProperty("NOT_FOUND_ERR");
testProperty("NOT_SUPPORTED_ERR");
testProperty("NO_DATA_ALLOWED_ERR");
testProperty("NO_ERROR");
testProperty("NO_MODIFICATION_ALLOWED_ERR");
testProperty("NamedNodeMap");
testProperty("NamedNodeMapPrototype");
testProperty("NavigationCompletedEvent");
testProperty("NavigationCompletedEventPrototype");
testProperty("NavigationEvent");
testProperty("NavigationEventPrototype");
testProperty("Navigator");
testProperty("NavigatorPrototype");
testProperty("Node");
testProperty("NodeFilter");
testProperty("NodeFilterPrototype");
testProperty("NodeIterator");
testProperty("NodeIteratorPrototype");
testProperty("NodeList");
testProperty("NodeListPrototype");
testProperty("NodePrototype");
testProperty("OBSOLETE");
testProperty("ONE");
testProperty("ONE_MINUS_CONSTANT_ALPHA");
testProperty("ONE_MINUS_CONSTANT_COLOR");
testProperty("ONE_MINUS_DST_ALPHA");
testProperty("ONE_MINUS_DST_COLOR");
testProperty("ONE_MINUS_SRC_ALPHA");
testProperty("ONE_MINUS_SRC_COLOR");
testProperty("OPEN");
testProperty("OPENED");
testProperty("OUT_OF_MEMORY");
testProperty("Option");
testProperty("PACK_ALIGNMENT");
testProperty("PAGE_RULE");
testProperty("PARSE_ERR");
testProperty("PATHSEG_ARC_ABS");
testProperty("PATHSEG_ARC_REL");
testProperty("PATHSEG_CLOSEPATH");
testProperty("PATHSEG_CURVETO_CUBIC_ABS");
testProperty("PATHSEG_CURVETO_CUBIC_REL");
testProperty("PATHSEG_CURVETO_CUBIC_SMOOTH_ABS");
testProperty("PATHSEG_CURVETO_CUBIC_SMOOTH_REL");
testProperty("PATHSEG_CURVETO_QUADRATIC_ABS");
testProperty("PATHSEG_CURVETO_QUADRATIC_REL");
testProperty("PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS");
testProperty("PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL");
testProperty("PATHSEG_LINETO_ABS");
testProperty("PATHSEG_LINETO_HORIZONTAL_ABS");
testProperty("PATHSEG_LINETO_HORIZONTAL_REL");
testProperty("PATHSEG_LINETO_REL");
testProperty("PATHSEG_LINETO_VERTICAL_ABS");
testProperty("PATHSEG_LINETO_VERTICAL_REL");
testProperty("PATHSEG_MOVETO_ABS");
testProperty("PATHSEG_MOVETO_REL");
testProperty("PATHSEG_UNKNOWN");
testProperty("PERMISSION_DENIED");
testProperty("POINTS");
testProperty("POLYGON_OFFSET_FACTOR");
testProperty("POLYGON_OFFSET_FILL");
testProperty("POLYGON_OFFSET_UNITS");
testProperty("POSITION_UNAVAILABLE");
testProperty("PREV");
testProperty("PREV_NO_DUPLICATE");
testProperty("PROCESSING_INSTRUCTION_NODE");
testProperty("PerfWidgetExternal");
testProperty("PerfWidgetExternalPrototype");
testProperty("Performance");
testProperty("PerformanceEntry");
testProperty("PerformanceEntryPrototype");
testProperty("PerformanceMark");
testProperty("PerformanceMarkPrototype");
testProperty("PerformanceMeasure");
testProperty("PerformanceMeasurePrototype");
testProperty("PerformanceNavigation");
testProperty("PerformanceNavigationPrototype");
testProperty("PerformancePrototype");
testProperty("PerformanceResourceTiming");
testProperty("PerformanceResourceTimingPrototype");
testProperty("PerformanceTiming");
testProperty("PerformanceTimingPrototype");
testProperty("Plugin");
testProperty("PluginArray");
testProperty("PluginArrayPrototype");
testProperty("PluginPrototype");
testProperty("PopStateEvent");
testProperty("PopStateEventPrototype");
testProperty("Position");
testProperty("PositionError");
testProperty("PositionErrorPrototype");
testProperty("PositionPrototype");
testProperty("ProcessingInstruction");
testProperty("ProcessingInstructionPrototype");
testProperty("ProgressEvent");
testProperty("ProgressEventPrototype");
testProperty("QUOTA_EXCEEDED_ERR");
testProperty("READ_ONLY");
testProperty("READ_WRITE");
testProperty("RED_BITS");
testProperty("REMOVAL");
testProperty("RENDERBUFFER");
testProperty("RENDERBUFFER_ALPHA_SIZE");
testProperty("RENDERBUFFER_BINDING");
testProperty("RENDERBUFFER_BLUE_SIZE");
testProperty("RENDERBUFFER_DEPTH_SIZE");
testProperty("RENDERBUFFER_GREEN_SIZE");
testProperty("RENDERBUFFER_HEIGHT");
testProperty("RENDERBUFFER_INTERNAL_FORMAT");
testProperty("RENDERBUFFER_RED_SIZE");
testProperty("RENDERBUFFER_STENCIL_SIZE");
testProperty("RENDERBUFFER_WIDTH");
testProperty("RENDERER");
testProperty("REPEAT");
testProperty("REPLACE");
testProperty("RGB");
testProperty("RGB565");
testProperty("RGB5_A1");
testProperty("RGBA");
testProperty("RGBA4");
testProperty("Range");
testProperty("RangeException");
testProperty("RangeExceptionPrototype");
testProperty("RangePrototype");
testProperty("SAMPLER_2D");
testProperty("SAMPLER_CUBE");
testProperty("SAMPLES");
testProperty("SAMPLE_ALPHA_TO_COVERAGE");
testProperty("SAMPLE_BUFFERS");
testProperty("SAMPLE_COVERAGE");
testProperty("SAMPLE_COVERAGE_INVERT");
testProperty("SAMPLE_COVERAGE_VALUE");
testProperty("SCISSOR_BOX");
testProperty("SCISSOR_TEST");
testProperty("SECURITY_ERR");
testProperty("SERIALIZE_ERR");
testProperty("SHADER_TYPE");
testProperty("SHADING_LANGUAGE_VERSION");
testProperty("SHORT");
testProperty("SHOWING");
testProperty("SHOW_ALL");
testProperty("SHOW_ATTRIBUTE");
testProperty("SHOW_CDATA_SECTION");
testProperty("SHOW_COMMENT");
testProperty("SHOW_DOCUMENT");
testProperty("SHOW_DOCUMENT_FRAGMENT");
testProperty("SHOW_DOCUMENT_TYPE");
testProperty("SHOW_ELEMENT");
testProperty("SHOW_ENTITY");
testProperty("SHOW_ENTITY_REFERENCE");
testProperty("SHOW_NOTATION");
testProperty("SHOW_PROCESSING_INSTRUCTION");
testProperty("SHOW_TEXT");
testProperty("SRC_ALPHA");
testProperty("SRC_ALPHA_SATURATE");
testProperty("SRC_COLOR");
testProperty("STARTED");
testProperty("START_TO_END");
testProperty("START_TO_START");
testProperty("STATIC_DRAW");
testProperty("STENCIL_ATTACHMENT");
testProperty("STENCIL_BACK_FAIL");
testProperty("STENCIL_BACK_FUNC");
testProperty("STENCIL_BACK_PASS_DEPTH_FAIL");
testProperty("STENCIL_BACK_PASS_DEPTH_PASS");
testProperty("STENCIL_BACK_REF");
testProperty("STENCIL_BACK_VALUE_MASK");
testProperty("STENCIL_BACK_WRITEMASK");
testProperty("STENCIL_BITS");
testProperty("STENCIL_BUFFER_BIT");
testProperty("STENCIL_CLEAR_VALUE");
testProperty("STENCIL_FAIL");
testProperty("STENCIL_FUNC");
testProperty("STENCIL_INDEX");
testProperty("STENCIL_INDEX8");
testProperty("STENCIL_PASS_DEPTH_FAIL");
testProperty("STENCIL_PASS_DEPTH_PASS");
testProperty("STENCIL_REF");
testProperty("STENCIL_TEST");
testProperty("STENCIL_VALUE_MASK");
testProperty("STENCIL_WRITEMASK");
testProperty("STREAM_DRAW");
testProperty("STYLE_RULE");
testProperty("SUBPIXEL_BITS");
testProperty("SVGAElement");
testProperty("SVGAElementPrototype");
testProperty("SVGAngle");
testProperty("SVGAnglePrototype");
testProperty("SVGAnimatedAngle");
testProperty("SVGAnimatedAnglePrototype");
testProperty("SVGAnimatedBoolean");
testProperty("SVGAnimatedBooleanPrototype");
testProperty("SVGAnimatedEnumeration");
testProperty("SVGAnimatedEnumerationPrototype");
testProperty("SVGAnimatedInteger");
testProperty("SVGAnimatedIntegerPrototype");
testProperty("SVGAnimatedLength");
testProperty("SVGAnimatedLengthList");
testProperty("SVGAnimatedLengthListPrototype");
testProperty("SVGAnimatedLengthPrototype");
testProperty("SVGAnimatedNumber");
testProperty("SVGAnimatedNumberList");
testProperty("SVGAnimatedNumberListPrototype");
testProperty("SVGAnimatedNumberPrototype");
testProperty("SVGAnimatedPreserveAspectRatio");
testProperty("SVGAnimatedPreserveAspectRatioPrototype");
testProperty("SVGAnimatedRect");
testProperty("SVGAnimatedRectPrototype");
testProperty("SVGAnimatedString");
testProperty("SVGAnimatedStringPrototype");
testProperty("SVGAnimatedTransformList");
testProperty("SVGAnimatedTransformListPrototype");
testProperty("SVGCircleElement");
testProperty("SVGCircleElementPrototype");
testProperty("SVGClipPathElement");
testProperty("SVGClipPathElementPrototype");
testProperty("SVGComponentTransferFunctionElement");
testProperty("SVGComponentTransferFunctionElementPrototype");
testProperty("SVGDefsElement");
testProperty("SVGDefsElementPrototype");
testProperty("SVGDescElement");
testProperty("SVGDescElementPrototype");
testProperty("SVGElement");
testProperty("SVGElementInstance");
testProperty("SVGElementInstanceList");
testProperty("SVGElementInstanceListPrototype");
testProperty("SVGElementInstancePrototype");
testProperty("SVGElementPrototype");
testProperty("SVGEllipseElement");
testProperty("SVGEllipseElementPrototype");
testProperty("SVGException");
testProperty("SVGExceptionPrototype");
testProperty("SVGFEBlendElement");
testProperty("SVGFEBlendElementPrototype");
testProperty("SVGFEColorMatrixElement");
testProperty("SVGFEColorMatrixElementPrototype");
testProperty("SVGFEComponentTransferElement");
testProperty("SVGFEComponentTransferElementPrototype");
testProperty("SVGFECompositeElement");
testProperty("SVGFECompositeElementPrototype");
testProperty("SVGFEConvolveMatrixElement");
testProperty("SVGFEConvolveMatrixElementPrototype");
testProperty("SVGFEDiffuseLightingElement");
testProperty("SVGFEDiffuseLightingElementPrototype");
testProperty("SVGFEDisplacementMapElement");
testProperty("SVGFEDisplacementMapElementPrototype");
testProperty("SVGFEDistantLightElement");
testProperty("SVGFEDistantLightElementPrototype");
testProperty("SVGFEFloodElement");
testProperty("SVGFEFloodElementPrototype");
testProperty("SVGFEFuncAElement");
testProperty("SVGFEFuncAElementPrototype");
testProperty("SVGFEFuncBElement");
testProperty("SVGFEFuncBElementPrototype");
testProperty("SVGFEFuncGElement");
testProperty("SVGFEFuncGElementPrototype");
testProperty("SVGFEFuncRElement");
testProperty("SVGFEFuncRElementPrototype");
testProperty("SVGFEGaussianBlurElement");
testProperty("SVGFEGaussianBlurElementPrototype");