forked from microsoft/TypeScript-DOM-lib-generator
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomments.json
More file actions
1815 lines (1815 loc) · 99.7 KB
/
comments.json
File metadata and controls
1815 lines (1815 loc) · 99.7 KB
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
{
"mixins": {
"mixin": {
"DocumentOrShadowRoot": {
"methods": {
"method": {
"elementFromPoint": {
"comment": "Returns the element for the specified x coordinate and the specified y coordinate.\n@param x The x-offset\n@param y The y-offset"
}
}
},
"properties": {
"property": {
"styleSheets": {
"comment": "Retrieves a collection of styleSheet objects representing the style sheets that correspond to each instance of a link or style object in the document."
}
}
}
},
"GlobalEventHandlers": {
"properties": {
"property": {
"ondragleave": {
"comment": "Fires on the target object when the user moves the mouse out of a valid drop target during a drag operation.\n@param ev The drag event."
},
"ondragenter": {
"comment": "Fires on the target element when the user drags the object to a valid drop target.\n@param ev The drag event."
},
"ondragend": {
"comment": "Fires on the source object when the user releases the mouse at the close of a drag operation.\n@param ev The event."
},
"ondragover": {
"comment": "Fires on the target element continuously while the user drags the object over a valid drop target.\n@param ev The event."
},
"ondragstart": {
"comment": "Fires on the source object when the user starts to drag a text selection or selected object.\n@param ev The event."
},
"ondrag": {
"comment": "Fires on the source object continuously during a drag operation.\n@param ev The event."
},
"onseeked": {
"comment": "Occurs when the seek operation ends.\n@param ev The event."
},
"onseeking": {
"comment": "Occurs when the current playback position is moved.\n@param ev The event."
},
"onreset": {
"comment": "Fires when the user resets a form.\n@param ev The event."
},
"onkeydown": {
"comment": "Fires when the user presses a key.\n@param ev The keyboard event"
},
"onkeyup": {
"comment": "Fires when the user releases a key.\n@param ev The keyboard event"
},
"ondurationchange": {
"comment": "Occurs when the duration attribute is updated.\n@param ev The event."
},
"onblur": {
"comment": "Fires when the object loses the input focus.\n@param ev The focus event."
},
"onload": {
"comment": "Fires immediately after the browser loads the object.\n@param ev The event."
},
"onscroll": {
"comment": "Fires when the user repositions the scroll box in the scroll bar on the object.\n@param ev The event."
},
"onpause": {
"comment": "Occurs when playback is paused.\n@param ev The event."
},
"onmousedown": {
"comment": "Fires when the user clicks the object with either mouse button.\n@param ev The mouse event."
},
"onclick": {
"comment": "Fires when the user clicks the left mouse button on the object\n@param ev The mouse event."
},
"onwaiting": {
"comment": "Occurs when playback stops because the next frame of a video resource is not available.\n@param ev The event."
},
"onkeypress": {
"comment": "Fires when the user presses an alphanumeric key.\n@param ev The event."
},
"onloadeddata": {
"comment": "Occurs when media data is loaded at the current playback position.\n@param ev The event."
},
"onfocus": {
"comment": "Fires when the object receives focus.\n@param ev The event."
},
"ontimeupdate": {
"comment": "Occurs to indicate the current playback position.\n@param ev The event."
},
"onselect": {
"comment": "Fires when the current selection changes.\n@param ev The event."
},
"onended": {
"comment": "Occurs when the end of playback is reached.\n@param ev The event"
},
"onabort": {
"comment": "Fires when the user aborts the download.\n@param ev The event."
},
"onratechange": {
"comment": "Occurs when the playback rate is increased or decreased.\n@param ev The event."
},
"onprogress": {
"comment": "Occurs to indicate progress while downloading media data.\n@param ev The event."
},
"ondblclick": {
"comment": "Fires when the user double-clicks the object.\n@param ev The mouse event."
},
"oncontextmenu": {
"comment": "Fires when the user clicks the right mouse button in the client area, opening the context menu.\n@param ev The mouse event."
},
"onloadedmetadata": {
"comment": "Occurs when the duration and dimensions of the media have been determined.\n@param ev The event."
},
"onerror": {
"comment": "Fires when an error occurs during object loading.\n@param ev The event."
},
"onplay": {
"comment": "Occurs when the play method is requested.\n@param ev The event."
},
"onplaying": {
"comment": "Occurs when the audio or video has started playing.\n@param ev The event."
},
"onstalled": {
"comment": "Occurs when the download has stopped.\n@param ev The event."
},
"onmousemove": {
"comment": "Fires when the user moves the mouse over the object.\n@param ev The mouse event."
},
"onmouseup": {
"comment": "Fires when the user releases a mouse button while the mouse is over the object.\n@param ev The mouse event."
},
"onmouseover": {
"comment": "Fires when the user moves the mouse pointer into the object.\n@param ev The mouse event."
},
"onsuspend": {
"comment": "Occurs if the load operation has been intentionally halted.\n@param ev The event."
},
"onmouseout": {
"comment": "Fires when the user moves the mouse pointer outside the boundaries of the object.\n@param ev The mouse event."
},
"onvolumechange": {
"comment": "Occurs when the volume is changed, or playback is muted or unmuted.\n@param ev The event."
},
"onchange": {
"comment": "Fires when the contents of the object or selection have changed.\n@param ev The event."
},
"oncanplay": {
"comment": "Occurs when playback is possible, but would require further buffering.\n@param ev The event."
},
"onloadstart": {
"comment": "Occurs when Internet Explorer begins looking for media data.\n@param ev The event."
},
"onemptied": {
"comment": "Occurs when the media element is reset to its initial state.\n@param ev The event."
}
}
}
}
}
},
"interfaces": {
"interface": {
"Headers": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an iterator allowing to go through all key/value pairs contained in this object.",
"keys": "Returns an iterator allowing to go through all keys of the key/value pairs contained in this object.",
"values": "Returns an iterator allowing to go through all values of the key/value pairs contained in this object."
}
}
}
},
"FormData": {
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the list.",
"keys": "Returns a list of keys in the list.",
"values": "Returns a list of values in the list."
}
}
}
},
"NodeListOf": {
"methods": {
"method": {
"forEach": {
"comment": "Performs the specified action for each node in an list.\n@param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.\n@param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
}
}
},
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the list.",
"keys": "Returns an list of keys in the list.",
"values": "Returns an list of values in the list."
}
}
}
},
"NodeList": {
"methods": {
"method": {
"forEach": {
"comment": "Performs the specified action for each node in an list.\n@param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.\n@param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."
}
}
},
"iterator": {
"comments": {
"comment": {
"entries": "Returns an array of key, value pairs for every entry in the list.",
"keys": "Returns an list of keys in the list.",
"values": "Returns an list of values in the list."
}
}
}
},
"HTMLTableElement": {
"properties": {
"property": {
"width": {
"comment": "Sets or retrieves the width of the object."
},
"cellSpacing": {
"comment": "Sets or retrieves the amount of space between cells in a table."
},
"tFoot": {
"comment": "Retrieves the tFoot object of the table."
},
"frame": {
"comment": "Sets or retrieves the way the border frame around the table is displayed."
},
"rows": {
"comment": "Sets or retrieves the number of horizontal rows contained in the object."
},
"rules": {
"comment": "Sets or retrieves which dividing lines (inner borders) are displayed."
},
"summary": {
"comment": "Sets or retrieves a description and/or structure of the object."
},
"caption": {
"comment": "Retrieves the caption object of a table."
},
"tBodies": {
"comment": "Retrieves a collection of all tBody objects in the table. Objects in this collection are in source order."
},
"tHead": {
"comment": "Retrieves the tHead object of the table."
},
"align": {
"comment": "Sets or retrieves a value that indicates the table alignment."
},
"cellPadding": {
"comment": "Sets or retrieves the amount of space between the border of the cell and the content of the cell."
},
"border": {
"comment": "Sets or retrieves the width of the border to draw around the object."
}
}
},
"methods": {
"method": {
"deleteRow": {
"comment": "Removes the specified row (tr) from the element and from the rows collection.\n@param index Number that specifies the zero-based position in the rows collection of the row to remove."
},
"createTBody": {
"comment": "Creates an empty tBody element in the table."
},
"deleteCaption": {
"comment": "Deletes the caption element and its contents from the table."
},
"insertRow": {
"comment": "Creates a new row (tr) in the table, and adds the row to the rows collection.\n@param index Number that specifies where to insert the row in the rows collection. The default value is -1, which appends the new row to the end of the rows collection."
},
"deleteTFoot": {
"comment": "Deletes the tFoot element and its contents from the table."
},
"createTHead": {
"comment": "Returns the tHead element object if successful, or null otherwise."
},
"deleteTHead": {
"comment": "Deletes the tHead element and its contents from the table."
},
"createCaption": {
"comment": "Creates an empty caption element in the table."
},
"createTFoot": {
"comment": "Creates an empty tFoot element in the table."
}
}
}
},
"HTMLBaseElement": {
"properties": {
"property": {
"target": {
"comment": "Sets or retrieves the window or frame at which to target content."
},
"href": {
"comment": "Gets or sets the baseline URL on which relative links are based."
}
}
}
},
"HTMLParagraphElement": {
"properties": {
"property": {
"align": {
"comment": "Sets or retrieves how the object is aligned with adjacent text."
}
}
}
},
"HTMLOListElement": {
"properties": {
"property": {
"start": {
"comment": "The starting number."
}
}
}
},
"HTMLSelectElement": {
"properties": {
"property": {
"value": {
"comment": "Sets or retrieves the value which is returned to the server when the form control is submitted."
},
"form": {
"comment": "Retrieves a reference to the form that the object is embedded in."
},
"name": {
"comment": "Sets or retrieves the name of the object."
},
"size": {
"comment": "Sets or retrieves the number of rows in the list box."
},
"length": {
"comment": "Sets or retrieves the number of objects in a collection."
},
"selectedIndex": {
"comment": "Sets or retrieves the index of the selected option in a select object."
},
"multiple": {
"comment": "Sets or retrieves the Boolean value indicating whether multiple items can be selected from a list."
},
"type": {
"comment": "Retrieves the type of select control based on the value of the MULTIPLE attribute."
},
"validationMessage": {
"comment": "Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting."
},
"validity": {
"comment": "Returns a ValidityState object that represents the validity states of an element."
},
"required": {
"comment": "When present, marks an element that can't be submitted without a value."
},
"willValidate": {
"comment": "Returns whether an element will successfully validate based on forms validation rules and constraints."
}
}
},
"methods": {
"method": {
"remove": {
"comment": "Removes an element from the collection.\n@param index Number that specifies the zero-based index of the element to remove from the collection."
},
"add": {
"comment": "Adds an element to the areas, controlRange, or options collection.\n@param element Variant of type Number that specifies the index position in the collection where the element is placed. If no value is given, the method places the element at the end of the collection.\n@param before Variant of type Object that specifies an element to insert before, or null to append the object to the collection."
},
"item": {
"comment": "Retrieves a select object or an object from an options collection.\n@param name Variant of type Number or String that specifies the object or collection to retrieve. If this parameter is an integer, it is the zero-based index of the object. If this parameter is a string, all objects with matching name or id properties are retrieved, and a collection is returned if more than one match is made.\n@param index Variant of type Number that specifies the zero-based index of the object to retrieve when a collection is returned."
},
"namedItem": {
"comment": "Retrieves a select object or an object from an options collection.\n@param namedItem A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made."
},
"checkValidity": {
"comment": "Returns whether a form will validate when it is submitted, without having to submit it."
},
"setCustomValidity": {
"comment": "Sets a custom error message that is displayed when a form is submitted.\n@param error Sets a custom error message that is displayed when a form is submitted."
}
}
}
},
"HTMLMetaElement": {
"properties": {
"property": {
"httpEquiv": {
"comment": "Gets or sets information used to bind the value of a content attribute of a meta element to an HTTP response header."
},
"name": {
"comment": "Sets or retrieves the value specified in the content attribute of the meta object."
},
"content": {
"comment": "Gets or sets meta-information to associate with httpEquiv or name."
},
"scheme": {
"comment": "Sets or retrieves a scheme to be used in interpreting the value of a property specified for the object."
}
}
}
},
"HTMLLinkElement": {
"properties": {
"property": {
"rel": {
"comment": "Sets or retrieves the relationship between the object and the destination of the link."
},
"target": {
"comment": "Sets or retrieves the window or frame at which to target content."
},
"href": {
"comment": "Sets or retrieves a destination URL or an anchor point."
},
"media": {
"comment": "Sets or retrieves the media type."
},
"rev": {
"comment": "Sets or retrieves the relationship between the object and the destination of the link."
},
"type": {
"comment": "Sets or retrieves the MIME type of the object."
},
"charset": {
"comment": "Sets or retrieves the character set used to encode the object."
},
"hreflang": {
"comment": "Sets or retrieves the language code of the object."
}
}
}
},
"HTMLFontElement": {
"properties": {
"property": {
"face": {
"comment": "Sets or retrieves the current typeface family."
}
}
}
},
"HTMLTableCaptionElement": {
"properties": {
"property": {
"align": {
"comment": "Sets or retrieves the alignment of the caption or legend."
}
}
}
},
"HTMLOptionElement": {
"properties": {
"property": {
"index": {
"comment": "Sets or retrieves the ordinal position of an option in a list box."
},
"defaultSelected": {
"comment": "Sets or retrieves the status of an option."
},
"value": {
"comment": "Sets or retrieves the value which is returned to the server when the form control is submitted."
},
"text": {
"comment": "Sets or retrieves the text string specified by the option tag."
},
"form": {
"comment": "Retrieves a reference to the form that the object is embedded in."
},
"label": {
"comment": "Sets or retrieves a value that you can use to implement your own label functionality for the object."
},
"selected": {
"comment": "Sets or retrieves whether the option in the list box is the default item."
}
}
}
},
"HTMLMapElement": {
"properties": {
"property": {
"name": {
"comment": "Sets or retrieves the name of the object."
},
"areas": {
"comment": "Retrieves a collection of the area objects defined for the given map object."
}
}
}
},
"HTMLCollection": {
"properties": {
"property": {
"length": {
"comment": "Sets or retrieves the number of objects in a collection."
}
}
},
"methods": {
"method": {
"item": {
"comment": "Retrieves an object from various collections."
},
"namedItem": {
"comment": "Retrieves a select object or an object from an options collection."
}
}
}
},
"HTMLImageElement": {
"properties": {
"property": {
"width": {
"comment": "Sets or retrieves the width of the object."
},
"vspace": {
"comment": "Sets or retrieves the vertical margin for the object."
},
"naturalHeight": {
"comment": "The original height of the image resource before sizing."
},
"alt": {
"comment": "Sets or retrieves a text alternative to the graphic."
},
"align": {
"comment": "Sets or retrieves how the object is aligned with adjacent text."
},
"src": {
"comment": "The address or URL of the a media resource that is to be considered."
},
"useMap": {
"comment": "Sets or retrieves the URL, often with a bookmark extension (#name), to use as a client-side image map."
},
"naturalWidth": {
"comment": "The original width of the image resource before sizing."
},
"name": {
"comment": "Sets or retrieves the name of the object."
},
"height": {
"comment": "Sets or retrieves the height of the object."
},
"border": {
"comment": "Specifies the properties of a border drawn around an object."
},
"hspace": {
"comment": "Sets or retrieves the width of the border to draw around the object."
},
"longDesc": {
"comment": "Sets or retrieves a Uniform Resource Identifier (URI) to a long description of the object."
},
"isMap": {
"comment": "Sets or retrieves whether the image is a server-side image map."
},
"complete": {
"comment": "Retrieves whether the object is fully loaded."
}
}
}
},
"HTMLAreaElement": {
"properties": {
"property": {
"alt": {
"comment": "Sets or retrieves a text alternative to the graphic."
},
"coords": {
"comment": "Sets or retrieves the coordinates of the object."
},
"target": {
"comment": "Sets or retrieves the window or frame at which to target content."
},
"noHref": {
"comment": "Sets or gets whether clicks in this region cause action."
},
"shape": {
"comment": "Sets or retrieves the shape of the object."
}
}
}
},
"HTMLButtonElement": {
"properties": {
"property": {
"value": {
"comment": "Sets or retrieves the default or selected value of the control."
},
"form": {
"comment": "Retrieves a reference to the form that the object is embedded in."
},
"name": {
"comment": "Sets or retrieves the name of the object."
},
"type": {
"comment": "Gets the classification and default behavior of the button."
},
"validationMessage": {
"comment": "Returns the error message that would be displayed if the user submits the form, or an empty string if no error message. It also triggers the standard error message, such as \"this is a required field\". The result is that the user sees validation messages without actually submitting."
},
"formTarget": {
"comment": "Overrides the target attribute on a form element."
},
"willValidate": {
"comment": "Returns whether an element will successfully validate based on forms validation rules and constraints."
},
"formAction": {
"comment": "Overrides the action attribute (where the data on a form is sent) on the parent form element."
},
"validity": {
"comment": "Returns a ValidityState object that represents the validity states of an element."
},
"formNoValidate": {
"comment": "Overrides any validation or required attributes on a form or form elements to allow it to be submitted without validation. This can be used to create a \"save draft\"-type submit option."
},
"formEnctype": {
"comment": "Used to override the encoding (formEnctype attribute) specified on the form element."
},
"formMethod": {
"comment": "Overrides the submit method attribute previously specified on a form element."
}
}
},
"methods": {
"method": {
"checkValidity": {
"comment": "Returns whether a form will validate when it is submitted, without having to submit it."
},
"setCustomValidity": {
"comment": "Sets a custom error message that is displayed when a form is submitted.\n@param error Sets a custom error message that is displayed when a form is submitted."
}
}
}
},
"HTMLSourceElement": {
"properties": {
"property": {
"src": {
"comment": "The address or URL of the a media resource that is to be considered."
},
"media": {
"comment": "Gets or sets the intended media type of the media source."
},
"type": {
"comment": "Gets or sets the MIME type of a media resource."
}
}
}
},
"Document": {
"properties": {
"property": {
"implementation": {
"comment": "Gets the implementation object of the current document."
},
"scripts": {
"comment": "Retrieves a collection of all script objects in the document."
},
"charset": {
"comment": "Gets or sets the character set used to encode the object."
},
"vlinkColor": {
"comment": "Sets or gets the color of the links that the user has visited."
},
"title": {
"comment": "Contains the title of the document."
},
"embeds": {
"comment": "Retrieves a collection of all embed objects in the document."
},
"all": {
"comment": "Returns a reference to the collection of elements contained by the object."
},
"forms": {
"comment": "Retrieves a collection, in source order, of all form objects in the document."
},
"dir": {
"comment": "Sets or retrieves a value that indicates the reading order of the object."
},
"designMode": {
"comment": "Sets or gets a value that indicates whether the document can be edited."
},
"inputEncoding": {
"comment": "Returns the character encoding used to create the webpage that is loaded into the document object."
},
"links": {
"comment": "Retrieves a collection of all a objects that specify the href property and all area objects in the document."
},
"URL": {
"comment": "Sets or gets the URL for the current document."
},
"anchors": {
"comment": "Retrieves a collection of all a objects that have a name and/or id property. Objects in this collection are in HTML source order."
},
"readyState": {
"comment": "Retrieves a value that indicates the current state of the object."
},
"referrer": {
"comment": "Gets the URL of the location that referred the user to the current page."
},
"alinkColor": {
"comment": "Sets or gets the color of all active links in the document."
},
"doctype": {
"comment": "Gets an object representing the document type declaration associated with the current document."
},
"bgColor": {
"comment": "Deprecated. Sets or retrieves a value that indicates the background color behind the object."
},
"linkColor": {
"comment": "Sets or gets the color of the document links."
},
"applets": {
"comment": "Retrieves a collection of all applet objects in the document."
},
"body": {
"comment": "Specifies the beginning and end of the document body."
},
"domain": {
"comment": "Sets or gets the security domain of the document."
},
"documentElement": {
"comment": "Gets a reference to the root node of the document."
},
"images": {
"comment": "Retrieves a collection, in source order, of img objects in the document."
},
"location": {
"comment": "Contains information about the current URL."
},
"onreadystatechange": {
"comment": "Fires when the state of the object has changed.\n@param ev The event"
},
"lastModified": {
"comment": "Gets the date that the page was last modified, if the page supplies one."
},
"fgColor": {
"comment": "Sets or gets the foreground (text) color of the document."
},
"compatMode": {
"comment": "Gets a value that indicates whether standards-compliant mode is switched on for the object."
}
}
},
"methods": {
"method": {
"queryCommandValue": {
"comment": "Returns the current value of the document, range, or current selection for the given command.\n@param commandId String that specifies a command identifier."
},
"queryCommandIndeterm": {
"comment": "Returns a Boolean value that indicates whether the specified command is in the indeterminate state.\n@param commandId String that specifies a command identifier."
},
"execCommand": {
"comment": "Executes a command on the current document, current selection, or the given range.\n@param commandId String that specifies the command to execute. This command can be any of the command identifiers that can be executed in script.\n@param showUI Display the user interface, defaults to false.\n@param value Value to assign."
},
"write": {
"comment": "Writes one or more HTML expressions to a document in the specified window.\n@param content Specifies the text and HTML tags to write."
},
"createElement": {
"comment": "Creates an instance of the element for the specified tag.\n@param tagName The name of an element."
},
"writeln": {
"comment": "Writes one or more HTML expressions, followed by a carriage return, to a document in the specified window.\n@param content The text and HTML tags to write."
},
"open": {
"comment": "Opens a new window and loads a document specified by a given URL. Also, opens a new window that uses the url parameter and the name parameter to collect the output of the write method and the writeln method.\n@param url Specifies a MIME type for the document.\n@param name Specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an anchor element.\n@param features Contains a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, \"fullscreen=yes, toolbar=yes\"). The following values are supported.\n@param replace Specifies whether the existing entry for the document is replaced in the history list."
},
"queryCommandSupported": {
"comment": "Returns a Boolean value that indicates whether the current command is supported on the current range.\n@param commandId Specifies a command identifier."
},
"createTreeWalker": {
"comment": "Creates a TreeWalker object that you can use to traverse filtered lists of nodes or elements in a document.\n@param root The root element or node to start traversing on.\n@param whatToShow The type of nodes or elements to appear in the node list. For more information, see whatToShow.\n@param filter A custom NodeFilter function to use."
},
"queryCommandEnabled": {
"comment": "Returns a Boolean value that indicates whether a specified command can be successfully executed using execCommand, given the current state of the document.\n@param commandId Specifies a command identifier."
},
"close": {
"comment": "Closes an output stream and forces the sent data to display."
},
"createRange": {
"comment": " Returns an empty range object that has both of its boundary points positioned at the beginning of the document."
},
"createComment": {
"comment": "Creates a comment object with the specified data.\n@param data Sets the comment object's data."
},
"getElementsByTagName": {
"comment": "Retrieves a collection of objects based on the specified element name.\n@param name Specifies the name of an element."
},
"createDocumentFragment": {
"comment": "Creates a new document."
},
"getElementsByName": {
"comment": "Gets a collection of objects based on the value of the NAME or ID attribute.\n@param elementName Gets a collection of objects based on the value of the NAME or ID attribute."
},
"queryCommandState": {
"comment": "Returns a Boolean value that indicates the current state of the command.\n@param commandId String that specifies a command identifier."
},
"hasFocus": {
"comment": "Gets a value indicating whether the object currently has focus."
},
"createAttribute": {
"comment": "Creates an attribute object with a specified name.\n@param name String that sets the attribute object's name."
},
"createTextNode": {
"comment": "Creates a text string from the specified value.\n@param data String that specifies the nodeValue property of the text node."
},
"createNodeIterator": {
"comment": "Creates a NodeIterator object that you can use to traverse filtered lists of nodes or elements in a document.\n@param root The root element or node to start traversing on.\n@param whatToShow The type of nodes or elements to appear in the node list\n@param filter A custom NodeFilter function to use. For more information, see filter. Use null for no filter."
},
"getSelection": {
"comment": "Returns an object representing the current selection of the document that is loaded into the object displaying a webpage."
},
"getElementById": {
"comment": "Returns a reference to the first object with the specified value of the ID attribute.\n@param elementId String that specifies the ID value."
}
}
}
},
"HTMLScriptElement": {
"properties": {
"property": {
"defer": {
"comment": "Sets or retrieves the status of the script."
},
"text": {
"comment": "Retrieves or sets the text of the object as a string."
},
"src": {
"comment": "Retrieves the URL to an external file that contains the source code or data."
},
"htmlFor": {
"comment": "Sets or retrieves the object that is bound to the event script."
},
"charset": {
"comment": "Sets or retrieves the character set used to encode the object."
},
"type": {
"comment": "Sets or retrieves the MIME type for the associated scripting engine."
},
"event": {
"comment": "Sets or retrieves the event for which the script is written."
}
}
}
},
"HTMLTableRowElement": {
"properties": {
"property": {
"rowIndex": {
"comment": "Retrieves the position of the object in the rows collection for the table."
},
"cells": {
"comment": "Retrieves a collection of all cells in the table row."
},
"align": {
"comment": "Sets or retrieves how the object is aligned with adjacent text."
},
"sectionRowIndex": {
"comment": "Retrieves the position of the object in the collection."
}
}
},
"methods": {
"method": {
"deleteCell": {
"comment": "Removes the specified cell from the table row, as well as from the cells collection.\n@param index Number that specifies the zero-based position of the cell to remove from the table row. If no value is provided, the last cell in the cells collection is deleted."
},
"insertCell": {
"comment": "Creates a new cell in the table row, and adds the cell to the cells collection.\n@param index Number that specifies where to insert the cell in the tr. The default value is -1, which appends the new cell to the end of the cells collection."
}
}
}
},
"HTMLHtmlElement": {
"properties": {
"property": {
"version": {
"comment": "Sets or retrieves the DTD version that governs the current document."
}
}
}
},
"HTMLFrameElement": {
"properties": {
"property": {
"scrolling": {
"comment": "Sets or retrieves whether the frame can be scrolled."
},
"marginHeight": {
"comment": "Sets or retrieves the top and bottom margin heights before displaying the text in a frame."
},
"marginWidth": {
"comment": "Sets or retrieves the left and right margin widths before displaying the text in a frame."
},
"frameBorder": {
"comment": "Sets or retrieves whether to display a border for the frame."
},
"noResize": {
"comment": "Sets or retrieves whether the user can resize the frame."
},
"contentWindow": {
"comment": "Retrieves the object of the specified."
},
"src": {
"comment": "Sets or retrieves a URL to be loaded by the object."
},
"name": {
"comment": "Sets or retrieves the frame name."
},
"contentDocument": {
"comment": "Retrieves the document object of the page or frame."
},
"longDesc": {
"comment": "Sets or retrieves a URI to a long description of the object."
}
}
}
},
"HTMLQuoteElement": {
"properties": {
"property": {
"cite": {
"comment": "Sets or retrieves reference information about the object."
}
}
}
},
"HTMLFrameSetElement": {
"properties": {
"property": {
"rows": {
"comment": "Sets or retrieves the frame heights of the object."
},
"cols": {
"comment": "Sets or retrieves the frame widths of the object."
}
}
}
},
"HTMLLabelElement": {
"properties": {
"property": {
"htmlFor": {
"comment": "Sets or retrieves the object to which the given label object is assigned."
},
"form": {
"comment": "Retrieves a reference to the form that the object is embedded in."
}
}
}
},
"HTMLLegendElement": {
"properties": {
"property": {
"form": {
"comment": "Retrieves a reference to the form that the object is embedded in."
}
}
}
},
"HTMLLIElement": {
"properties": {
"property": {
"value": {
"comment": "Sets or retrieves the value of a list item."
}
}
}
},
"HTMLIFrameElement": {
"properties": {
"property": {
"width": {
"comment": "Sets or retrieves the width of the object."
},
"scrolling": {
"comment": "Sets or retrieves whether the frame can be scrolled."
},
"marginHeight": {
"comment": "Sets or retrieves the top and bottom margin heights before displaying the text in a frame."
},
"marginWidth": {
"comment": "Sets or retrieves the left and right margin widths before displaying the text in a frame."
},
"frameBorder": {
"comment": "Sets or retrieves whether to display a border for the frame."
},
"contentWindow": {
"comment": "Retrieves the object of the specified."
},
"align": {
"comment": "Sets or retrieves how the object is aligned with adjacent text."
},
"src": {