summaryrefslogtreecommitdiff
path: root/test/dom1-interfaces.xml
blob: 0c2488e541b275c793189317547ca3b3581c7b82 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2001 World Wide Web Consortium,
(Massachusetts Institute of Technology, Institut National de
Recherche en Informatique et en Automatique, Keio University). All
Rights Reserved. This program is distributed under the W3C's Document
Intellectual Property License. This program is distributed in the
hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
See W3C License http://www.w3.org/Consortium/Legal/ for more details.
-->
<!--This file is an extract of interface definitions from Document Object Model (DOM) Level 1 Specification-->
<library>
<exception name="DOMException" id="ID-17189187">
<descr>
<p>DOM operations only raise exceptions in "exceptional" circumstances, i.e., when an operation is impossible to perform (either for logical reasons, because data is lost, or because the implementation has become unstable). In general, DOM methods return specific error values in ordinary processing situation, such as out-of-bound errors when using<code>NodeList</code>.</p>
<p>Implementations may raise other exceptions under other circumstances. For example, implementations may raise an implementation-dependent exception if a<code>null</code>argument is passed.</p>
<p>Some languages and object systems do not support the concept of exceptions. For such systems, error conditions may be indicated using native error reporting mechanisms. For some bindings, for example, methods may return error codes similar to those listed in the corresponding method descriptions.</p>
</descr>
<component id="ID-146F692A" name="code">
<typename>unsigned short</typename>
</component>
</exception>
<group id="ID-258A00AF" name="ExceptionCode">
<descr>
<p>An integer indicating the type of error generated.</p>
</descr>
<constant name="INDEX_SIZE_ERR" type="unsigned short" value="1">
<descr>
<p>If index or size is negative, or greater than the allowed value</p>
</descr>
</constant>
<constant name="DOMSTRING_SIZE_ERR" type="unsigned short" value="2">
<descr>
<p>If the specified range of text does not fit into a DOMString</p>
</descr>
</constant>
<constant name="HIERARCHY_REQUEST_ERR" type="unsigned short" value="3">
<descr>
<p>If any node is inserted somewhere it doesn't belong</p>
</descr>
</constant>
<constant name="WRONG_DOCUMENT_ERR" type="unsigned short" value="4">
<descr>
<p>If a node is used in a different document than the one that created it (that doesn't support it)</p>
</descr>
</constant>
<constant name="INVALID_CHARACTER_ERR" type="unsigned short" value="5">
<descr>
<p>If an invalid character is specified, such as in a name.</p>
</descr>
</constant>
<constant name="NO_DATA_ALLOWED_ERR" type="unsigned short" value="6">
<descr>
<p>If data is specified for a node which does not support data</p>
</descr>
</constant>
<constant name="NO_MODIFICATION_ALLOWED_ERR" type="unsigned short" value="7">
<descr>
<p>If an attempt is made to modify an object where modifications are not allowed</p>
</descr>
</constant>
<constant name="NOT_FOUND_ERR" type="unsigned short" value="8">
<descr>
<p>If an attempt was made to reference a node in a context where it does not exist</p>
</descr>
</constant>
<constant name="NOT_SUPPORTED_ERR" type="unsigned short" value="9">
<descr>
<p>If the implementation does not support the type of object requested</p>
</descr>
</constant>
<constant name="INUSE_ATTRIBUTE_ERR" type="unsigned short" value="10">
<descr>
<p>If an attempt is made to add an attribute that is already inuse elsewhere</p>
</descr>
</constant>
</group>
<interface name="DOMImplementation" id="ID-102161490">
<descr>
<p>The<code>DOMImplementation</code>interface provides a number of methods for performing operations that are independent of any particular instance of the document object model.</p>
<p>The DOM Level 1 does not specify a way of creating a document instance, and hence document creation is an operation specific to an implementation. Future Levels of the DOM specification are expected to provide methods for creating documents directly.</p>
</descr>
<method name="hasFeature" id="ID-5CED94D7">
<descr>
<p>Test if the DOM implementation implements a specific feature.</p>
</descr>
<parameters>
<param name="feature" type="DOMString" attr="in">
<descr>
<p>The package name of the feature to test. In Level 1, the legal values are "HTML" and "XML" (case-insensitive).</p>
</descr>
</param>
<param name="version" type="DOMString" attr="in">
<descr>
<p>This is the version number of the package name to test. In Level 1, this is the string "1.0". If the version is not specified, supporting any version of the feature will cause the method to return<code>true</code>.</p>
</descr>
</param>
</parameters>
<returns type="boolean">
<descr>
<p>
<code>true</code>if the feature is implemented in the specified version,<code>false</code>otherwise.</p>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="DocumentFragment" inherits="Node" id="ID-B63ED1A3">
<descr>
<p>
<code>DocumentFragment</code>is a "lightweight" or "minimal"<code>Document</code>object. It is very common to want to be able to extract a portion of a document's tree or to create a new fragment of a document. Imagine implementing a user command like cut or rearranging a document by moving fragments around. It is desirable to have an object which can hold such fragments and it is quite natural to use a Node for this purpose. While it is true that a<code>Document</code>object could fulfil this role, a<code>Document</code>object can potentially be a heavyweight object, depending on the underlying implementation. What is really needed for this is a very lightweight object.<code>DocumentFragment</code>is such an object.</p>
<p>Furthermore, various operations -- such as inserting nodes as children of another<code>Node</code>-- may take<code>DocumentFragment</code>objects as arguments; this results in all the child nodes of the<code>DocumentFragment</code>being moved to the child list of this node.</p>
<p>The children of a<code>DocumentFragment</code>node are zero or more nodes representing the tops of any sub-trees defining the structure of the document.<code>DocumentFragment</code>nodes do not need to be well-formed XML documents (although they do need to follow the rules imposed upon well-formed XML parsed entities, which can have multiple top nodes). For example, a<code>DocumentFragment</code>might have only one child and that child node could be a<code>Text</code>node. Such a structure model represents neither an HTML document nor a well-formed XML document.</p>
<p>When a<code>DocumentFragment</code>is inserted into a<code>Document</code>(or indeed any other<code>Node</code>that may take children) the children of the<code>DocumentFragment</code>and not the<code>DocumentFragment</code>itself are inserted into the<code>Node</code>. This makes the<code>DocumentFragment</code>very useful when the user wishes to create nodes that are siblings; the<code>DocumentFragment</code>acts as the parent of these nodes so that the user can use the standard methods from the<code>Node</code>interface, such as<code>insertBefore()</code>and<code>appendChild()</code>.</p>
</descr>
</interface>
<interface name="Document" inherits="Node" id="i-Document">
<descr>
<p>The<code>Document</code>interface represents the entire HTML or XML document. Conceptually, it is the root of the document tree, and provides the primary access to the document's data.</p>
<p>Since elements, text nodes, comments, processing instructions, etc. cannot exist outside the context of a<code>Document</code>, the<code>Document</code>interface also contains the factory methods needed to create these objects. The<code>Node</code>objects created have a<code>ownerDocument</code>attribute which associates them with the<code>Document</code>within whose context they were created.</p>
</descr>
<attribute readonly="yes" name="doctype" type="DocumentType" id="ID-B63ED1A31">
<descr>
<p>The Document Type Declaration (see<code>DocumentType</code>) associated with this document. For HTML documents as well as XML documents without a document type declaration this returns<code>null</code>. The DOM Level 1 does not support editing the Document Type Declaration, therefore<code>docType</code>cannot be altered in any way.</p>
</descr>
</attribute>
<attribute readonly="yes" name="implementation" type="DOMImplementation" id="ID-1B793EBA">
<descr>
<p>The<code>DOMImplementation</code>object that handles this document. A DOM application may use objects from multiple implementations.</p>
</descr>
</attribute>
<attribute readonly="yes" name="documentElement" type="Element" id="ID-87CD092">
<descr>
<p>This is a convenience attribute that allows direct access to the child node that is the root element of the document. For HTML documents, this is the element with the tagName "HTML".</p>
</descr>
</attribute>
<method name="createElement" id="ID-2141741547">
<descr>
<p>Creates an element of the type specified. Note that the instance returned implements the<xtermref href="ID-745549614" form="simple" show="embed" actuate="auto">Element</xtermref>interface, so attributes can be specified directly on the returned object.</p>
</descr>
<parameters>
<param name="tagName" type="DOMString" attr="in">
<descr>
<p>The name of the element type to instantiate. For XML, this is case-sensitive. For HTML, the<code>tagName</code>parameter may be provided in any case, but it must be mapped to the canonical uppercase form by the DOM implementation.</p>
</descr>
</param>
</parameters>
<returns type="Element">
<descr>
<p>A new<code>Element</code>object.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INVALID_CHARACTER_ERR: Raised if the specified name contains an invalid character.</p>
</descr>
</exception>
</raises>
</method>
<method name="createDocumentFragment" id="ID-35CB04B5">
<descr>
<p>Creates an empty<code>DocumentFragment</code>object.</p>
</descr>
<parameters/>
<returns type="DocumentFragment">
<descr>
<p>A new<code>DocumentFragment</code>.</p>
</descr>
</returns>
<raises/>
</method>
<method name="createTextNode" id="ID-1975348127">
<descr>
<p>Creates a<code>Text</code>node given the specified string.</p>
</descr>
<parameters>
<param name="data" type="DOMString" attr="in">
<descr>
<p>The data for the node.</p>
</descr>
</param>
</parameters>
<returns type="Text">
<descr>
<p>The new<code>Text</code>object.</p>
</descr>
</returns>
<raises/>
</method>
<method name="createComment" id="ID-1334481328">
<descr>
<p>Creates a<code>Comment</code>node given the specified string.</p>
</descr>
<parameters>
<param name="data" type="DOMString" attr="in">
<descr>
<p>The data for the node.</p>
</descr>
</param>
</parameters>
<returns type="Comment">
<descr>
<p>The new<code>Comment</code>object.</p>
</descr>
</returns>
<raises/>
</method>
<method name="createCDATASection" id="ID-D26C0AF8">
<descr>
<p>Creates a<code>CDATASection</code>node whose value is the specified string.</p>
</descr>
<parameters>
<param name="data" type="DOMString" attr="in">
<descr>
<p>The data for the<code>CDATASection</code>contents.</p>
</descr>
</param>
</parameters>
<returns type="CDATASection">
<descr>
<p>The new<code>CDATASection</code>object.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>NOT_SUPPORTED_ERR: Raised if this document is an HTML document.</p>
</descr>
</exception>
</raises>
</method>
<method name="createProcessingInstruction" id="ID-135944439">
<descr>
<p>Creates a<code>ProcessingInstruction</code>node given the specified name and data strings.</p>
</descr>
<parameters>
<param name="target" type="DOMString" attr="in">
<descr>
<p>The target part of the processing instruction.</p>
</descr>
</param>
<param name="data" type="DOMString" attr="in">
<descr>
<p>The data for the node.</p>
</descr>
</param>
</parameters>
<returns type="ProcessingInstruction">
<descr>
<p>The new<code>ProcessingInstruction</code>object.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INVALID_CHARACTER_ERR: Raised if an invalid character is specified.</p>
<p>NOT_SUPPORTED_ERR: Raised if this document is an HTML document.</p>
</descr>
</exception>
</raises>
</method>
<method name="createAttribute" id="ID-1084891198">
<descr>
<p>Creates an<code>Attr</code>of the given name. Note that the<code>Attr</code>instance can then be set on an<code>Element</code>using the<code>setAttribute</code>method.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of the attribute.</p>
</descr>
</param>
</parameters>
<returns type="Attr">
<descr>
<p>A new<code>Attr</code>object.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INVALID_CHARACTER_ERR: Raised if the specified name contains an invalid character.</p>
</descr>
</exception>
</raises>
</method>
<method name="createEntityReference" id="ID-392B75AE">
<descr>
<p>Creates an EntityReference object.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of the entity to reference.</p>
</descr>
</param>
</parameters>
<returns type="EntityReference">
<descr>
<p>The new<code>EntityReference</code>object.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INVALID_CHARACTER_ERR: Raised if the specified name contains an invalid character.</p>
<p>NOT_SUPPORTED_ERR: Raised if this document is an HTML document.</p>
</descr>
</exception>
</raises>
</method>
<method name="getElementsByTagName" id="ID-A6C9094">
<descr>
<p>Returns a<code>NodeList</code>of all the<code>Element</code>s with a given tag name in the order in which they would be encountered in a preorder traversal of the<code>Document</code>tree.</p>
</descr>
<parameters>
<param name="tagname" type="DOMString" attr="in">
<descr>
<p>The name of the tag to match on. The special value "*" matches all tags.</p>
</descr>
</param>
</parameters>
<returns type="NodeList">
<descr>
<p>A new<code>NodeList</code>object containing all the matched<code>Element</code>s.</p>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="Node" id="ID-1950641247">
<descr>
<p>The<code>Node</code>interface is the primary datatype for the entire Document Object Model. It represents a single node in the document tree. While all objects implementing the<code>Node</code>interface expose methods for dealing with children, not all objects implementing the<code>Node</code>interface may have children. For example,<code>Text</code>nodes may not have children, and adding children to such nodes results in a<code>DOMException</code>being raised.</p>
<p>The attributes<code>nodeName</code>,<code>nodeValue</code>and<code>attributes</code>are included as a mechanism to getat node information without casting down to the specific derived interface. In cases where there is no obvious mapping of these attributes for a specific<code>nodeType</code>(e.g.,<code>nodeValue</code>for an Element or<code>attributes</code>for a Comment), this returns<code>null</code>. Note that the specialized interfaces may contain additional and more convenient mechanisms to get and set the relevant information.</p>
</descr>
<group id="ID-1841493061" name="NodeType">
<descr>
<p>An integer indicating which type of node this is.</p>
</descr>
<constant name="ELEMENT_NODE" type="unsigned short" value="1">
<descr>
<p>The node is a<code>Element</code>.</p>
</descr>
</constant>
<constant name="ATTRIBUTE_NODE" type="unsigned short" value="2">
<descr>
<p>The node is an<code>Attr</code>.</p>
</descr>
</constant>
<constant name="TEXT_NODE" type="unsigned short" value="3">
<descr>
<p>The node is a<code>Text</code>node.</p>
</descr>
</constant>
<constant name="CDATA_SECTION_NODE" type="unsigned short" value="4">
<descr>
<p>The node is a<code>CDATASection</code>.</p>
</descr>
</constant>
<constant name="ENTITY_REFERENCE_NODE" type="unsigned short" value="5">
<descr>
<p>The node is an<code>EntityReference</code>.</p>
</descr>
</constant>
<constant name="ENTITY_NODE" type="unsigned short" value="6">
<descr>
<p>The node is an<code>Entity</code>.</p>
</descr>
</constant>
<constant name="PROCESSING_INSTRUCTION_NODE" type="unsigned short" value="7">
<descr>
<p>The node is a<code>ProcessingInstruction</code>.</p>
</descr>
</constant>
<constant name="COMMENT_NODE" type="unsigned short" value="8">
<descr>
<p>The node is a<code>Comment</code>.</p>
</descr>
</constant>
<constant name="DOCUMENT_NODE" type="unsigned short" value="9">
<descr>
<p>The node is a<code>Document</code>.</p>
</descr>
</constant>
<constant name="DOCUMENT_TYPE_NODE" type="unsigned short" value="10">
<descr>
<p>The node is a<code>DocumentType</code>.</p>
</descr>
</constant>
<constant name="DOCUMENT_FRAGMENT_NODE" type="unsigned short" value="11">
<descr>
<p>The node is a<code>DocumentFragment</code>.</p>
</descr>
</constant>
<constant name="NOTATION_NODE" type="unsigned short" value="12">
<descr>
<p>The node is a<code>Notation</code>.</p>
</descr>
</constant>
</group>
<p>The values of<code>nodeName</code>,<code>nodeValue</code>, and<code>attributes</code>vary according to the node type as follows:<table border="1">
<tbody>
<tr>
<td rowspan="1" colspan="1"/>
<td rowspan="1" colspan="1">nodeName</td>
<td rowspan="1" colspan="1">nodeValue</td>
<td rowspan="1" colspan="1">attributes</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Element</td>
<td rowspan="1" colspan="1">tagName</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">NamedNodeMap</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Attr</td>
<td rowspan="1" colspan="1">name of attribute</td>
<td rowspan="1" colspan="1">value of attribute</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Text</td>
<td rowspan="1" colspan="1">#text</td>
<td rowspan="1" colspan="1">content of the text node</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">CDATASection</td>
<td rowspan="1" colspan="1">#cdata-section</td>
<td rowspan="1" colspan="1">content of the CDATA Section</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">EntityReference</td>
<td rowspan="1" colspan="1">name of entity referenced</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Entity</td>
<td rowspan="1" colspan="1">entity name</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">ProcessingInstruction</td>
<td rowspan="1" colspan="1">target</td>
<td rowspan="1" colspan="1">entire content excluding the target</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Comment</td>
<td rowspan="1" colspan="1">#comment</td>
<td rowspan="1" colspan="1">content of the comment</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Document</td>
<td rowspan="1" colspan="1">#document</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">DocumentType</td>
<td rowspan="1" colspan="1">document type name</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">DocumentFragment</td>
<td rowspan="1" colspan="1">#document-fragment</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">null</td>
</tr>
<tr>
<td rowspan="1" colspan="1">Notation</td>
<td rowspan="1" colspan="1">notation name</td>
<td rowspan="1" colspan="1">null</td>
<td rowspan="1" colspan="1">null</td>
</tr>
</tbody>
</table>
</p>
<attribute type="DOMString" readonly="yes" name="nodeName" id="ID-F68D095">
<descr>
<p>The name of this node, depending on its type; see the table above.</p>
</descr>
</attribute>
<attribute type="DOMString" name="nodeValue" id="ID-F68D080" readonly="no">
<descr>
<p>The value of this node, depending on its type; see the table above.</p>
</descr>
<setraises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.</p>
</descr>
</exception>
</setraises>
<getraises>
<exception name="DOMException">
<descr>
<p>DOMSTRING_SIZE_ERR: Raised when it would return more characters than fit in a<code>DOMString</code>variable on the implementation platform.</p>
</descr>
</exception>
</getraises>
</attribute>
<attribute type="unsigned short" name="nodeType" readonly="yes" id="ID-111237558">
<descr>
<p>A code representing the type of the underlying object, as defined above.</p>
</descr>
</attribute>
<attribute type="Node" readonly="yes" name="parentNode" id="ID-1060184317">
<descr>
<p>The parent of this node. All nodes, except<code>Document</code>,<code>DocumentFragment</code>, and<code>Attr</code>may have a parent. However, if a node has just been created and not yet added to the tree, or if it has been removed from the tree, this is<code>null</code>.</p>
</descr>
</attribute>
<attribute type="NodeList" readonly="yes" name="childNodes" id="ID-1451460987">
<descr>
<p>A<code>NodeList</code>that contains all children of this node. If there are no children, this is a<code>NodeList</code>containing no nodes. The content of the returned<code>NodeList</code>is "live" in the sense that, for instance, changes to the children of the node object that it was created from are immediately reflected in the nodes returned by the<code>NodeList</code>accessors; it is not a static snapshot of the content of the node. This is true for every<code>NodeList</code>, including the ones returned by the<code>getElementsByTagName</code>method.</p>
</descr>
</attribute>
<attribute readonly="yes" type="Node" name="firstChild" id="ID-169727388">
<descr>
<p>The first child of this node. If there is no such node, this returns<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" type="Node" name="lastChild" id="ID-61AD09FB">
<descr>
<p>The last child of this node. If there is no such node, this returns<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" type="Node" name="previousSibling" id="ID-640FB3C8">
<descr>
<p>The node immediately preceding this node. If there is no such node, this returns<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" type="Node" name="nextSibling" id="ID-6AC54C2F">
<descr>
<p>The node immediately following this node. If there is no such node, this returns<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" type="NamedNodeMap" name="attributes" id="ID-84CF096">
<descr>
<p>A<code>NamedNodeMap</code>containing the attributes of this node (if it is an<code>Element</code>) or<code>null</code>otherwise.</p>
</descr>
</attribute>
<attribute readonly="yes" type="Document" name="ownerDocument" id="node-ownerDoc">
<descr>
<p>The<code>Document</code>object associated with this node. This is also the<code>Document</code>object used to create new nodes. When this node is a<code>Document</code>this is<code>null</code>.</p>
</descr>
</attribute>
<method name="insertBefore" id="ID-952280727">
<descr>
<p>Inserts the node<code>newChild</code>before the existing child node<code>refChild</code>. If<code>refChild</code>is<code>null</code>, insert<code>newChild</code>at the end of the list of children.</p>
<p>If<code>newChild</code>is a<code>DocumentFragment</code>object, all of its children are inserted, in the same order, before<code>refChild</code>. If the<code>newChild</code>is already in the tree, it is first removed.</p>
</descr>
<parameters>
<param name="newChild" type="Node" attr="in">
<descr>
<p>The node to insert.</p>
</descr>
</param>
<param name="refChild" type="Node" attr="in">
<descr>
<p>The reference node, i.e., the node before which the new node must be inserted.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node being inserted.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not allow children of the type of the<code>newChild</code>node, or if the node to insert is one of this node's ancestors.</p>
<p>WRONG_DOCUMENT_ERR: Raised if<code>newChild</code>was created from a different document than the one that created this node.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
<p>NOT_FOUND_ERR: Raised if<code>refChild</code>is not a child of this node.</p>
</descr>
</exception>
</raises>
</method>
<method name="replaceChild" id="ID-785887307">
<descr>
<p>Replaces the child node<code>oldChild</code>with<code>newChild</code>in the list of children, and returns the<code>oldChild</code>node. If the<code>newChild</code>is already in the tree, it is first removed.</p>
</descr>
<parameters>
<param name="newChild" type="Node" attr="in">
<descr>
<p>The new node to put in the child list.</p>
</descr>
</param>
<param name="oldChild" type="Node" attr="in">
<descr>
<p>The node being replaced in the list.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node replaced.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not allow children of the type of the<code>newChild</code>node, or it the node to put in is one of this node's ancestors.</p>
<p>WRONG_DOCUMENT_ERR: Raised if<code>newChild</code>was created from a different document than the one that created this node.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
<p>NOT_FOUND_ERR: Raised if<code>oldChild</code>is not a child of this node.</p>
</descr>
</exception>
</raises>
</method>
<method name="removeChild" id="ID-1734834066">
<descr>
<p>Removes the child node indicated by<code>oldChild</code>from the list of children, and returns it.</p>
</descr>
<parameters>
<param name="oldChild" type="Node" attr="in">
<descr>
<p>The node being removed.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node removed.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
<p>NOT_FOUND_ERR: Raised if<code>oldChild</code>is not a child of this node.</p>
</descr>
</exception>
</raises>
</method>
<method name="appendChild" id="ID-184E7107">
<descr>
<p>Adds the node<code>newChild</code>to the end of the list of children of this node. If the<code>newChild</code>is already in the tree, it is first removed.</p>
</descr>
<parameters>
<param name="newChild" type="Node" attr="in">
<descr>
<p>The node to add.</p>
<p>If it is a<code>DocumentFragment</code>object, the entire contents of the document fragment are moved into the child list of this node</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node added.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>HIERARCHY_REQUEST_ERR: Raised if this node is of a type that does not allow children of the type of the<code>newChild</code>node, or if the node to append is one of this node's ancestors.</p>
<p>WRONG_DOCUMENT_ERR: Raised if<code>newChild</code>was created from a different document than the one that created this node.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="hasChildNodes" id="ID-810594187">
<descr>
<p>This is a convenience method to allow easy determination of whether a node has any children.</p>
</descr>
<parameters/>
<returns type="boolean">
<descr>
<p>
<code>true</code>if the node has any children,<code>false</code>if the node has no children.</p>
</descr>
</returns>
<raises/>
</method>
<method name="cloneNode" id="ID-3A0ED0A4">
<descr>
<p>Returns a duplicate of this node, i.e., serves as a generic copy constructor for nodes. The duplicate node has no parent (<code>parentNode</code>returns<code>null</code>.).</p>
<p>Cloning an<code>Element</code>copies all attributes and their values, including those generated by the XML processor to represent defaulted attributes, but this method does not copy any text it contains unless it is a deep clone, since the text is contained in a child<code>Text</code>node. Cloning any other type of node simply returns a copy of this node.</p>
</descr>
<parameters>
<param name="deep" type="boolean" attr="in">
<descr>
<p>If<code>true</code>, recursively clone the subtree under the specified node; if<code>false</code>, clone only the node itself (and its attributes, if it is an<code>Element</code>).</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The duplicate node.</p>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="NodeList" id="ID-536297177">
<descr>
<p>The<code>NodeList</code>interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented.</p>
<p>The items in the<code>NodeList</code>are accessible via an integral index, starting from 0.</p>
</descr>
<method name="item" id="ID-844377136">
<descr>
<p>Returns the<code>index</code>th item in the collection. If<code>index</code>is greater than or equal to the number of nodes in the list, this returns<code>null</code>.</p>
</descr>
<parameters>
<param name="index" type="unsigned long" attr="in">
<descr>
<p>Index into the collection.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node atthe<code>index</code>th position in the<code>NodeList</code>, or<code>null</code>if that is not a valid index.</p>
</descr>
</returns>
<raises/>
</method>
<attribute type="unsigned long" readonly="yes" name="length" id="ID-203510337">
<descr>
<p>The number of nodes in the list. The range of valid child node indices is 0 to<code>length-1</code>inclusive.</p>
</descr>
</attribute>
</interface>
<interface name="NamedNodeMap" inherits="" id="ID-1780488922">
<descr>
<p>Objects implementing the<code>NamedNodeMap</code>interface are used to represent collections of nodes that can be accessed by name. Note that<code>NamedNodeMap</code>does not inherit from<code>NodeList</code>;<code>NamedNodeMap</code>s are not maintained in any particular order. Objects contained in an object implementing<code>NamedNodeMap</code>may also be accessed by an ordinal index, but this is simply to allow convenient enumeration of the contents of a<code>NamedNodeMap</code>, and does not imply that the DOM specifies an order to these Nodes.</p>
</descr>
<method name="getNamedItem" id="ID-1074577549">
<descr>
<p>Retrieves a node specified by name.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>Name of a node to retrieve.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>A<code>Node</code>(of any type) with the specified name, or<code>null</code>if the specified name did not identify any node in the map.</p>
</descr>
</returns>
<raises/>
</method>
<method name="setNamedItem" id="ID-1025163788">
<descr>
<p>Adds a node using its<code>nodeName</code>attribute.</p>
<p>As the<code>nodeName</code>attribute is used to derive the name which the node must be stored under, multiple nodes of certain types (those that have a "special" string value) cannot be stored as the names would clash. This is seen as preferable to allowing nodes to be aliased.</p>
</descr>
<parameters>
<param name="arg" type="Node" attr="in">
<descr>
<p>A node to store in a named node map. The node will later be accessible using the value of the<code>nodeName</code>attribute of the node. If a node with that name is already present in the map, it is replaced by the new one.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>If the new<code>Node</code>replaces an existing node with the same name the previously existing<code>Node</code>is returned, otherwise<code>null</code>is returned.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>WRONG_DOCUMENT_ERR: Raised if<code>arg</code>was created from a different document than the one that created the<code>NamedNodeMap</code>.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this<code>NamedNodeMap</code>is readonly.</p>
<p>INUSE_ATTRIBUTE_ERR: Raised if<code>arg</code>is an<code>Attr</code>that is already an attribute of another<code>Element</code>object. The DOM user must explicitly clone<code>Attr</code>nodes to re-use them in other elements.</p>
</descr>
</exception>
</raises>
</method>
<method name="removeNamedItem" id="ID-D58B193">
<descr>
<p>Removes a node specified by name. If the removed node is an<code>Attr</code>with a default value it is immediately replaced.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of a node to remove.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node removed from the map or<code>null</code>if no node with such a name exists.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>NOT_FOUND_ERR: Raised if there is no node named <code>name</code> in this map.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this map is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="item" id="ID-349467F9">
<descr>
<p>Returns the<code>index</code>th item in the map. If<code>index</code>is greater than or equal to the number of nodes in the map, this returns<code>null</code>.</p>
</descr>
<parameters>
<param name="index" type="unsigned long" attr="in">
<descr>
<p>Index into the map.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The node at the<code>index</code>th position in the<code>NamedNodeMap</code>, or<code>null</code>if that is not a valid index.</p>
</descr>
</returns>
<raises/>
</method>
<attribute type="unsigned long" readonly="yes" name="length" id="ID-6D0FB19E">
<descr>
<p>The number of nodes in the map. The range of valid child node indices is 0 to<code>length-1</code>inclusive.</p>
</descr>
</attribute>
</interface>
<interface name="CharacterData" inherits="Node" id="ID-FF21A306">
<descr>
<p>The<code>CharacterData</code>interface extends Node with a set of attributes and methods for accessing character data in the DOM. For clarity this set is defined here rather than on each object that uses these attributes and methods. No DOM objects correspond directly to<code>CharacterData</code>, though<code>Text</code>and others do inherit the interface from it. All<code>offset</code>s in this interface start from 0.</p>
</descr>
<attribute type="DOMString" name="data" id="ID-72AB8359" readonly="no">
<descr>
<p>The character data of the node that implements this interface. The DOM implementation may not put arbitrary limits on the amount of data that may be stored in a<code>CharacterData</code>node. However, implementation limits may mean that the entirety of a node's data may not fit into a single<code>DOMString</code>. In such cases, the user may call<code>substringData</code>to retrieve the data in appropriately sized pieces.</p>
</descr>
<setraises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.</p>
</descr>
</exception>
</setraises>
<getraises>
<exception name="DOMException">
<descr>
<p>DOMSTRING_SIZE_ERR: Raised when it would return more characters than fit in a<code>DOMString</code>variable on the implementation platform.</p>
</descr>
</exception>
</getraises>
</attribute>
<attribute type="unsigned long" name="length" readonly="yes" id="ID-7D61178C">
<descr>
<p>The number of characters that are available through<code>data</code>and the<code>substringData</code>method below. This may have the value zero, i.e.,<code>CharacterData</code>nodes may be empty.</p>
</descr>
</attribute>
<method name="substringData" id="ID-6531BCCF">
<descr>
<p>Extracts a range of data from the node.</p>
</descr>
<parameters>
<param name="offset" type="unsigned long" attr="in">
<descr>
<p>Start offset of substring to extract.</p>
</descr>
</param>
<param name="count" type="unsigned long" attr="in">
<descr>
<p>The number of characters to extract.</p>
</descr>
</param>
</parameters>
<returns type="DOMString">
<descr>
<p>The specified substring. If the sum of<code>offset</code>and<code>count</code>exceeds the<code>length</code>, then all characters to the end of the data are returned.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of characters in<code>data</code>, or if the specified<code>count</code>is negative.</p>
<p>DOMSTRING_SIZE_ERR: Raised if the specified range of text does not fit into a<code>DOMString</code>.</p>
</descr>
</exception>
</raises>
</method>
<method name="appendData" id="ID-32791A2F">
<descr>
<p>Append the string to the end of the character data of the node. Upon success,<code>data</code>provides access to the concatenation of<code>data</code>and the<code>DOMString</code>specified.</p>
</descr>
<parameters>
<param name="arg" type="DOMString" attr="in">
<descr>
<p>The<code>DOMString</code>to append.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="insertData" id="ID-3EDB695F">
<descr>
<p>Insert a string at the specified character offset.</p>
</descr>
<parameters>
<param name="offset" type="unsigned long" attr="in">
<descr>
<p>The character offset at which to insert.</p>
</descr>
</param>
<param name="arg" type="DOMString" attr="in">
<descr>
<p>The<code>DOMString</code>to insert.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of characters in<code>data</code>.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="deleteData" id="ID-7C603781">
<descr>
<p>Remove a range of characters from the node. Upon success,<code>data</code>and<code>length</code>reflect the change.</p>
</descr>
<parameters>
<param name="offset" type="unsigned long" attr="in">
<descr>
<p>The offset from which to remove characters.</p>
</descr>
</param>
<param name="count" type="unsigned long" attr="in">
<descr>
<p>The number of characters to delete. If the sum of<code>offset</code>and<code>count</code>exceeds<code>length</code>then all characters from<code>offset</code>to the end of the data are deleted.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of characters in<code>data</code>, or if the specified<code>count</code>is negative.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="replaceData" id="ID-E5CBA7FB">
<descr>
<p>Replace the characters starting at the specified character offset with the specified string.</p>
</descr>
<parameters>
<param name="offset" type="unsigned long" attr="in">
<descr>
<p>The offset from which to start replacing.</p>
</descr>
</param>
<param name="count" type="unsigned long" attr="in">
<descr>
<p>The number of characters to replace. If the sum of<code>offset</code>and<code>count</code>exceeds<code>length</code>, then all characters to the end of the data are replaced (i.e., the effect is the same as a<code>remove</code>method call with the same range, followed by an<code>append</code>method invocation).</p>
</descr>
</param>
<param name="arg" type="DOMString" attr="in">
<descr>
<p>The<code>DOMString</code>with which the range must be replaced.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of characters in<code>data</code>, or if the specified<code>count</code>is negative.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
</interface>
<interface name="Attr" inherits="Node" id="ID-637646024">
<descr>
<p>The<code>Attr</code>interface represents an attribute in an<code>Element</code>object. Typically the allowable values for the attribute are defined in a document type definition.</p>
<p>
<code>Attr</code>objects inherit the<code>Node</code>interface, but since they are not actually child nodes of the element they describe, the DOM does not consider them part of the document tree. Thus, the<code>Node</code>attributes<code>parentNode</code>,<code>previousSibling</code>, and<code>nextSibling</code>have a null value for<code>Attr</code>objects. The DOM takes the view that attributes are properties of elements rather than having a separate identity from the elements they are associated with; this should make it more efficient to implement such features as default attributes associated with all elements of a given type. Furthermore,<code>Attr</code>nodes may not be immediate children of a<code>DocumentFragment</code>. However, they can be associated with<code>Element</code>nodes contained within a<code>DocumentFragment</code>. In short, users and implementors of the DOM need to be aware that<code>Attr</code>nodes have some things in common with other objects inheriting the<code>Node</code>interface, but they also are quite distinct.</p>
<p>The attribute's effective value is determined as follows: if this attribute has been explicitly assigned any value, that value is the attribute's effective value; otherwise, if there is a declaration for this attribute, and that declaration includes a default value, then that default value is the attribute's effective value; otherwise, the attribute does not exist on this element in the structure model until it has been explicitly added. Note that the<code>nodeValue</code>attribute on the<code>Attr</code>instance can also be used to retrieve the string version of the attribute's value(s).</p>
<p>In XML, where the value of an attribute can contain entity references, the child nodes of the<code>Attr</code>node provide a representation in which entity references are not expanded. These child nodes may be either<code>Text</code>or<code>EntityReference</code>nodes. Because the attribute type may be unknown, there are no tokenized attribute values.</p>
</descr>
<attribute type="DOMString" readonly="yes" name="name" id="ID-1112119403">
<descr>
<p>Returns the name of this attribute.</p>
</descr>
</attribute>
<attribute type="boolean" readonly="yes" name="specified" id="ID-862529273">
<descr>
<p>If this attribute was explicitly given a value in the original document, this is<code>true</code>; otherwise, it is<code>false</code>. Note that the implementation is in charge of this attribute, not the user. If the user changes the value of the attribute (even if it ends up having the same value as the default value) then the<code>specified</code>flag is automatically flipped to<code>true</code>. To re-specify the attribute as the default value from the DTD, the user must delete the attribute. The implementation will then make a new attribute available with<code>specified</code>set to<code>false</code>and the default value (if one exists).</p>
<p>In summary:<ulist>
<item>
<p>If the attribute has an assigned value in the document then<code>specified</code>is<code>true</code>, and the value is the assigned value.</p>
</item>
<item>
<p>If the attribute has no assigned value in the document and has a default value in the DTD, then<code>specified</code>is<code>false</code>, and the value is the default value in the DTD.</p>
</item>
<item>
<p>If the attribute has no assigned value in the document and has a value of #IMPLIED in the DTD, then the attribute does not appear in the structure model of the document.</p>
</item>
</ulist>
</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-221662474" readonly="no">
<descr>
<p>On retrieval, the value of the attribute is returned as a string. Character and general entity references are replaced with their values.</p>
<p>On setting, this creates a<code>Text</code>node with the unparsed contents of the string.</p>
</descr>
<setraises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.</p>
</descr>
</exception>
</setraises>
</attribute>
</interface>
<interface name="Element" inherits="Node" id="ID-745549614">
<descr>
<p>By far the vast majority of objects (apart from text) that authors encounter when traversing a document are<code>Element</code>nodes. Assume the following XML document:<eg role="code" space="preserve">&lt;elementExample id="demo"&gt; &lt;subelement1/&gt; &lt;subelement2&gt;&lt;subsubelement/&gt;&lt;/subelement2&gt; &lt;/elementExample&gt;</eg>
</p>
<p>When represented using DOM, the top node is an<code>Element</code>node for "elementExample", which contains two child<code>Element</code>nodes, one for "subelement1" and one for "subelement2". "subelement1" contains no child nodes.</p>
<p>Elements may have attributes associated with them; since the<code>Element</code>interface inherits from<code>Node</code>, the generic<code>Node</code>interface method<code>getAttributes</code>may be used to retrieve the set of all attributes for an element. There are methods on the<code>Element</code>interface to retrieve either an<code>Attr</code>object by name or an attribute value by name. In XML, where an attribute value may contain entity references, an<code>Attr</code>object should be retrieved to examine the possibly fairly complex sub-tree representing the attribute value. On the other hand, in HTML, where all attributes have simple string values, methods to directly access an attribute value can safely be used as a convenience.</p>
</descr>
<attribute type="DOMString" name="tagName" readonly="yes" id="ID-104682815">
<descr>
<p>The name of the element. For example, in:<eg role="code" space="preserve">&lt;elementExample id="demo"&gt; ... &lt;/elementExample&gt; ,</eg>
<code>tagName</code>has the value<code>"elementExample"</code>. Note that this is case-preserving in XML, as are all of the operations of the DOM. The HTML DOM returns the<code>tagName</code>of an HTML element in the canonical uppercase form, regardless of the case in the source HTML document.</p>
</descr>
</attribute>
<method name="getAttribute" id="ID-666EE0F9">
<descr>
<p>Retrieves an attribute value by name.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of the attribute to retrieve.</p>
</descr>
</param>
</parameters>
<returns type="DOMString">
<descr>
<p>The<code>Attr</code>value as a string, or the empty string if that attribute does not have a specified or default value.</p>
</descr>
</returns>
<raises/>
</method>
<method name="setAttribute" id="ID-F68F082">
<descr>
<p>Adds a new attribute. If an attribute with that name is already present in the element, its value is changed to be that of the value parameter. This value is a simple string, it is not parsed as it is being set. So any markup (such as syntax to be recognized as an entity reference) is treated as literal text, and needs to be appropriately escaped by the implementation when it is written out. In order to assign an attribute value that contains entity references, the user must create an<code>Attr</code>node plus any<code>Text</code>and<code>EntityReference</code>nodes, build the appropriate subtree, and use<code>setAttributeNode</code>to assign it as the value of an attribute.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of the attribute to create or alter.</p>
</descr>
</param>
<param name="value" type="DOMString" attr="in">
<descr>
<p>Value to set in string form.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INVALID_CHARACTER_ERR: Raised if the specified name contains an invalid character.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="removeAttribute" id="ID-6D6AC0F9">
<descr>
<p>Removes an attribute by name. If the removed attribute has a default value it is immediately replaced.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of the attribute to remove.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
<method name="getAttributeNode" id="ID-217A91B8">
<descr>
<p>Retrieves an<code>Attr</code>node by name.</p>
</descr>
<parameters>
<param name="name" type="DOMString" attr="in">
<descr>
<p>The name of the attribute to retrieve.</p>
</descr>
</param>
</parameters>
<returns type="Attr">
<descr>
<p>The<code>Attr</code>node with the specified attribute name or<code>null</code>if there is no such attribute.</p>
</descr>
</returns>
<raises/>
</method>
<method name="setAttributeNode" id="ID-887236154">
<descr>
<p>Adds a new attribute. If an attribute with that name is already present in the element, it is replaced by the new one.</p>
</descr>
<parameters>
<param name="newAttr" type="Attr" attr="in">
<descr>
<p>The<code>Attr</code>node to add to the attribute list.</p>
</descr>
</param>
</parameters>
<returns type="Attr">
<descr>
<p>If the<code>newAttr</code>attribute replaces an existing attribute with the same name, the previously existing<code>Attr</code>node is returned, otherwise<code>null</code>is returned.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>WRONG_DOCUMENT_ERR: Raised if<code>newAttr</code>was created from a different document than the one that created the element.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
<p>INUSE_ATTRIBUTE_ERR: Raised if<code>newAttr</code>is already an attribute of another<code>Element</code>object. The DOM user must explicitly clone<code>Attr</code>nodes to re-use them in other elements.</p>
</descr>
</exception>
</raises>
</method>
<method name="removeAttributeNode" id="ID-D589198">
<descr>
<p>Removes the specified attribute.</p>
</descr>
<parameters>
<param name="oldAttr" type="Attr" attr="in">
<descr>
<p>The<code>Attr</code>node to remove from the attribute list. If the removed<code>Attr</code>has a default value it is immediately replaced.</p>
</descr>
</param>
</parameters>
<returns type="Attr">
<descr>
<p>The<code>Attr</code>node that was removed.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
<p>NOT_FOUND_ERR: Raised if<code>oldAttr</code>is not an attribute of the element.</p>
</descr>
</exception>
</raises>
</method>
<method name="getElementsByTagName" id="ID-1938918D">
<descr>
<p>Returns a<code>NodeList</code>of all descendant elements with a given tag name, in the order in which they would be encountered in a preorder traversal of the<code>Element</code>tree.</p>
</descr>
<parameters>
<param name="tagname" type="DOMString" attr="in">
<descr>
<p>The name of the tag to match on. The special value "*" matches all tags.</p>
</descr>
</param>
</parameters>
<returns type="NodeList">
<descr>
<p>A list of matching<code>Element</code>nodes.</p>
</descr>
</returns>
<raises/>
</method>
<method name="normalize" id="ID-162CF083">
<descr>
<p>Puts all<code>Text</code>nodes in the full depth of the sub-tree underneath this<code>Element</code>into a "normal" form where only markup (e.g., tags, comments, processing instructions, CDATA sections, and entity references) separates<code>Text</code>nodes, i.e., there are no adjacent<code>Text</code>nodes. This can be used to ensure that the DOM view of a document is the same as if it were saved and re-loaded, and is useful when operations (such as XPointer lookups) that depend on a particular document tree structure are to be used.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="Text" inherits="CharacterData" id="ID-1312295772">
<descr>
<p>The<code>Text</code>interface represents the textual content (termed<loc href="http://www.w3.org/TR/REC-xml#syntax" form="simple" show="embed" actuate="auto">characterdata</loc>in XML) of an<code>Element</code>or<code>Attr</code>. If there is no markup inside an element's content, the text is contained in a single object implementing the<code>Text</code>interface that is the only child of the element. If there is markup, it is parsed into a list of elements and<code>Text</code>nodes that form the list of children of the element.</p>
<p>When a document is first made available via the DOM, there is only one<code>Text</code>node for each block of text. Users may create adjacent<code>Text</code>nodes that represent the contents of a given element without any intervening markup, but should be aware that there is no way to represent the separations between these nodes in XML or HTML, so they will not (in general) persist between DOM editing sessions. The<code>normalize()</code>method on<code>Element</code>merges any such adjacent<code>Text</code>objects into a single node for each block of text; this is recommended before employing operations that depend on a particular document structure, such as navigation with<code>XPointers.</code>
</p>
</descr>
<method name="splitText" id="ID-38853C1D">
<descr>
<p>Breaks this<code>Text</code>node into two Text nodes at the specified offset, keeping both in the tree as siblings. This node then only contains all the content up to the<code>offset</code>point. And a new<code>Text</code>node, which is inserted as the next sibling of this node, contains all the content at and after the<code>offset</code>point.</p>
</descr>
<parameters>
<param name="offset" type="unsigned long" attr="in">
<descr>
<p>The offset at which to split, starting from 0.</p>
</descr>
</param>
</parameters>
<returns type="Text">
<descr>
<p>The new<code>Text</code>node.</p>
</descr>
</returns>
<raises>
<exception name="DOMException">
<descr>
<p>INDEX_SIZE_ERR: Raised if the specified offset is negative or greater than the number of characters in<code>data</code>.</p>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.</p>
</descr>
</exception>
</raises>
</method>
</interface>
<interface name="Comment" inherits="CharacterData" id="ID-1728279322">
<descr>
<p>This represents the content of a comment, i.e., all the characters between the starting '<code>&lt;!--</code>' and ending '<code>--&gt;</code>'. Note that this is the definition of a comment in XML, and, in practice, HTML, although some HTML tools may implement the full SGML comment structure.</p>
</descr>
</interface>
<interface name="CDATASection" inherits="Text" id="ID-667469212">
<descr>
<p>CDATA sections are used to escape blocks of text containing characters that would otherwise be regarded as markup. The only delimiter that is recognized in a CDATA section is the "]]&gt;" string that ends the CDATA section. CDATA sections can not be nested. The primary purpose is for including material such as XML fragments, without needing to escape all the delimiters.</p>
<p>The<code>DOMString</code>attribute of the<code>Text</code>node holds the text that is contained by the CDATA section. Note that this<emph>may</emph>contain characters that need to be escaped outside of CDATA sections and that, depending on the character encoding ("charset") chosen for serialization, it may be impossible to write out some characters as part of a CDATA section.</p>
<p>The<code>CDATASection</code>interface inherits the<code>CharacterData</code>interface through the<code>Text</code>interface. Adjacent<code>CDATASections</code>nodes are not merged by use of the Element.normalize() method.</p>
</descr>
</interface>
<interface name="DocumentType" inherits="Node" id="ID-412266927">
<descr>
<p>Each<code>Document</code>has a<code>doctype</code>attribute whose value is either<code>null</code>or a<code>DocumentType</code>object. The<code>DocumentType</code>interface in the DOM Level 1 Core provides an interface to the list of entities that are defined for the document, and little else because the effect of namespaces and the various XML scheme efforts on DTD representation are not clearly understood as of this writing.</p>
<p>The DOM Level 1 doesn't support editing<code>DocumentType</code>nodes.</p>
</descr>
<attribute readonly="yes" name="name" type="DOMString" id="ID-1844763134">
<descr>
<p>The name of DTD; i.e., the name immediately following the<code>DOCTYPE</code>keyword.</p>
</descr>
</attribute>
<attribute readonly="yes" name="entities" type="NamedNodeMap" id="ID-1788794630">
<descr>
<p>A<code>NamedNodeMap</code>containing the general entities, both external and internal, declared in the DTD. Duplicates are discarded. For example in:<eg role="code" space="preserve">&lt;!DOCTYPE ex SYSTEM "ex.dtd" [ &lt;!ENTITY foo "foo"&gt; &lt;!ENTITY bar "bar"&gt; &lt;!ENTITY % baz "baz"&gt; ]&gt; &lt;ex/&gt;</eg>the interface provides access to<code>foo</code>and<code>bar</code>but not<code>baz</code>. Every node in this map also implements the<code>Entity</code>interface.</p>
<p>The DOM Level 1 does not support editing entities, therefore<code>entities</code>cannot be altered in any way.</p>
</descr>
</attribute>
<attribute readonly="yes" name="notations" type="NamedNodeMap" id="ID-D46829EF">
<descr>
<p>A<code>NamedNodeMap</code>containing the notations declared in the DTD. Duplicates are discarded. Every node in this map also implements the<code>Notation</code>interface.</p>
<p>The DOM Level 1 does not support editing notations, therefore<code>notations</code>cannot be altered in any way.</p>
</descr>
</attribute>
</interface>
<interface name="Notation" inherits="Node" id="ID-5431D1B9">
<descr>
<p>This interface represents a notation declared in the DTD. A notation either declares, by name, the format of an unparsed entity (see section 4.7 of the XML 1.0 specification), or is used for formal declaration of Processing Instruction targets (see section 2.6 of the XML 1.0 specification). The<code>nodeName</code>attribute inherited from<code>Node</code>is set to the declared name of the notation.</p>
<p>The DOM Level 1 does not support editing<code>Notation</code>nodes; they are therefore readonly.</p>
<p>A<code>Notation</code>node does not have any parent.</p>
</descr>
<attribute readonly="yes" name="publicId" type="DOMString" id="ID-54F2B4D0">
<descr>
<p>The public identifier of this notation. If the public identifier was not specified, this is<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" name="systemId" type="DOMString" id="ID-E8AAB1D0">
<descr>
<p>The system identifier of this notation. If the system identifier was not specified, this is<code>null</code>.</p>
</descr>
</attribute>
</interface>
<interface name="Entity" inherits="Node" id="ID-527DCFF2">
<descr>
<p>This interface represents an entity, either parsed or unparsed, in an XML document. Note that this models the entity itself<emph>not</emph>the entity declaration.<code>Entity</code>declaration modeling has been left for a later Level of the DOM specification.</p>
<p>The<code>nodeName</code>attribute that is inherited from<code>Node</code>contains the name of the entity.</p>
<p>An XML processor may choose to completely expand entities before the structure model is passed to the DOM; in this case there will be no<code>EntityReference</code>nodes in the document tree.</p>
<p>XML does not mandate that a non-validating XML processor read and process entity declarations made in the external subset or declared in external parameter entities. This means that parsed entities declared in the external subset need not be expanded by some classes of applications, and that the replacement value of the entity may not be available. When the replacement value is available, the corresponding<code>Entity</code>node's child list represents the structure of that replacement text. Otherwise, the child list is empty.</p>
<p>The resolution of the children of the<code>Entity</code>(the replacement value) may be lazily evaluated; actions by the user (such as calling the<code>childNodes</code>method on the<code>Entity</code>Node) are assumed to trigger the evaluation.</p>
<p>The DOM Level 1 does not support editing<code>Entity</code>nodes; if a user wants to make changes to the contents of an<code>Entity</code>, every related<code>EntityReference</code>node has to be replaced in the structure model by a clone of the<code>Entity</code>'s contents, and then the desired changes must be made to each of those clones instead. All the descendants of an<code>Entity</code>node are readonly.</p>
<p>An<code>Entity</code>node does not have any parent.</p>
</descr>
<attribute readonly="yes" name="publicId" type="DOMString" id="ID-D7303025">
<descr>
<p>The public identifier associated with the entity, if specified. If the public identifier was not specified, this is<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" name="systemId" type="DOMString" id="ID-D7C29F3E">
<descr>
<p>The system identifier associated with the entity, if specified. If the system identifier was not specified, this is<code>null</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" name="notationName" type="DOMString" id="ID-6ABAEB38">
<descr>
<p>For unparsed entities, the name of the notation for the entity. For parsed entities, this is<code>null</code>.</p>
</descr>
</attribute>
</interface>
<interface name="EntityReference" inherits="Node" id="ID-11C98490">
<descr>
<p>
<code>EntityReference</code>objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. Note that character references and references to predefined entities are considered to be expanded by the HTML or XML processor so that characters are represented by their Unicode equivalent rather than by an entity reference. Moreover, the XMLprocessor may completely expand references to entities while building the structure model, instead of providing<code>EntityReference</code>objects. If it does provide such objects, then for a given<code>EntityReference</code>node, it may be that there is no<code>Entity</code>node representing the referenced entity; but if such an<code>Entity</code>exists, then the child list of the<code>EntityReference</code>node is the same as that of the<code>Entity</code>node. As with the<code>Entity</code>node, all descendants of the<code>EntityReference</code>are readonly.</p>
<p>The resolution of the children of the<code>EntityReference</code>(the replacement value of the referenced<code>Entity</code>) may be lazily evaluated; actions by the user (such as calling the<code>childNodes</code>method on the<code>EntityReference</code>node) are assumed to trigger the evaluation.</p>
</descr>
</interface>
<interface name="ProcessingInstruction" inherits="Node" id="ID-1004215813">
<descr>
<p>The<code>ProcessingInstruction</code>interface represents a "processing instruction", used in XML as a way to keep processor-specific information in the text of the document.</p>
</descr>
<attribute readonly="yes" type="DOMString" name="target" id="ID-1478689192">
<descr>
<p>The target of this processing instruction. XML defines this as being the first token following the markup that begins the processing instruction.</p>
</descr>
</attribute>
<attribute type="DOMString" name="data" id="ID-837822393" readonly="no">
<descr>
<p>The content of this processing instruction. This is from the first non white space character after the target to the character immediately preceding the<code>?&gt;</code>.</p>
</descr>
<setraises>
<exception name="DOMException">
<descr>
<p>NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.</p>
</descr>
</exception>
</setraises>
</attribute>
</interface>
<interface name="HTMLCollection" id="ID-75708506">
<descr>
<p>An<code>HTMLCollection</code>is a list of nodes. An individual node may be accessed by either ordinal index or the node's<code>name</code>or<code>id</code>attributes.<emph>Note:</emph>Collections in the HTML DOM are assumed to be<emph>live</emph>meaning that they are automatically updated when the underlying document is changed.</p>
</descr>
<attribute readonly="yes" type="unsigned long" name="length" id="ID-40057551">
<descr>
<p>This attribute specifies the length or<emph>size</emph>of the list.</p>
</descr>
</attribute>
<method name="item" id="ID-33262535">
<descr>
<p>This method retrieves a node specified by ordinal index. Nodes are numbered in tree order (depth-first traversal order).</p>
</descr>
<parameters>
<param id="ID-3496656" name="index" type="unsigned long" attr="in">
<descr>
<p>The index of the node to be fetched. The index origin is 0.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The<code>Node</code>at the corresponding position upon success. A value of<code>null</code>is returned if the index is out of range.</p>
</descr>
</returns>
<raises/>
</method>
<method name="namedItem" id="ID-21069976">
<descr>
<p>This method retrieves a<code>Node</code>using a name. It first searches for a<code>Node</code>with a matching<code>id</code>attribute. If it doesn't find one, it then searches for a<code>Node</code>with a matching<code>name</code>attribute, but only on those elements that are allowed a name attribute.</p>
</descr>
<parameters>
<param id="ID-76682631" name="name" type="DOMString" attr="in">
<descr>
<p>The name of the<code>Node</code>to be fetched.</p>
</descr>
</param>
</parameters>
<returns type="Node">
<descr>
<p>The<code>Node</code>with a<code>name</code>or<code>id</code>attribute whose value corresponds to the specified string. Upon failure (e.g., no node with this name exists), returns<code>null</code>.</p>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLDocument" inherits="Document" id="ID-26809268">
<descr>
<p>An<code>HTMLDocument</code>is the root of the HTML hierarchy and holds the entire content. Beside providing access to the hierarchy, it also provides some convenience methods for accessing certain sets of information from the document.</p>
<p>The following properties have been deprecated in favor of the corresponding ones for the BODY element:</p>
<ulist>
<item>
<p>alinkColor</p>
</item>
<item>
<p>background</p>
</item>
<item>
<p>bgColor</p>
</item>
<item>
<p>fgColor</p>
</item>
<item>
<p>linkColor</p>
</item>
<item>
<p>vlinkColor</p>
</item>
</ulist>
<p/>
</descr>
<attribute type="DOMString" name="title" id="ID-18446827" readonly="no">
<descr>
<p>The title of a document as specified by the<code>TITLE</code>element in the head of the document.</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="referrer" id="ID-95229140">
<descr>
<p>Returns the URI of the page that linked to this page. The value is an empty string if the user navigated to the page directly (not through a link, but, for example, via a bookmark).</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="domain" id="ID-2250147">
<descr>
<p>The domain name of the server that served the document, or a null string if the server cannot be identified by a domain name.</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="URL" id="ID-46183437">
<descr>
<p>The complete URI of the document.</p>
</descr>
</attribute>
<attribute type="HTMLElement" name="body" id="ID-56360201" readonly="no">
<descr>
<p>The element that contains the content for the document. In documents with<code>BODY</code>contents, returns the<code>BODY</code>element, and in frameset documents, this returns the outermost<code>FRAMESET</code>element.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="images" id="ID-90379117">
<descr>
<p>A collection of all the<code>IMG</code>elements in a document. The behavior is limited to<code>IMG</code>elements for backwards compatibility.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="applets" id="ID-85113862">
<descr>
<p>A collection of all the<code>OBJECT</code>elements that include applets and<code>APPLET</code>(<emph>deprecated</emph>) elements in a document.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="links" id="ID-7068919">
<descr>
<p>A collection of all<code>AREA</code>elements and anchor (<code>A</code>) elements in a document with a value for the<code>href</code>attribute.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="forms" id="ID-1689064">
<descr>
<p>A collection of all the forms of a document.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="anchors" id="ID-7577272">
<descr>
<p>A collection of all the anchor (<code>A</code>) elements in a document with a value for the<code>name</code>attribute.<emph>Note.</emph>For reasons of backwards compatibility, the returned set of anchors only contains those anchors created with the<code>name</code>attribute, not those created with the<code>id</code>attribute.</p>
</descr>
</attribute>
<attribute type="DOMString" name="cookie" id="ID-8747038" readonly="no">
<descr>
<p>The cookies associated with this document. If there are none, the value is an empty string. Otherwise, the value is a string: a semicolon-delimited list of "name, value" pairs for all the cookies associated with the page. For example,<code>name=value;expires=date</code>.</p>
</descr>
</attribute>
<method name="open" id="ID-72161170">
<descr>
<p>
<emph>Note.</emph>This method and the ones following allow a user to add to or replace the structure model of a document using strings of unparsed HTML. At the time of writing alternate methods for providing similar functionality for both HTML and XML documents were being considered. The following methods may be deprecated at some point in the future in favor of a more general-purpose mechanism.</p>
<p>Open a document stream for writing. If a document exists in the target, this method clears it.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="close" id="ID-98948567">
<descr>
<p>Closes a document stream opened by<code>open()</code>and forces rendering.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="write" id="ID-75233634">
<descr>
<p>Write a string of text to a document stream opened by<code>open()</code>. The text is parsed into the document's structure model.</p>
</descr>
<parameters>
<param id="ID-68980829" name="text" type="DOMString" attr="in">
<descr>
<p>The string to be parsed into some structure in the document structure model.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="writeln" id="ID-35318390">
<descr>
<p>Write a string of text followed by a newline character to a document stream opened by<code>open()</code>. The text is parsed into the document's structure model.</p>
</descr>
<parameters>
<param id="ID-19167591" name="text" type="DOMString" attr="in">
<descr>
<p>The string to be parsed into some structure in the document structure model.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="getElementById" id="ID-36113835">
<descr>
<p>Returns the Element whose<code>id</code>is given by elementId. If no such element exists, returns<code>null</code>. Behavior is not defined if more than one element has this<code>id</code>.</p>
</descr>
<parameters>
<param id="ID-9998411" name="elementId" type="DOMString" attr="in">
<descr>
<p>The unique<code>id</code>value for an element.</p>
</descr>
</param>
</parameters>
<returns type="Element">
<descr>
<p>The matching element.</p>
</descr>
</returns>
<raises/>
</method>
<method name="getElementsByName" id="ID-71555259">
<descr>
<p>Returns the (possibly empty) collection of elements whose<code>name</code>value is given by<code>elementName</code>.</p>
</descr>
<parameters>
<param id="ID-81610098" name="elementName" type="DOMString" attr="in">
<descr>
<p>The<code>name</code>attribute value for an element.</p>
</descr>
</param>
</parameters>
<returns type="NodeList">
<descr>
<p>The matching elements.</p>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLElement" inherits="Element" id="ID-58190037">
<descr>
<p>All HTML element interfaces derive from this class. Elements that only expose the HTML core attributes are represented by the base<code>HTMLElement</code>interface. These elements are as follows:</p>
<ulist>
<item>
<p>HEAD</p>
</item>
<item>
<p>special: SUB, SUP, SPAN, BDO</p>
</item>
<item>
<p>font: TT, I, B, U, S, STRIKE, BIG, SMALL</p>
</item>
<item>
<p>phrase: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ACRONYM, ABBR</p>
</item>
<item>
<p>list: DD, DT</p>
</item>
<item>
<p>NOFRAMES, NOSCRIPT</p>
</item>
<item>
<p>ADDRESS, CENTER</p>
</item>
</ulist>
<p>
<emph>Note.</emph>The<code>style</code>attribute for this interface is reserved for future usage.</p>
</descr>
<attribute type="DOMString" name="id" id="ID-63534901" readonly="no">
<descr>
<p>The element's identifier. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-id" form="simple" show="embed" actuate="auto">id attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="title" id="ID-78276800" readonly="no">
<descr>
<p>The element's advisory title. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-title" form="simple" show="embed" actuate="auto">title attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="lang" id="ID-59132807" readonly="no">
<descr>
<p>Language code defined in RFC 1766. See the<loc href="http://www.w3.org/TR/REC-html40/struct/dirlang.html#adef-lang" form="simple" show="embed" actuate="auto">lang attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="dir" id="ID-52460740" readonly="no">
<descr>
<p>Specifies the base direction of directionally neutral text and the directionality of tables. See the<loc href="http://www.w3.org/TR/REC-html40/struct/dirlang.html#adef-dir" form="simple" show="embed" actuate="auto">dir attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="className" id="ID-95362176" readonly="no">
<descr>
<p>The class attribute of the element. This attribute has been renamed due to conflicts with the "class" keyword exposed by many languages. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-class" form="simple" show="embed" actuate="auto">class attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLHtmlElement" inherits="HTMLElement" id="ID-33759296">
<descr>
<p>Root of an HTML document. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-HTML" form="simple" show="embed" actuate="auto">HTML element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="version" id="ID-9383775" readonly="no">
<descr>
<p>Version information about the document's DTD. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-version" form="simple" show="embed" actuate="auto">version attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLHeadElement" inherits="HTMLElement" id="ID-77253168">
<descr>
<p>Document head information. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-HEAD" form="simple" show="embed" actuate="auto">HEAD element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="profile" id="ID-96921909" readonly="no">
<descr>
<p>URI designating a metadata profile. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-profile" form="simple" show="embed" actuate="auto">profile attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLLinkElement" inherits="HTMLElement" id="ID-35143001">
<descr>
<p>The<code>LINK</code>element specifies a link to an external resource, and defines this document's relationship to that resource (or vice versa). See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-LINK" form="simple" show="embed" actuate="auto">LINK element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="disabled" id="ID-87355129" readonly="no">
<descr>
<p>Enables/disables the link. This is currently only used for style sheet links, and may be used to activate or deactivate style sheets.</p>
</descr>
</attribute>
<attribute type="DOMString" name="charset" id="ID-63954491" readonly="no">
<descr>
<p>The character encoding of the resource being linked to. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset" form="simple" show="embed" actuate="auto">charset attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="href" id="ID-33532588" readonly="no">
<descr>
<p>The URI of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href" form="simple" show="embed" actuate="auto">href attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="hreflang" id="ID-85145682" readonly="no">
<descr>
<p>Language code of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-hreflang" form="simple" show="embed" actuate="auto">hreflang attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="media" id="ID-75813125" readonly="no">
<descr>
<p>Designed for use with one or more target media. See the<loc href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-media" form="simple" show="embed" actuate="auto">media attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="rel" id="ID-41369587" readonly="no">
<descr>
<p>Forward link type. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-rel" form="simple" show="embed" actuate="auto">rel attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="rev" id="ID-40715461" readonly="no">
<descr>
<p>Reverse link type. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-rev" form="simple" show="embed" actuate="auto">rev attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="target" id="ID-84183095" readonly="no">
<descr>
<p>Frame to render the resource in. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target" form="simple" show="embed" actuate="auto">target attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-32498296" readonly="no">
<descr>
<p>Advisory content type. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-type-A" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLTitleElement" inherits="HTMLElement" id="ID-79243169">
<descr>
<p>The document title. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-TITLE" form="simple" show="embed" actuate="auto">TITLE element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="text" id="ID-77500413" readonly="no">
<descr>
<p>The specified title as a string.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLMetaElement" inherits="HTMLElement" id="ID-37041454">
<descr>
<p>This contains generic meta-information about the document. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-META" form="simple" show="embed" actuate="auto">META element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="content" id="ID-87670826" readonly="no">
<descr>
<p>Associated information. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-content" form="simple" show="embed" actuate="auto">content attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="httpEquiv" id="ID-77289449" readonly="no">
<descr>
<p>HTTP response header name. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-http-equiv" form="simple" show="embed" actuate="auto">http-equiv attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-31037081" readonly="no">
<descr>
<p>Meta information name. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-name-META" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="scheme" id="ID-35993789" readonly="no">
<descr>
<p>Select form of content. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-scheme" form="simple" show="embed" actuate="auto">scheme attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLBaseElement" inherits="HTMLElement" id="ID-73629039">
<descr>
<p>Document base URI. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-BASE" form="simple" show="embed" actuate="auto">BASE element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="href" id="ID-65382887" readonly="no">
<descr>
<p>The base URI See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href-BASE" form="simple" show="embed" actuate="auto">href attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="target" id="ID-73844298" readonly="no">
<descr>
<p>The default target frame. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target" form="simple" show="embed" actuate="auto">target attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLIsIndexElement" inherits="HTMLElement" id="ID-85283003">
<descr>
<p>This element is used for single-line text input. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-ISINDEX" form="simple" show="embed" actuate="auto">ISINDEX element definition</loc>in HTML 4.0. This element is deprecated in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-87069980">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="prompt" id="ID-33589862" readonly="no">
<descr>
<p>The prompt message. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-prompt" form="simple" show="embed" actuate="auto">prompt attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLStyleElement" inherits="HTMLElement" id="ID-16428977">
<descr>
<p>Style information. A more detailed style sheet object model is planned to be defined in a separate document. See the<loc href="http://www.w3.org/TR/REC-html40/present/styles.html#edef-STYLE" form="simple" show="embed" actuate="auto">STYLE element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="disabled" id="ID-51162010" readonly="no">
<descr>
<p>Enables/disables the style sheet.</p>
</descr>
</attribute>
<attribute type="DOMString" name="media" id="ID-76412738" readonly="no">
<descr>
<p>Designed for use with one or more target media. See the<loc href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-media" form="simple" show="embed" actuate="auto">media attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-22472002" readonly="no">
<descr>
<p>The style sheet language (Internet media type). See the<loc href="http://www.w3.org/TR/REC-html40/present/styles.html#adef-type-STYLE" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLBodyElement" inherits="HTMLElement" id="ID-62018039">
<descr>
<p>The HTML document body. This element is always present in the DOM API, even if the tags are not present in the source document. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-BODY" form="simple" show="embed" actuate="auto">BODY element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="aLink" id="ID-59424581" readonly="no">
<descr>
<p>Color of active links (after mouse-button down, but before mouse-button up). See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-alink" form="simple" show="embed" actuate="auto">alink attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="background" id="ID-37574810" readonly="no">
<descr>
<p>URI of the background texture tile image. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-background" form="simple" show="embed" actuate="auto">background attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="bgColor" id="ID-24940084" readonly="no">
<descr>
<p>Document background color. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor" form="simple" show="embed" actuate="auto">bgcolor attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="link" id="ID-7662206" readonly="no">
<descr>
<p>Color of links that are not active and unvisited. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-link" form="simple" show="embed" actuate="auto">link attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="text" id="ID-73714763" readonly="no">
<descr>
<p>Document text color. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-text" form="simple" show="embed" actuate="auto">text attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vLink" id="ID-83224305" readonly="no">
<descr>
<p>Color of links that have been visited by the user. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-vlink" form="simple" show="embed" actuate="auto">vlink attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLFormElement" inherits="HTMLElement" id="ID-40002357">
<descr>
<p>The<code>FORM</code>element encompasses behavior similar to a collection and an element. It provides direct access to the contained input elements as well as the attributes of the form element. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-FORM" form="simple" show="embed" actuate="auto">FORM element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLCollection" name="elements" id="ID-76728479">
<descr>
<p>Returns a collection of all control elements in the form.</p>
</descr>
</attribute>
<attribute readonly="yes" type="long" name="length">
<descr>
<p>The number of form controls in the form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-22051454" readonly="no">
<descr>
<p>Names the form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="acceptCharset" id="ID-19661795" readonly="no">
<descr>
<p>List of character sets supported by the server. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accept-charset" form="simple" show="embed" actuate="auto">accept-charset attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="action" id="ID-74049184" readonly="no">
<descr>
<p>Server-side form handler. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-action" form="simple" show="embed" actuate="auto">action attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="enctype" id="ID-84227810" readonly="no">
<descr>
<p>The content type of the submitted form, generally "application/x-www-form-urlencoded". See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-enctype" form="simple" show="embed" actuate="auto">enctype attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="method" id="ID-82545539" readonly="no">
<descr>
<p>HTTP method used to submit form. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-method" form="simple" show="embed" actuate="auto">method attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="target" id="ID-6512890" readonly="no">
<descr>
<p>Frame to render the resource in. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target" form="simple" show="embed" actuate="auto">target attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<method name="submit" id="ID-76767676">
<descr>
<p>Submits the form. It performs the same action as a submit button.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="reset" id="ID-76767677">
<descr>
<p>Restores a form element's default values. It performs the same action as a reset button.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLSelectElement" inherits="HTMLElement" id="ID-94282980">
<descr>
<p>The select element allows the selection of an option. The contained options can be directly accessed through the select element as a collection. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-SELECT" form="simple" show="embed" actuate="auto">SELECT element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="DOMString" name="type" id="ID-58783172">
<descr>
<p>The type of control created.</p>
</descr>
</attribute>
<attribute type="long" name="selectedIndex" id="ID-85676760" readonly="no">
<descr>
<p>The ordinal index of the selected option. The value -1 is returned if no element is selected. If multiple options are selected, the index of the first selected option is returned.</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-59351919" readonly="no">
<descr>
<p>The current form control value.</p>
</descr>
</attribute>
<attribute readonly="yes" type="long" name="length" id="ID-5933486">
<descr>
<p>The number of options in this<code>SELECT</code>.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-20489458">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="options" id="ID-30606413">
<descr>
<p>The collection of<code>OPTION</code>elements contained by this element.</p>
</descr>
</attribute>
<attribute type="boolean" name="disabled" id="ID-79102918" readonly="no">
<descr>
<p>The control is unavailable in this context. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled" form="simple" show="embed" actuate="auto">disabled attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="multiple" id="ID-13246613" readonly="no">
<descr>
<p>If true, multiple<code>OPTION</code>elements may be selected in this<code>SELECT</code>. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-multiple" form="simple" show="embed" actuate="auto">multiple attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-41636323" readonly="no">
<descr>
<p>Form control or object name when submitted with a form. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-SELECT" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="size" id="ID-18293826" readonly="no">
<descr>
<p>Number of visible rows. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-size-SELECT" form="simple" show="embed" actuate="auto">size attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-40676705" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<method name="add" id="ID-14493106">
<descr>
<p>Add a new element to the collection of<code>OPTION</code>elements for this<code>SELECT</code>.</p>
</descr>
<parameters>
<param id="ID-43168006" name="element" type="HTMLElement" attr="in">
<descr>
<p>The element to add.</p>
</descr>
</param>
<param id="ID-76828919" name="before" type="HTMLElement" attr="in">
<descr>
<p>The element to insert before, or NULL for the head of the list.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="remove" id="ID-33404570">
<descr>
<p>Remove an element from the collection of<code>OPTION</code>elements for this<code>SELECT</code>. Does nothing if no element has the given index.</p>
</descr>
<parameters>
<param id="ID-36270997" name="index" type="long" attr="in">
<descr>
<p>The index of the item to remove.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="blur" id="ID-28216144">
<descr>
<p>Removes keyboard focus from this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="focus" id="ID-32130014">
<descr>
<p>Gives keyboard focus to this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLOptGroupElement" inherits="HTMLElement" id="ID-38450247">
<descr>
<p>Group options together in logical subdivisions. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-OPTGROUP" form="simple" show="embed" actuate="auto">OPTGROUP element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="disabled" id="ID-15518803" readonly="no">
<descr>
<p>The control is unavailable in this context. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled" form="simple" show="embed" actuate="auto">disabled attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="label" id="ID-95806054" readonly="no">
<descr>
<p>Assigns a label to this option group. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-label-OPTGROUP" form="simple" show="embed" actuate="auto">label attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLOptionElement" inherits="HTMLElement" id="ID-70901257">
<descr>
<p>A selectable choice. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-OPTION" form="simple" show="embed" actuate="auto">OPTION element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-17116503">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="boolean" name="defaultSelected" id="ID-37770574" readonly="no">
<descr>
<p>Stores the initial value of the<code>selected</code>attribute.</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="text" id="ID-48154426">
<descr>
<p>The text contained within the option element.</p>
</descr>
</attribute>
<attribute type="long" name="index" id="ID-14038413" readonly="no">
<descr>
<p>The index of this<code>OPTION</code>in its parent<code>SELECT</code>.</p>
</descr>
</attribute>
<attribute type="boolean" name="disabled" id="ID-23482473" readonly="no">
<descr>
<p>The control is unavailable in this context. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled" form="simple" show="embed" actuate="auto">disabled attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="label" id="ID-40736115" readonly="no">
<descr>
<p>Option label for use in hierarchical menus. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-label-OPTION" form="simple" show="embed" actuate="auto">label attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute readonly="yes" type="boolean" name="selected" id="ID-70874476">
<descr>
<p>Means that this option is initially selected. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-selected" form="simple" show="embed" actuate="auto">selected attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-6185554" readonly="no">
<descr>
<p>The current form control value. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-value-OPTION" form="simple" show="embed" actuate="auto">value attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLInputElement" inherits="HTMLElement" id="ID-6043025">
<descr>
<p>Form control.<emph>Note.</emph>Depending upon the environment the page is being viewed, the value property may be read-only for the file upload input type. For the "password" input type, the actual value returned may be masked to prevent unauthorized use. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-INPUT" form="simple" show="embed" actuate="auto">INPUT element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="defaultValue" id="ID-26091157" readonly="no">
<descr>
<p>Stores the initial control value (i.e., the initial value of<code>value</code>).</p>
</descr>
</attribute>
<attribute type="boolean" name="defaultChecked" id="ID-20509171" readonly="no">
<descr>
<p>When<code>type</code>has the value "Radio" or "Checkbox", stores the initial value of the<code>checked</code>attribute.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-63239895">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="accept" id="ID-15328520" readonly="no">
<descr>
<p>A comma-separated list of content types that a server processing this form will handle correctly. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accept" form="simple" show="embed" actuate="auto">accept attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="accessKey" id="ID-59914154" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-96991182" readonly="no">
<descr>
<p>Aligns this object (vertically or horizontally) with respect to its surrounding text. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="alt" id="ID-92701314" readonly="no">
<descr>
<p>Alternate text for user agents not rendering the normal content of this element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt" form="simple" show="embed" actuate="auto">alt attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="checked" id="ID-30233917" readonly="no">
<descr>
<p>Describes whether a radio or check box is checked, when<code>type</code>has the value "Radio" or "Checkbox". The value is TRUE if explicitly set. Represents the current state of the checkbox or radio button. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-checked" form="simple" show="embed" actuate="auto">checked attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="disabled" id="ID-50886781" readonly="no">
<descr>
<p>The control is unavailable in this context. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled" form="simple" show="embed" actuate="auto">disabled attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="maxLength" id="ID-54719353" readonly="no">
<descr>
<p>Maximum number of characters for text fields, when<code>type</code>has the value "Text" or "Password". See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-maxlength" form="simple" show="embed" actuate="auto">maxlength attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-89658498" readonly="no">
<descr>
<p>Form control or object name when submitted with a form. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-INPUT" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="readOnly" id="ID-88461592" readonly="no">
<descr>
<p>This control is read-only. When<code>type</code>has the value "text" or "password" only. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-readonly" form="simple" show="embed" actuate="auto">readonly attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="size" id="ID-79659438" readonly="no">
<descr>
<p>Size information. The precise meaning is specific to each type of field. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-size-INPUT" form="simple" show="embed" actuate="auto">size attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="src" id="ID-97320704" readonly="no">
<descr>
<p>When the<code>type</code>attribute has the value "Image", this attribute specifies the location of the image to be used to decorate the graphical submit button. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-src" form="simple" show="embed" actuate="auto">src attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-62176355" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="type" id="ID-62883744">
<descr>
<p>The type of control created. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-type-INPUT" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="useMap" id="ID-32463706" readonly="no">
<descr>
<p>Use client-side image map. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-usemap" form="simple" show="embed" actuate="auto">usemap attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-49531485" readonly="no">
<descr>
<p>The current form control value. Used for radio buttons and check boxes. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-value-INPUT" form="simple" show="embed" actuate="auto">value attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<method name="blur" id="ID-26838235">
<descr>
<p>Removes keyboard focus from this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="focus" id="ID-65996295">
<descr>
<p>Gives keyboard focus to this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="select" id="ID-34677168">
<descr>
<p>Select the contents of the text area. For<code>INPUT</code>elements whose<code>type</code>attribute has one of the following values: "Text", "File", or "Password".</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="click" id="ID-2651361">
<descr>
<p>Simulate a mouse-click. For<code>INPUT</code>elements whose<code>type</code>attribute has one of the following values: "Button", "Checkbox", "Radio", "Reset", or "Submit".</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLTextAreaElement" inherits="HTMLElement" id="ID-24874179">
<descr>
<p>Multi-line text field. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-TEXTAREA" form="simple" show="embed" actuate="auto">TEXTAREA element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="defaultValue" id="ID-36152213" readonly="no">
<descr>
<p>Stores the initial control value (i.e., the initial value of<code>value</code>).</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-18911464">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="accessKey" id="ID-93102991" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="cols" id="ID-51387225" readonly="no">
<descr>
<p>Width of control (in characters). See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-cols-TEXTAREA" form="simple" show="embed" actuate="auto">cols attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="disabled" id="ID-98725443" readonly="no">
<descr>
<p>The control is unavailable in this context. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled" form="simple" show="embed" actuate="auto">disabled attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-70715578" readonly="no">
<descr>
<p>Form control or object name when submitted with a form. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-TEXTAREA" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="readOnly" id="ID-39131423" readonly="no">
<descr>
<p>This control is read-only. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-readonly" form="simple" show="embed" actuate="auto">readonly attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="rows" id="ID-46975887" readonly="no">
<descr>
<p>Number of text rows. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-rows-TEXTAREA" form="simple" show="embed" actuate="auto">rows attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-60363303" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="type">
<descr>
<p>The type of this form control.</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-70715579" readonly="no">
<descr>
<p>The current textual content of the multi-line text field. If the entirety of the data can not fit into a single wstring, the implementation may truncate the data.</p>
</descr>
</attribute>
<method name="blur" id="ID-6750689">
<descr>
<p>Removes keyboard focus from this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="focus" id="ID-39055426">
<descr>
<p>Gives keyboard focus to this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="select" id="ID-48880622">
<descr>
<p>Select the contents of the<code>TEXTAREA</code>.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLButtonElement" inherits="HTMLElement" id="ID-34812697">
<descr>
<p>Push button. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-BUTTON" form="simple" show="embed" actuate="auto">BUTTON element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-71254493">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="accessKey" id="ID-73169431" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="disabled" id="ID-92757155" readonly="no">
<descr>
<p>The control is unavailable in this context. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-disabled" form="simple" show="embed" actuate="auto">disabled attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-11029910" readonly="no">
<descr>
<p>Form control or object name when submitted with a form. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-BUTTON" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-39190908" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute readonly="yes" type="DOMString" name="type" id="ID-27430092">
<descr>
<p>The type of button. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-type-BUTTON" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-72856782" readonly="no">
<descr>
<p>The current form control value. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-value-BUTTON" form="simple" show="embed" actuate="auto">value attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLLabelElement" inherits="HTMLElement" id="ID-13691394">
<descr>
<p>Form field label text. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LABEL" form="simple" show="embed" actuate="auto">LABEL element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-32480901">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="accessKey" id="ID-43589892" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="htmlFor" id="ID-96509813" readonly="no">
<descr>
<p>This attribute links this label with another form control by<code>id</code>attribute. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-for" form="simple" show="embed" actuate="auto">for attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLFieldSetElement" inherits="HTMLElement" id="ID-7365882">
<descr>
<p>Organizes form controls into logical groups. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-FIELDSET" form="simple" show="embed" actuate="auto">FIELDSET element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-75392630">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLLegendElement" inherits="HTMLElement" id="ID-21482039">
<descr>
<p>Provides a captionfor a<code>FIELDSET</code>grouping. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#edef-LEGEND" form="simple" show="embed" actuate="auto">LEGEND element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-29594519">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="accessKey" id="ID-11297832" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-79538067" readonly="no">
<descr>
<p>Text alignment relative to<code>FIELDSET</code>. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-align-LEGEND" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLUListElement" inherits="HTMLElement" id="ID-86834457">
<descr>
<p>Unordered list. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-UL" form="simple" show="embed" actuate="auto">UL element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="compact" id="ID-39864178" readonly="no">
<descr>
<p>Reduce spacing between list items. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact" form="simple" show="embed" actuate="auto">compact attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-96874670" readonly="no">
<descr>
<p>Bullet style. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-UL" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLOListElement" inherits="HTMLElement" id="ID-58056027">
<descr>
<p>Ordered list. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-OL" form="simple" show="embed" actuate="auto">OL element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="compact" id="ID-76448506" readonly="no">
<descr>
<p>Reduce spacing between list items. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact" form="simple" show="embed" actuate="auto">compact attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="start" id="ID-14793325" readonly="no">
<descr>
<p>Starting sequence number. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-start" form="simple" show="embed" actuate="auto">start attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-40971103" readonly="no">
<descr>
<p>Numbering style. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-OL" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLDListElement" inherits="HTMLElement" id="ID-52368974">
<descr>
<p>Definition list. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-DL" form="simple" show="embed" actuate="auto">DL element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="compact" id="ID-21738539" readonly="no">
<descr>
<p>Reduce spacing between list items. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact" form="simple" show="embed" actuate="auto">compact attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLDirectoryElement" inherits="HTMLElement" id="ID-71600284">
<descr>
<p>Directory list. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-DIR" form="simple" show="embed" actuate="auto">DIR element definition</loc>in HTML 4.0. This element is deprecated in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="compact" id="ID-75317739" readonly="no">
<descr>
<p>Reduce spacing between list items. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact" form="simple" show="embed" actuate="auto">compact attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLMenuElement" inherits="HTMLElement" id="ID-72509186">
<descr>
<p>Menu list. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-MENU" form="simple" show="embed" actuate="auto">MENU element definition</loc>in HTML 4.0. This element is deprecated in HTML 4.0.</p>
</descr>
<attribute type="boolean" name="compact" id="ID-68436464" readonly="no">
<descr>
<p>Reduce spacing between list items. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-compact" form="simple" show="embed" actuate="auto">compact attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLLIElement" inherits="HTMLElement" id="ID-74680021">
<descr>
<p>List item. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#edef-LI" form="simple" show="embed" actuate="auto">LI element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="type" id="ID-52387668" readonly="no">
<descr>
<p>List item bullet style. See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-type-LI" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="value" id="ID-45496263" readonly="no">
<descr>
<p>Reset sequence number when used in<code>OL</code>See the<loc href="http://www.w3.org/TR/REC-html40/struct/lists.html#adef-value-LI" form="simple" show="embed" actuate="auto">value attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLDivElement" inherits="HTMLElement" id="ID-22445964">
<descr>
<p>Generic block container. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-DIV" form="simple" show="embed" actuate="auto">DIV element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-70908791" readonly="no">
<descr>
<p>Horizontal text alignment. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-align" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLParagraphElement" inherits="HTMLElement" id="ID-84675076">
<descr>
<p>Paragraphs. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-P" form="simple" show="embed" actuate="auto">P element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-53465507" readonly="no">
<descr>
<p>Horizontal text alignment. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-align" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLHeadingElement" inherits="HTMLElement" id="ID-43345119">
<descr>
<p>For the<code>H1</code>to<code>H6</code>elements. See the<loc href="http://www.w3.org/TR/REC-html40/struct/global.html#edef-H1" form="simple" show="embed" actuate="auto">H1 element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-6796462" readonly="no">
<descr>
<p>Horizontal text alignment. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-align" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLQuoteElement" inherits="HTMLElement" id="ID-70319763">
<descr>
<p>For the<code>Q</code>and<code>BLOCKQUOTE</code>elements. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-Q" form="simple" show="embed" actuate="auto">Q element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="cite" id="ID-53895598" readonly="no">
<descr>
<p>A URI designating a document that designates a source document or message. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-cite-Q" form="simple" show="embed" actuate="auto">cite attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLPreElement" inherits="HTMLElement" id="ID-11383425">
<descr>
<p>Preformatted text. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-PRE" form="simple" show="embed" actuate="auto">PRE element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="long" name="width" id="ID-13894083" readonly="no">
<descr>
<p>Fixed width for content. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-width-PRE" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLBRElement" inherits="HTMLElement" id="ID-56836063">
<descr>
<p>Force a line break. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-BR" form="simple" show="embed" actuate="auto">BR element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="clear" id="ID-82703081" readonly="no">
<descr>
<p>Control flow of text around floats. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-clear" form="simple" show="embed" actuate="auto">clear attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLBaseFontElement" inherits="HTMLElement" id="ID-32774408">
<descr>
<p>Base font. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-BASEFONT" form="simple" show="embed" actuate="auto">BASEFONT element definition</loc>in HTML 4.0. This element is deprecated in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="color" id="ID-87502302" readonly="no">
<descr>
<p>Font color. See the<loc href="http://www.w3.org/TR/REC-html40/" form="simple" show="embed" actuate="auto">color attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="face" id="ID-88128969" readonly="no">
<descr>
<p>Font face identifier. See the<loc href="http://www.w3.org/TR/REC-html40/" form="simple" show="embed" actuate="auto">face attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="size" id="ID-38930424" readonly="no">
<descr>
<p>Font size. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-BASEFONT" form="simple" show="embed" actuate="auto">size attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLFontElement" inherits="HTMLElement" id="ID-43943847">
<descr>
<p>Local change to font. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-FONT" form="simple" show="embed" actuate="auto">FONT element definition</loc>in HTML 4.0. This element is deprecated in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="color" id="ID-53532975" readonly="no">
<descr>
<p>Font color. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-color-FONT" form="simple" show="embed" actuate="auto">color attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="face" id="ID-55715655" readonly="no">
<descr>
<p>Font face identifier. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-face-FONT" form="simple" show="embed" actuate="auto">face attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="size" id="ID-90127284" readonly="no">
<descr>
<p>Font size. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-FONT" form="simple" show="embed" actuate="auto">size attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLHRElement" inherits="HTMLElement" id="ID-68228811">
<descr>
<p>Create a horizontal rule. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#edef-HR" form="simple" show="embed" actuate="auto">HR element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-15235012" readonly="no">
<descr>
<p>Align the rule on the page. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-align-HR" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="noShade" id="ID-79813978" readonly="no">
<descr>
<p>Indicates to the user agent that there should be no shading in the rendering of this element. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-noshade" form="simple" show="embed" actuate="auto">noshade attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="size" id="ID-77612587" readonly="no">
<descr>
<p>The height of the rule. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-size-HR" form="simple" show="embed" actuate="auto">size attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-87744198" readonly="no">
<descr>
<p>The width of the rule. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-width-HR" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLModElement" inherits="HTMLElement" id="ID-79359609">
<descr>
<p>Notice of modification to part of a document. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-ins" form="simple" show="embed" actuate="auto">INS</loc>and<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#edef-del" form="simple" show="embed" actuate="auto">DEL</loc>element definitions in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="cite" id="ID-75101708" readonly="no">
<descr>
<p>A URI designating a document that describes the reason for the change. See the<loc href="http://www.w3.org/TR/REC-html40/" form="simple" show="embed" actuate="auto">cite attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="dateTime" id="ID-88432678" readonly="no">
<descr>
<p>The date and time of the change. See the<loc href="http://www.w3.org/TR/REC-html40/struct/text.html#adef-datetime" form="simple" show="embed" actuate="auto">datetime attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLAnchorElement" inherits="HTMLElement" id="ID-48250443">
<descr>
<p>The anchor element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#edef-A" form="simple" show="embed" actuate="auto">A element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="accessKey" id="ID-89647724" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="charset" id="ID-67619266" readonly="no">
<descr>
<p>The character encoding of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset" form="simple" show="embed" actuate="auto">charset attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="coords" id="ID-92079539" readonly="no">
<descr>
<p>Comma-separated list of lengths, defining an active region geometry. See also<code>shape</code>for the shape of the region. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords" form="simple" show="embed" actuate="auto">coords attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="href" id="ID-88517319" readonly="no">
<descr>
<p>The URI of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href" form="simple" show="embed" actuate="auto">href attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="hreflang" id="ID-87358513" readonly="no">
<descr>
<p>Language code of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-hreflang" form="simple" show="embed" actuate="auto">hreflang attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-32783304" readonly="no">
<descr>
<p>Anchor name. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-name-A" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="rel" id="ID-3815891" readonly="no">
<descr>
<p>Forward link type. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-rel" form="simple" show="embed" actuate="auto">rel attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="rev" id="ID-58259771" readonly="no">
<descr>
<p>Reverse link type. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-rev" form="simple" show="embed" actuate="auto">rev attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="shape" id="ID-49899808" readonly="no">
<descr>
<p>The shape of the active area. The coordinates are given by<code>coords</code>. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-shape" form="simple" show="embed" actuate="auto">shape attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-41586466" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="target" id="ID-6414197" readonly="no">
<descr>
<p>Frame to render the resource in. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target" form="simple" show="embed" actuate="auto">target attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-63938221" readonly="no">
<descr>
<p>Advisory content type. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-type-A" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<method name="blur" id="ID-65068939">
<descr>
<p>Removes keyboard focus from this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="focus" id="ID-47150313">
<descr>
<p>Gives keyboard focus to this element.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLImageElement" inherits="HTMLElement" id="ID-17701901">
<descr>
<p>Embedded image. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-IMG" form="simple" show="embed" actuate="auto">IMG element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="lowSrc" id="ID-91256910" readonly="no">
<descr>
<p>URI designating the source of this image, for low-resolution output.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-47534097" readonly="no">
<descr>
<p>The name of the element (for backwards compatibility).</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-3211094" readonly="no">
<descr>
<p>Aligns this object (vertically or horizontally) with respect to its surrounding text. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="alt" id="ID-95636861" readonly="no">
<descr>
<p>Alternate text for user agents not rendering the normal content of this element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt" form="simple" show="embed" actuate="auto">alt attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="border" id="ID-136671" readonly="no">
<descr>
<p>Width of border around image. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-border-IMG" form="simple" show="embed" actuate="auto">border attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="height" id="ID-91561496" readonly="no">
<descr>
<p>Override height. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-height-IMG" form="simple" show="embed" actuate="auto">height attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="hspace" id="ID-53675471" readonly="no">
<descr>
<p>Horizontal space to the left and right of this image. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-hspace" form="simple" show="embed" actuate="auto">hspace attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="isMap" id="ID-58983880" readonly="no">
<descr>
<p>Use server-side image map. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-ismap" form="simple" show="embed" actuate="auto">ismap attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="longDesc" id="ID-77376969" readonly="no">
<descr>
<p>URI designating a long description of this image or frame. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-longdesc-IMG" form="simple" show="embed" actuate="auto">longdesc attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="src" id="ID-87762984" readonly="no">
<descr>
<p>URI designating the source of this image. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-src-IMG" form="simple" show="embed" actuate="auto">src attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="useMap" id="ID-35981181" readonly="no">
<descr>
<p>Use client-side image map. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-usemap" form="simple" show="embed" actuate="auto">usemap attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vspace" id="ID-85374897" readonly="no">
<descr>
<p>Vertical space above and below this image. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-vspace" form="simple" show="embed" actuate="auto">vspace attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-13839076" readonly="no">
<descr>
<p>Override width. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-width-IMG" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLObjectElement" inherits="HTMLElement" id="ID-9893177">
<descr>
<p>Generic embedded object.<emph>Note.</emph>In principle, all properties on the object element are read-write but in some environments some properties may be read-only once the underlying object is instantiated. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-OBJECT" form="simple" show="embed" actuate="auto">OBJECT element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLFormElement" name="form" id="ID-46094773">
<descr>
<p>Returns the<code>FORM</code>element containing this control. Returns null if this control is not within the context of a form.</p>
</descr>
</attribute>
<attribute type="DOMString" name="code" id="ID-75241146" readonly="no">
<descr>
<p>Applet class file. See the<code>code</code>attribute for HTMLAppletElement.</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-16962097" readonly="no">
<descr>
<p>Aligns this object (vertically or horizontally) with respect to its surrounding text. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="archive" id="ID-47783837" readonly="no">
<descr>
<p>Space-separated list of archives. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-archive-OBJECT" form="simple" show="embed" actuate="auto">archive attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="border" id="ID-82818419" readonly="no">
<descr>
<p>Width of border around the object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-border" form="simple" show="embed" actuate="auto">border attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="codeBase" id="ID-25709136" readonly="no">
<descr>
<p>Base URI for<code>classid</code>,<code>data</code>, and<code>archive</code>attributes. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-codebase-OBJECT" form="simple" show="embed" actuate="auto">codebase attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="codeType" id="ID-19945008" readonly="no">
<descr>
<p>Content type for data downloaded via<code>classid</code>attribute. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-codetype" form="simple" show="embed" actuate="auto">codetype attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="data" id="ID-81766986" readonly="no">
<descr>
<p>A URI specifying the location of the object's data. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-data" form="simple" show="embed" actuate="auto">data attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="declare" id="ID-942770" readonly="no">
<descr>
<p>Declare (for future reference), but do not instantiate, this object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-declare" form="simple" show="embed" actuate="auto">declare attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="height" id="ID-88925838" readonly="no">
<descr>
<p>Override height. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-height-IMG" form="simple" show="embed" actuate="auto">height attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="hspace" id="ID-17085376" readonly="no">
<descr>
<p>Horizontal space to the left and right of this image, applet, or object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-hspace" form="simple" show="embed" actuate="auto">hspace attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-20110362" readonly="no">
<descr>
<p>Form control or object name when submitted with a form. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-name-INPUT" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="standby" id="ID-25039673" readonly="no">
<descr>
<p>Message to render while loading the object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-standby" form="simple" show="embed" actuate="auto">standby attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-27083787" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-91665621" readonly="no">
<descr>
<p>Content type for data downloaded via<code>data</code>attribute. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-type-OBJECT" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="useMap" id="ID-6649772" readonly="no">
<descr>
<p>Use client-side image map. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-usemap" form="simple" show="embed" actuate="auto">usemap attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vspace" id="ID-8682483" readonly="no">
<descr>
<p>Vertical space above and below this image, applet, or object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-vspace" form="simple" show="embed" actuate="auto">vspace attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-38538620" readonly="no">
<descr>
<p>Override width. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-width-IMG" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLParamElement" inherits="HTMLElement" id="ID-64077273">
<descr>
<p>Parameters fed to the<code>OBJECT</code>element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-PARAM" form="simple" show="embed" actuate="auto">PARAM element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="name" id="ID-59871447" readonly="no">
<descr>
<p>The name of a run-time parameter. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-PARAM" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-18179888" readonly="no">
<descr>
<p>Content type for the<code>value</code>attribute when<code>valuetype</code>has the value "ref". See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-type-PARAM" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="value" id="ID-77971357" readonly="no">
<descr>
<p>The value of a run-time parameter. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-value-PARAM" form="simple" show="embed" actuate="auto">value attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="valueType" id="ID-23931872" readonly="no">
<descr>
<p>Information about the meaning of the<code>value</code>attribute value. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-valuetype" form="simple" show="embed" actuate="auto">valuetype attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLAppletElement" inherits="HTMLElement" id="ID-31006348">
<descr>
<p>An embedded Java applet. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-APPLET" form="simple" show="embed" actuate="auto">APPLET element definition</loc>in HTML 4.0. This element is deprecated in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-8049912" readonly="no">
<descr>
<p>Aligns this object (vertically or horizontally) with respect to its surrounding text. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="alt" id="ID-58610064" readonly="no">
<descr>
<p>Alternate text for user agents not rendering the normal content of this element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt" form="simple" show="embed" actuate="auto">alt attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="archive" id="ID-14476360" readonly="no">
<descr>
<p>Comma-separated archive list. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-archive-APPLET" form="simple" show="embed" actuate="auto">archive attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="code" id="ID-61509645" readonly="no">
<descr>
<p>Applet class file. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-code" form="simple" show="embed" actuate="auto">code attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="codeBase" id="ID-6581160" readonly="no">
<descr>
<p>Optional base URI for applet. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-codebase-APPLET" form="simple" show="embed" actuate="auto">codebase attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="height" id="ID-90184867" readonly="no">
<descr>
<p>Override height. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-height-APPLET" form="simple" show="embed" actuate="auto">height attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="hspace" id="ID-1567197" readonly="no">
<descr>
<p>Horizontal space to the left and right of this image, applet, or object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-hspace" form="simple" show="embed" actuate="auto">hspace attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-39843695" readonly="no">
<descr>
<p>The name of the applet. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-APPLET" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="object" id="ID-93681523" readonly="no">
<descr>
<p>Serialized applet file. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-object" form="simple" show="embed" actuate="auto">object attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vspace" id="ID-22637173" readonly="no">
<descr>
<p>Vertical space above and below this image, applet, or object. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-vspace" form="simple" show="embed" actuate="auto">vspace attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-16526327" readonly="no">
<descr>
<p>Override width. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-width-APPLET" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLMapElement" inherits="HTMLElement" id="ID-94109203">
<descr>
<p>Client-side image map. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-MAP" form="simple" show="embed" actuate="auto">MAP element definition</loc>in HTML 4.0.</p>
</descr>
<attribute readonly="yes" type="HTMLCollection" name="areas" id="ID-71838730">
<descr>
<p>The list of areas defined for the image map.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-52696514" readonly="no">
<descr>
<p>Names the map (for use with<code>usemap</code>). See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-name-MAP" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLAreaElement" inherits="HTMLElement" id="ID-26019118">
<descr>
<p>Client-side image map area definition. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#edef-AREA" form="simple" show="embed" actuate="auto">AREA element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="accessKey" id="ID-57944457" readonly="no">
<descr>
<p>A single character access key to give access to the form control. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-accesskey" form="simple" show="embed" actuate="auto">accesskey attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="alt" id="ID-39775416" readonly="no">
<descr>
<p>Alternate text for user agents not rendering the normal content of this element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-alt" form="simple" show="embed" actuate="auto">alt attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="coords" id="ID-66021476" readonly="no">
<descr>
<p>Comma-separated list of lengths, defining an active region geometry. See also<code>shape</code>for the shape of the region. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-coords" form="simple" show="embed" actuate="auto">coords attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="href" id="ID-34672936" readonly="no">
<descr>
<p>The URI of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-href" form="simple" show="embed" actuate="auto">href attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="noHref" id="ID-61826871" readonly="no">
<descr>
<p>Specifies that this area is inactive, i.e., has no associated action. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-nohref" form="simple" show="embed" actuate="auto">nohref attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="shape" id="ID-85683271" readonly="no">
<descr>
<p>The shape of the active area. The coordinates are given by<code>coords</code>. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-shape" form="simple" show="embed" actuate="auto">shape attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="tabIndex" id="ID-8722121" readonly="no">
<descr>
<p>Index that represents the element's position in the tabbing order. See the<loc href="http://www.w3.org/TR/REC-html40/interact/forms.html#adef-tabindex" form="simple" show="embed" actuate="auto">tabindex attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="target" id="ID-46054682" readonly="no">
<descr>
<p>Frame to render the resource in. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-target" form="simple" show="embed" actuate="auto">target attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLScriptElement" inherits="HTMLElement" id="ID-81598695">
<descr>
<p>Script statements. See the<loc href="http://www.w3.org/TR/REC-html40/interact/scripts.html#edef-SCRIPT" form="simple" show="embed" actuate="auto">SCRIPT element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="text" id="ID-46872999" readonly="no">
<descr>
<p>The script content of the element.</p>
</descr>
</attribute>
<attribute type="DOMString" name="htmlFor" id="ID-66979266" readonly="no">
<descr>
<p>
<emph>Reserved for future use.</emph>
</p>
</descr>
</attribute>
<attribute type="DOMString" name="event" id="ID-56700403" readonly="no">
<descr>
<p>
<emph>Reserved for future use.</emph>
</p>
</descr>
</attribute>
<attribute type="DOMString" name="charset" id="ID-35305677" readonly="no">
<descr>
<p>The character encoding of the linked resource. See the<loc href="http://www.w3.org/TR/REC-html40/struct/links.html#adef-charset" form="simple" show="embed" actuate="auto">charset attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="defer" id="ID-93788534" readonly="no">
<descr>
<p>Indicates that the user agent can defer processing of the script. See the<loc href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-defer" form="simple" show="embed" actuate="auto">defer attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="src" id="ID-75147231" readonly="no">
<descr>
<p>URI designating an external script. See the<loc href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-src-SCRIPT" form="simple" show="embed" actuate="auto">src attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="type" id="ID-30534818" readonly="no">
<descr>
<p>The content type of the script language. See the<loc href="http://www.w3.org/TR/REC-html40/interact/scripts.html#adef-type-SCRIPT" form="simple" show="embed" actuate="auto">type attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLTableElement" inherits="HTMLElement" id="ID-64060425">
<descr>
<p>The create* and delete* methods on the table allow authors to construct and modify tables. HTML 4.0 specifies that only one of each of the<code>CAPTION</code>,<code>THEAD</code>, and<code>TFOOT</code>elements may exist in a table. Therefore, if one exists, and the createTHead() or createTFoot() method is called, the method returns the existing THead or TFoot element. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TABLE" form="simple" show="embed" actuate="auto">TABLE element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="HTMLTableCaptionElement" name="caption" id="ID-14594520" readonly="no">
<descr>
<p>Returns the table's<code>CAPTION</code>, or void if none exists.</p>
</descr>
</attribute>
<attribute type="HTMLTableSectionElement" name="tHead" id="ID-9530944" readonly="no">
<descr>
<p>Returns the table's<code>THEAD</code>, or<code>null</code>if none exists.</p>
</descr>
</attribute>
<attribute type="HTMLTableSectionElement" name="tFoot" id="ID-64197097" readonly="no">
<descr>
<p>Returns the table's<code>TFOOT</code>, or<code>null</code>if none exists.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="rows" id="ID-6156016">
<descr>
<p>Returns a collection of all the rows in the table, including all in<code>THEAD</code>,<code>TFOOT</code>, all<code>TBODY</code>elements.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="tBodies" id="ID-63206416">
<descr>
<p>Returns a collection of the defined table bodies.</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-23180977" readonly="no">
<descr>
<p>Specifies the table's position with respect to the rest of the document. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-TABLE" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="bgColor" id="ID-83532985" readonly="no">
<descr>
<p>Cell background color. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor" form="simple" show="embed" actuate="auto">bgcolor attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="border" id="ID-50969400" readonly="no">
<descr>
<p>The width of the border around the table. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-border-TABLE" form="simple" show="embed" actuate="auto">border attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="cellPadding" id="ID-59162158" readonly="no">
<descr>
<p>Specifies the horizontal and vertical space between cell content and cell borders. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-cellpadding" form="simple" show="embed" actuate="auto">cellpadding attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="cellSpacing" id="ID-68907883" readonly="no">
<descr>
<p>Specifies the horizontal and vertical separation between cells. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-cellspacing" form="simple" show="embed" actuate="auto">cellspacing attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="frame" id="ID-64808476" readonly="no">
<descr>
<p>Specifies which external table borders to render. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-frame" form="simple" show="embed" actuate="auto">frame attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="rules" id="ID-26347553" readonly="no">
<descr>
<p>Specifies which internal table borders to render. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-rules" form="simple" show="embed" actuate="auto">rules attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="summary" id="ID-44998528" readonly="no">
<descr>
<p>Supplementary description about the purpose or structure of a table. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-summary" form="simple" show="embed" actuate="auto">summary attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-77447361" readonly="no">
<descr>
<p>Specifies the desired table width. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-TABLE" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<method name="createTHead" id="ID-70313345">
<descr>
<p>Create a table header row or return an existing one.</p>
</descr>
<parameters/>
<returns type="HTMLElement">
<descr>
<p>A new table header element (<code>THEAD</code>).</p>
</descr>
</returns>
<raises/>
</method>
<method name="deleteTHead" id="ID-38310198">
<descr>
<p>Delete the header from the table, if one exists.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="createTFoot" id="ID-8453710">
<descr>
<p>Create a table footer row or return an existing one.</p>
</descr>
<parameters/>
<returns type="HTMLElement">
<descr>
<p>A footer element (<code>TFOOT</code>).</p>
</descr>
</returns>
<raises/>
</method>
<method name="deleteTFoot" id="ID-78363258">
<descr>
<p>Delete the footer from the table, if one exists.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="createCaption" id="ID-96920263">
<descr>
<p>Create a new table caption object or return an existing one.</p>
</descr>
<parameters/>
<returns type="HTMLElement">
<descr>
<p>A<code>CAPTION</code>element.</p>
</descr>
</returns>
<raises/>
</method>
<method name="deleteCaption" id="ID-22930071">
<descr>
<p>Delete the table caption, if one exists.</p>
</descr>
<parameters/>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
<method name="insertRow" id="ID-39872903">
<descr>
<p>Insert a new empty row in the table.<emph>Note.</emph>A table row cannot be empty according to HTML 4.0 Recommendation.</p>
</descr>
<parameters>
<param id="ID-3501423" name="index" type="long" attr="in">
<descr>
<p>The row number where to insert a new row.</p>
</descr>
</param>
</parameters>
<returns type="HTMLElement">
<descr>
<p>The newly created row.</p>
</descr>
</returns>
<raises/>
</method>
<method name="deleteRow" id="ID-13114938">
<descr>
<p>Delete a table row.</p>
</descr>
<parameters>
<param id="ID-41440100" name="index" type="long" attr="in">
<descr>
<p>The index of the row to be deleted.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLTableCaptionElement" inherits="HTMLElement" id="ID-12035137">
<descr>
<p>Table caption See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-CAPTION" form="simple" show="embed" actuate="auto">CAPTION element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-79875068" readonly="no">
<descr>
<p>Caption alignment with respect to the table. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-CAPTION" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLTableColElement" inherits="HTMLElement" id="ID-84150186">
<descr>
<p>Regroups the<code>COL</code>and<code>COLGROUP</code>elements. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-COL" form="simple" show="embed" actuate="auto">COL element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-31128447" readonly="no">
<descr>
<p>Horizontal alignment of cell data in column. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-TD" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="ch" id="ID-9447412" readonly="no">
<descr>
<p>Alignment character for cells in a column. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-char" form="simple" show="embed" actuate="auto">char attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="chOff" id="ID-57779225" readonly="no">
<descr>
<p>Offset of alignment character. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-charoff" form="simple" show="embed" actuate="auto">charoff attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="span" id="ID-96511335" readonly="no">
<descr>
<p>Indicates the number of columns in a group or affected by a grouping. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-span-COL" form="simple" show="embed" actuate="auto">span attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vAlign" id="ID-83291710" readonly="no">
<descr>
<p>Vertical alignment of cell data in column. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-valign" form="simple" show="embed" actuate="auto">valign attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-25196799" readonly="no">
<descr>
<p>Default column width. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-COL" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLTableSectionElement" inherits="HTMLElement" id="ID-67417573">
<descr>
<p>The<code>THEAD</code>,<code>TFOOT</code>, and<code>TBODY</code>elements.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-40530119" readonly="no">
<descr>
<p>Horizontal alignment of data in cells. See the<code>align</code>attribute for HTMLTheadElement for details.</p>
</descr>
</attribute>
<attribute type="DOMString" name="ch" id="ID-83470012" readonly="no">
<descr>
<p>Alignment character for cells in a column. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-char" form="simple" show="embed" actuate="auto">char attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="chOff" id="ID-53459732" readonly="no">
<descr>
<p>Offset of alignment character. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-charoff" form="simple" show="embed" actuate="auto">charoff attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vAlign" id="ID-4379116" readonly="no">
<descr>
<p>Vertical alignment of data in cells. See the<code>valign</code>attribute for HTMLTheadElement for details.</p>
</descr>
</attribute>
<attribute readonly="yes" type="HTMLCollection" name="rows" id="ID-52092650">
<descr>
<p>The collection of rows in this table section.</p>
</descr>
</attribute>
<method name="insertRow" id="ID-93995626">
<descr>
<p>Insert a row into this section.</p>
</descr>
<parameters>
<param id="ID-48322963" name="index" type="long" attr="in">
<descr>
<p>The row number where to insert a new row.</p>
</descr>
</param>
</parameters>
<returns type="HTMLElement">
<descr>
<p>The newly created row.</p>
</descr>
</returns>
<raises/>
</method>
<method name="deleteRow" id="ID-5625626">
<descr>
<p>Delete a row from this section.</p>
</descr>
<parameters>
<param id="ID-49711281" name="index" type="long" attr="in">
<descr>
<p>The index of the row to be deleted.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLTableRowElement" inherits="HTMLElement" id="ID-6986576">
<descr>
<p>A row in a table. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TR" form="simple" show="embed" actuate="auto">TR element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="long" name="rowIndex" id="ID-67347567" readonly="no">
<descr>
<p>The index of this row, relative to the entire table.</p>
</descr>
</attribute>
<attribute type="long" name="sectionRowIndex" id="ID-79105901" readonly="no">
<descr>
<p>The index of this row, relative to the current section (<code>THEAD</code>,<code>TFOOT</code>, or<code>TBODY</code>).</p>
</descr>
</attribute>
<attribute type="HTMLCollection" name="cells" id="ID-67349879" readonly="no">
<descr>
<p>The collection of cells in this row.</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-74098257" readonly="no">
<descr>
<p>Horizontal alignment of data within cells of this row. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-TD" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="bgColor" id="ID-18161327" readonly="no">
<descr>
<p>Background color for rows. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor" form="simple" show="embed" actuate="auto">bgcolor attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="ch" id="ID-16230502" readonly="no">
<descr>
<p>Alignment character for cells in a column. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-char" form="simple" show="embed" actuate="auto">char attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="chOff" id="ID-68207461" readonly="no">
<descr>
<p>Offset of alignment character. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-charoff" form="simple" show="embed" actuate="auto">charoff attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vAlign" id="ID-90000058" readonly="no">
<descr>
<p>Vertical alignment of data within cells of this row. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-valign" form="simple" show="embed" actuate="auto">valign attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<method name="insertCell" id="ID-68927016">
<descr>
<p>Insert an empty<code>TD</code>cell into this row.</p>
</descr>
<parameters>
<param id="ID-20576436" name="index" type="long" attr="in">
<descr>
<p>The place to insert the cell.</p>
</descr>
</param>
</parameters>
<returns type="HTMLElement">
<descr>
<p>The newly created cell.</p>
</descr>
</returns>
<raises/>
</method>
<method name="deleteCell" id="ID-11738598">
<descr>
<p>Delete a cell from the current row.</p>
</descr>
<parameters>
<param id="ID-63209996" name="index" type="long" attr="in">
<descr>
<p>The index of the cell to delete.</p>
</descr>
</param>
</parameters>
<returns type="void">
<descr>
<p/>
</descr>
</returns>
<raises/>
</method>
</interface>
<interface name="HTMLTableCellElement" inherits="HTMLElement" id="ID-82915075">
<descr>
<p>The object used to represent the<code>TH</code>and<code>TD</code>elements. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TD" form="simple" show="embed" actuate="auto">TD element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="long" name="cellIndex" id="ID-80748363" readonly="no">
<descr>
<p>The index of this cell in the row.</p>
</descr>
</attribute>
<attribute type="DOMString" name="abbr" id="ID-74444037" readonly="no">
<descr>
<p>Abbreviation for header cells. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-abbr" form="simple" show="embed" actuate="auto">abbr attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="align" id="ID-98433879" readonly="no">
<descr>
<p>Horizontal alignment of data in cell. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-align-TD" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="axis" id="ID-76554418" readonly="no">
<descr>
<p>Names group of related headers. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-axis" form="simple" show="embed" actuate="auto">axis attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="bgColor" id="ID-88135431" readonly="no">
<descr>
<p>Cell background color. See the<loc href="http://www.w3.org/TR/REC-html40/present/graphics.html#adef-bgcolor" form="simple" show="embed" actuate="auto">bgcolor attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="ch" id="ID-30914780" readonly="no">
<descr>
<p>Alignment character for cells in a column. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-char" form="simple" show="embed" actuate="auto">char attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="chOff" id="ID-20144310" readonly="no">
<descr>
<p>Offset of alignment character. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-charoff" form="simple" show="embed" actuate="auto">charoff attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="colSpan" id="ID-84645244" readonly="no">
<descr>
<p>Number of columns spanned by cell. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-colspan" form="simple" show="embed" actuate="auto">colspan attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="headers" id="ID-89104817" readonly="no">
<descr>
<p>List of<code>id</code>attribute values for header cells. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-headers" form="simple" show="embed" actuate="auto">headers attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="height" id="ID-83679212" readonly="no">
<descr>
<p>Cell height. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-height-TH" form="simple" show="embed" actuate="auto">height attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="noWrap" id="ID-62922045" readonly="no">
<descr>
<p>Suppress word wrapping. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-nowrap" form="simple" show="embed" actuate="auto">nowrap attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="long" name="rowSpan" id="ID-48237625" readonly="no">
<descr>
<p>Number of rows spanned by cell. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-rowspan" form="simple" show="embed" actuate="auto">rowspan attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="scope" id="ID-36139952" readonly="no">
<descr>
<p>Scope covered by header cells. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-scope" form="simple" show="embed" actuate="auto">scope attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="vAlign" id="ID-58284221" readonly="no">
<descr>
<p>Vertical alignment of data in cell. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-valign" form="simple" show="embed" actuate="auto">valign attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-27480795" readonly="no">
<descr>
<p>Cell width. See the<loc href="http://www.w3.org/TR/REC-html40/struct/tables.html#adef-width-TH" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLFrameSetElement" inherits="HTMLElement" id="ID-43829095">
<descr>
<p>Create a grid of frames. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#edef-FRAMESET" form="simple" show="embed" actuate="auto">FRAMESET element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="cols" id="ID-98869594" readonly="no">
<descr>
<p>The number of columns of frames in the frameset. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-cols-FRAMESET" form="simple" show="embed" actuate="auto">cols attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="rows" id="ID-19739247" readonly="no">
<descr>
<p>The number of rows of frames in the frameset. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-rows-FRAMESET" form="simple" show="embed" actuate="auto">rows attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLFrameElement" inherits="HTMLElement" id="ID-97790553">
<descr>
<p>Create a frame. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#edef-FRAME" form="simple" show="embed" actuate="auto">FRAME element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="frameBorder" id="ID-11858633" readonly="no">
<descr>
<p>Request frame borders. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-frameborder" form="simple" show="embed" actuate="auto">frameborder attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="longDesc" id="ID-7836998" readonly="no">
<descr>
<p>URI designating a long description of this image or frame. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-longdesc-FRAME" form="simple" show="embed" actuate="auto">longdesc attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="marginHeight" id="ID-55569778" readonly="no">
<descr>
<p>Frame margin height, in pixels. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginheight" form="simple" show="embed" actuate="auto">marginheight attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="marginWidth" id="ID-8369969" readonly="no">
<descr>
<p>Frame margin width, in pixels. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginwidth" form="simple" show="embed" actuate="auto">marginwidth attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-91128709" readonly="no">
<descr>
<p>The frame name (object of the<code>target</code>attribute). See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-name-FRAME" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="boolean" name="noResize" id="ID-80766578" readonly="no">
<descr>
<p>When true, forbid user from resizing frame. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-noresize" form="simple" show="embed" actuate="auto">noresize attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="scrolling" id="ID-45411424" readonly="no">
<descr>
<p>Specify whether or not the frame should have scrollbars. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-scrolling" form="simple" show="embed" actuate="auto">scrolling attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="src" id="ID-78799535" readonly="no">
<descr>
<p>A URI designating the initial frame contents. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-src-FRAME" form="simple" show="embed" actuate="auto">src attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
<interface name="HTMLIFrameElement" inherits="HTMLElement" id="ID-50708718">
<descr>
<p>Inline subwindows. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#edef-IFRAME" form="simple" show="embed" actuate="auto">IFRAME element definition</loc>in HTML 4.0.</p>
</descr>
<attribute type="DOMString" name="align" id="ID-11309947" readonly="no">
<descr>
<p>Aligns this object (vertically or horizontally) with respect to its surrounding text. See the<loc href="http://www.w3.org/TR/REC-html40/struct/objects.html#adef-align-IMG" form="simple" show="embed" actuate="auto">align attribute definition</loc>in HTML 4.0. This attribute is deprecated in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="frameBorder" id="ID-22463410" readonly="no">
<descr>
<p>Request frame borders. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-frameborder" form="simple" show="embed" actuate="auto">frameborder attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="height" id="ID-1678118" readonly="no">
<descr>
<p>Frame height. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-height-IFRAME" form="simple" show="embed" actuate="auto">height attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="longDesc" id="ID-70472105" readonly="no">
<descr>
<p>URI designating a long description of this image or frame. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-longdesc-IFRAME" form="simple" show="embed" actuate="auto">longdesc attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="marginHeight" id="ID-91371294" readonly="no">
<descr>
<p>Frame margin height, in pixels. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginheight" form="simple" show="embed" actuate="auto">marginheight attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="marginWidth" id="ID-66486595" readonly="no">
<descr>
<p>Frame margin width, in pixels. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-marginwidth" form="simple" show="embed" actuate="auto">marginwidth attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="name" id="ID-96819659" readonly="no">
<descr>
<p>The frame name (object of the<code>target</code>attribute). See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-name-IFRAME" form="simple" show="embed" actuate="auto">name attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="scrolling" id="ID-36369822" readonly="no">
<descr>
<p>Specify whether or not the frame should have scrollbars. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-scrolling" form="simple" show="embed" actuate="auto">scrolling attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="src" id="ID-43933957" readonly="no">
<descr>
<p>A URI designating the initial frame contents. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-src-FRAME" form="simple" show="embed" actuate="auto">src attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
<attribute type="DOMString" name="width" id="ID-67133005" readonly="no">
<descr>
<p>Frame width. See the<loc href="http://www.w3.org/TR/REC-html40/present/frames.html#adef-width-IFRAME" form="simple" show="embed" actuate="auto">width attribute definition</loc>in HTML 4.0.</p>
</descr>
</attribute>
</interface>
</library>