summaryrefslogtreecommitdiff
path: root/test/dom3-events-interface.xml
blob: 4691c581688a9f6db118488fe0b58748243593f1 (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
<?xml version="1.0"?>
<!--
Copyright (c) 2002-2003 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 3 Events Specification-->
<library xmlns:xlink="http://www.w3.org/1999/xlink">
  <interface name="Event" id="Events-Event" since="DOM Level 2">
    <descr>
      <p>The<code>Event</code>interface is used to provide contextual information about an event to the listener processing the event. An object which implements the<code>Event</code>interface is passed as the parameter to an<code>EventListener</code>. More specific context information is passed to event listeners by deriving additional interfaces from<code>Event</code>which contain information directly relating to the type of event they represent. These derived interfaces are also implemented by the object passed to the event listener.</p>
      <p>To create an instance of the<code>Event</code>interface, use the<code>DocumentEvent.createEvent("Event")</code>method call.</p>
    </descr>
    <group id="Events-Event-eventPhaseType" name="PhaseType">
      <descr>
        <p>An integer indicating which phase of the event flow is being processed as defined in<specref ref="Events-flow"/>.</p>
      </descr>
      <constant name="CAPTURING_PHASE" id="CAPTURING_PHASE" type="unsigned short" value="1">
        <descr>
          <p>The current event phase is the<termref def="dt-capture-phase">capture phase</termref>.</p>
        </descr>
      </constant>
      <constant name="AT_TARGET" id="AT_TARGET" type="unsigned short" value="2">
        <descr>
          <p>The current event is in the<termref def="dt-capture-phase">target phase</termref>, i.e. it is being evaluated at the<termref def="dt-event-target">event target</termref>.</p>
        </descr>
      </constant>
      <constant name="BUBBLING_PHASE" id="BUBBLING_PHASE" type="unsigned short" value="3">
        <descr>
          <p>The current event phase is the<termref def="dt-bubbling-phase">bubbling phase</termref>.</p>
        </descr>
      </constant>
    </group>
    <attribute type="DOMString" name="type" readonly="yes" id="Events-Event-type">
      <descr>
        <p>The name should be anas defined in<bibref ref="Namespaces"/>and is case-sensitive.</p>
        <p>If the attribute<code>Event.namespaceURI</code>is different from<code>null</code>, this attribute represents a<termref def="dt-localname">local name</termref>.</p>
      </descr>
    </attribute>
    <attribute type="EventTarget" name="target" readonly="yes" id="Events-Event-target">
      <descr>
        <p>Used to indicate the<termref def="dt-event-target">event target</termref>. This attribute contains the<termref def="dt-target-node">target node</termref>when used with the<specref ref="Events-flow"/>.</p>
      </descr>
    </attribute>
    <attribute type="EventTarget" name="currentTarget" readonly="yes" id="Events-Event-currentTarget">
      <descr>
        <p>Used to indicate the<code>EventTarget</code>whose<code>EventListeners</code>are currently being processed. This is particularly useful during the capture and bubbling phases. This attribute could contain the<termref def="dt-target-node">target node</termref>or a target ancestor when used with the<specref ref="Events-flow"/>.</p>
      </descr>
    </attribute>
    <attribute type="unsigned short" name="eventPhase" readonly="yes" id="Events-Event-eventPhase">
      <descr>
        <p>Used to indicate which phase of event flow is currently being accomplished.</p>
      </descr>
    </attribute>
    <attribute type="boolean" name="bubbles" readonly="yes" id="Events-Event-canBubble">
      <descr>
        <p>Used to indicate whether or not an event is a bubbling event. If the event can bubble the value is<code>true</code>, otherwise the value is<code>false</code>.</p>
      </descr>
    </attribute>
    <attribute type="boolean" name="cancelable" readonly="yes" id="Events-Event-canCancel">
      <descr>
        <p>Used to indicate whether or not an event can have its default action prevented (see also<specref ref="Events-flow-cancelation"/>). If the default action can be prevented the value is<code>true</code>, otherwise the value is<code>false</code>.</p>
      </descr>
    </attribute>
    <attribute type="DOMTimeStamp" name="timeStamp" readonly="yes" id="Events-Event-timeStamp">
      <descr>
        <p>Used to specify the time (in milliseconds relative to the epoch) at which the event was created. Due to the fact that some systems may not provide this information the value of<code>timeStamp</code>may be not available for all events. When not available, a value of<code>0</code>will be returned. Examples of epoch time are the time of the system start or 0:0:0 UTC 1st January 1970.</p>
      </descr>
    </attribute>
    <method name="stopPropagation" id="Events-Event-stopPropagation">
      <descr>
        <p>This method is used to prevent event listeners of the same group to be triggered but its effect is deferred until all event listeners attached on the<code>currentTarget</code>have been triggered (see<specref ref="Events-propagation-and-groups"/>). Once it has been called, further calls to that method have no additional effect.</p>
        <note>
          <p>This method does not prevent the default action from being invoked; use<code>preventDefault</code>for that effect.</p>
        </note>
      </descr>
      <parameters/>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="preventDefault" id="Events-Event-preventDefault">
      <descr>
        <p>If an event is cancelable, the<code>preventDefault</code>method is used to signify that the event is to be canceled, meaning any default action normally taken by the implementation as a result of the event will not occur (see also<specref ref="Events-flow-cancelation"/>), and thus independently of event groups. Calling this method for a non-cancelable event has no effect.</p>
        <note>
          <p>This method does not stop the event propagation; use<code>stopPropagation</code>or<code>stopImmediatePropagation</code>for that effect.</p>
        </note>
      </descr>
      <parameters/>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initEvent" id="Events-Event-initEvent">
      <descr>
        <p>The<code>initEvent</code>method is used to initialize the value of an<code>Event</code>created through the<code>DocumentEvent.createEvent</code>method. This method may only be called before the<code>Event</code>has been dispatched via the<code>EventTarget.dispatchEvent()</code>method. If the method is called several times before invoking<code>EventTarget.dispatchEvent</code>, only the final invocation takes precedence. This method has no effect if called after the event has been dispatched. If called from a subclass of the<code>Event</code>interface only the values specified in this method are modified, all other attributes are left unchanged.</p>
        <p>This method sets the<code>Event.type</code>attribute to<code>eventTypeArg</code>, and<code>Event.namespaceURI</code>to<code>null</code>. To initialize an event with a namespace URI, use the<code>Event.initEventNS(namespaceURIArg, eventTypeArg, ...)</code>method.</p>
      </descr>
      <parameters>
        <param name="eventTypeArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>Event.type</code>.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Specifies<code>Event.bubbles</code>. This parameter overrides the intrinsic bubbling behavior of the event.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Specifies<code>Event.cancelable</code>. This parameter overrides the intrinsic cancelable behavior of the event.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <attribute readonly="yes" type="DOMString" name="namespaceURI" id="Events-Event-namespaceURI" since="DOM Level 3">
      <descr>
        <p>The<termref def="dt-namespaceURI">namespace URI</termref>associated with this event at creation time, or<code>null</code>if it is unspecified.</p>
        <p>For events initialized with a DOM Level 2 Events method, such as<code>Event.initEvent()</code>, this is always<code>null</code>.</p>
      </descr>
    </attribute>
    <method name="isCustom" id="Events-Event-isCustom" since="DOM Level 3">
      <descr>
        <p>This method will always return<code>false</code>, unless the event implements the<code>CustomEvent</code>interface.</p>
      </descr>
      <parameters/>
      <returns type="boolean">
        <descr>
          <p><code>false</code>, unless the event object implements the<code>CustomEvent</code>interface.</p>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="stopImmediatePropagation" id="Events-Event-stopImmediatePropagation" since="DOM Level 3">
      <descr>
        <p>This method is used to prevent event listeners of the same group to be triggered and, unlike<code>stopPropagation</code>its effect is immediate (see<specref ref="Events-propagation-and-groups"/>). Once it has been called, further calls to that method have no additional effect.</p>
        <note>
          <p>This method does not prevent the default action from being invoked; use<code>Event.preventDefault()</code>for that effect.</p>
        </note>
      </descr>
      <parameters/>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="isDefaultPrevented" id="Events-Event-isDefaultPrevented" since="DOM Level 3">
      <descr>
        <p>This method will return<code>true</code>if the method<code>Event.preventDefault()</code>has been called for this event,<code>false</code>otherwise.</p>
      </descr>
      <parameters/>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if<code>Event.preventDefault()</code>has been called for this event.</p>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initEventNS" id="Events-Event-initEventNS" since="DOM Level 3">
      <descr>
        <p>The<code>initEventNS</code>method is used to initialize the value of an<code>Event</code>object and has the same behavior as<code>Event.initEvent()</code>.</p>
      </descr>
      <parameters>
        <param name="namespaceURIArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>Event.namespaceuRI</code>, the<termref def="dt-namespaceURI">namespace URI</termref>associated with this event, or<code>null</code>if no namespace.</p>
          </descr>
        </param>
        <param name="eventTypeArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>Event.type</code>, the<termref def="dt-localname">local name</termref>of the event type.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="EventTarget" id="Events-EventTarget" since="DOM Level 2">
    <descr>
      <p>The<code>EventTarget</code>interface is implemented by all the objects which could be<termref def="dt-event-target">event targets</termref>in an implementation which supports the<specref ref="Events-flows"/>. The interface allows registration, removal or query of event listeners, and dispatch of events to an event target.</p>
      <p>When used with<specref ref="Events-flow"/>, this interface is implemented by all<termref def="dt-target-node">target nodes</termref>and target ancestors, i.e. all DOM<code>Nodes</code>of the tree support this interface when the implementation conforms to DOM Level 3 Events and, therefore, this interface can be obtained by using binding-specific casting methods on an instance of the<code>Node</code>interface.</p>
      <p>Invoking<code>addEventListener</code>or<code>addEventListenerNS</code>multiple times on the same<code>EventTarget</code>with the same parameters (<code>namespaceURI</code>,<code>type</code>,<code>listener</code>, and<code>useCapture</code>) is considered to be a no-op and thus independently of the event group. They do not cause the<code>EventListener</code>to be called more than once and do not cause a change in the triggering order. In order to guarantee that an event listener will be added to the event target for the specified event group, one needs to invoke<code>removeEventListener</code>or<code>removeEventListenerNS</code>first.</p>
    </descr>
    <method name="addEventListener" id="Events-EventTarget-addEventListener">
      <descr>
        <p>This method allows the registration of an event listener in the default group and, depending on the<code>useCapture</code>parameter, on the capture phase of the DOM event flow or its target and bubbling phases.</p>
      </descr>
      <parameters>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>associated with the event for which the user is registering.</p>
          </descr>
        </param>
        <param name="listener" type="EventListener" attr="in">
          <descr>
            <p>The<code>listener</code>parameter takes an object implemented by the user which implements the<code>EventListener</code>interface and contains the method to be called when the event occurs.</p>
          </descr>
        </param>
        <param name="useCapture" type="boolean" attr="in">
          <descr>
            <p>If true,<code>useCapture</code>indicates that the user wishes to add the event listener for the<termref def="dt-capture-phase">capture phase</termref>only, i.e. this event listener will not be triggered during the<termref def="dt-target-phase">target</termref>and<termref def="dt-bubbling-phase">bubbling</termref>phases. If<code>false</code>, the event listener will only be triggered during the target and bubbling phases.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="removeEventListener" id="Events-EventTarget-removeEventListener">
      <descr>
        <p>This method allows the removal of event listeners from the default group.</p>
        <p>Calling<code>removeEventListener</code>with arguments which do not identify any currently registered<code>EventListener</code>on the<code>EventTarget</code>has no effect.</p>
      </descr>
      <parameters>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>for which the user registered the event listener.</p>
          </descr>
        </param>
        <param name="listener" type="EventListener" attr="in">
          <descr>
            <p>The<code>EventListener</code>to be removed.</p>
          </descr>
        </param>
        <param name="useCapture" type="boolean" attr="in">
          <descr>
            <p>Specifies whether the<code>EventListener</code>being removed was registered for the capture phase or not. If a listener was registered twice, once for the capture phase and once for the target and bubbling phases, each must be removed separately. Removal of an event listener registered for the capture phase does not affect the same event listener registered for the target and bubbling phases, and vice versa.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="dispatchEvent" id="Events-EventTarget-dispatchEvent" version="DOM Level 3">
      <descr>
        <p>This method allows the dispatch of events into the implementation's event model. The<termref def="dt-event-target">event target</termref>of the event is the<code>EventTarget</code>object on which<code>dispatchEvent</code>is called.</p>
      </descr>
      <parameters>
        <param name="evt" type="Event" attr="in">
          <descr>
            <p>The event to be dispatched.</p>
          </descr>
        </param>
      </parameters>
      <returns type="boolean">
        <descr>
          <p>Indicates whether any of the listeners which handled the event called<code>Event.preventDefault()</code>. If<code>Event.preventDefault()</code>was called the returned value is<code>false</code>, else it is<code>true</code>.</p>
        </descr>
      </returns>
      <raises>
        <exception name="EventException">
          <descr>
            <p>UNSPECIFIED_EVENT_TYPE_ERR: Raised if the<code>Event.type</code>was not specified by initializing the event before<code>dispatchEvent</code>was called. Specification of the<code>Event.type</code>as<code>null</code>or an empty string will also trigger this exception.</p>
            <p>DISPATCH_REQUEST_ERR: Raised if the<code>Event</code>object is already being dispatched in the tree.</p>
            <p>NOT_SUPPORTED_ERR: Raised if the<code>Event</code>object has not been created using<code>DocumentEvent.createEvent()</code>or does not support the interface<code>CustomEvent</code>.</p>
          </descr>
        </exception>
      </raises>
    </method>
    <method name="addEventListenerNS" id="Events-EventTargetGroup-addEventListenerNS" since="DOM Level 3">
      <descr>
        <p>This method allows the registration of an event listener in a specified group or the default group and, depending on the<code>useCapture</code>parameter, on the capture phase of the DOM event flow or its target and bubbling phases.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.namespaceURI</code>associated with the event for which the user is registering.</p>
          </descr>
        </param>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>associated with the event for which the user is registering.</p>
          </descr>
        </param>
        <param name="listener" type="EventListener" attr="in">
          <descr>
            <p>The<code>listener</code>parameter takes an object implemented by the user which implements the<code>EventListener</code>interface and contains the method to be called when the event occurs.</p>
          </descr>
        </param>
        <param name="useCapture" type="boolean" attr="in">
          <descr>
            <p>If true,<code>useCapture</code>indicates that the user wishes to add the event listener for the<termref def="dt-capture-phase">capture phase</termref>only, i.e. this event listener will not be triggered during the<termref def="dt-target-phase">target</termref>and<termref def="dt-bubbling-phase">bubbling</termref>phases. If<code>false</code>, the event listener will only be triggered during the target and bubbling phases.</p>
          </descr>
        </param>
        <param name="evtGroup" type="DOMObject" attr="in">
          <descr>
            <p>The object that represents the event group to associate with the<code>EventListener</code>(see also<specref ref="Events-propagation-and-groups"/>). Use<code>null</code>to attach the event listener to the default group.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr/>
      </returns>
      <raises/>
    </method>
    <method name="removeEventListenerNS" id="Events-EventTargetGroup-removeEventListenerNS" since="DOM Level 3">
      <descr>
        <p>This method allows the removal of an event listener, independently of the associated event group.</p>
        <p>Calling<code>removeEventListenerNS</code>with arguments which do not identify any currently registered<code>EventListener</code>on the<code>EventTarget</code>has no effect.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.namespaceURI</code>associated with the event for which the user registered the event listener.</p>
          </descr>
        </param>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>associated with the event for which the user registered the event listener.</p>
          </descr>
        </param>
        <param name="listener" type="EventListener" attr="in">
          <descr>
            <p>The<code>EventListener</code>parameter indicates the<code>EventListener</code>to be removed.</p>
          </descr>
        </param>
        <param name="useCapture" type="boolean" attr="in">
          <descr>
            <p>Specifies whether the<code>EventListener</code>being removed was registered for the capture phase or not. If a listener was registered twice, once for the capture phase and once for the target and bubbling phases, each must be removed separately. Removal of an event listener registered for the capture phase does not affect the same event listener registered for the target and bubbling phases, and vice versa.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="willTriggerNS" since="DOM Level 3" id="Events3-willTriggerNS">
      <descr>
        <p>This method allows the DOM application to know if an event listener, attached to this<code>EventTarget</code>or one of its ancestors, will be triggered by the specified event type during the dispatch of the event to this event target or one of its descendants.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.namespaceURI</code>associated with the event.</p>
          </descr>
        </param>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>associated with the event.</p>
          </descr>
        </param>
      </parameters>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if an event listener will be triggered on the<code>EventTarget</code>with the specified event type,<code>false</code>otherwise.</p>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="hasEventListenerNS" since="DOM Level 3" id="Events3-hasEventListenerNS">
      <descr>
        <p>This method allows the DOM application to know if this<code>EventTarget</code>contains an event listener registered for the specified event type. This is useful for determining at which nodes within a hierarchy altered handling of specific event types has been introduced, but should not be used to determine whether the specified event type triggers an event listener (see<code>EventTarget.willTriggerNS()</code>).</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.namespaceURI</code>associated with the event.</p>
          </descr>
        </param>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>associated with the event.</p>
          </descr>
        </param>
      </parameters>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if an event listener is registered on this<code>EventTarget</code>for the specified event type,<code>false</code>otherwise.</p>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface id="Events-EventListener" name="EventListener" since="DOM Level 2" role="ecmascript-function">
    <descr>
      <p>The<code>EventListener</code>interface is the primary way for handling events. Users implement the<code>EventListener</code>interface and register their event listener on an<code>EventTarget</code>. The users should also remove their<code>EventListener</code>from its<code>EventTarget</code>after they have completed using the listener.</p>
      <p>Copying a<code>Node</code>, with methods such as<code>Node.cloneNode</code>or<code>Range.cloneContents</code>, does not copy the event listeners attached to it. Event listeners must be attached to the newly created<code>Node</code>afterwards if so desired.</p>
      <p>Moving a<code>Node</code>, with methods<code>Document.adoptNode</code>,<code>Node.appendChild</code>, or<code>Range.extractContents</code>, does not affect the event listeners attached to it.</p>
    </descr>
    <method name="handleEvent" id="Events-EventListener-handleEvent">
      <descr>
        <p>This method is called whenever an event occurs of the event type for which the<code>EventListener</code>interface was registered.</p>
      </descr>
      <parameters>
        <param name="evt" type="Event" attr="in">
          <descr>
            <p>The<code>Event</code>contains contextual information about the<termref def="dt-event">event</termref>.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <exception id="Events-EventException" name="EventException" since="DOM Level 2">
    <descr>
      <p>Event operations may throw an<code>EventException</code>as specified in their method descriptions.</p>
    </descr>
    <component id="Events-EventException-code" name="code">
      <typename>unsigned short</typename>
    </component>
  </exception>
  <group id="Events-EventException-EventExceptionCode" name="EventExceptionCode" since="DOM Level 2">
    <descr>
      <p>An integer indicating the type of error generated.</p>
    </descr>
    <constant name="UNSPECIFIED_EVENT_TYPE_ERR" id="UNSPECIFIED_EVENT_TYPE_ERR" type="unsigned short" value="0">
      <descr>
        <p>If the<code>Event.type</code>was not specified by initializing the event before the method was called. Specification of the<code>Event.type</code>as<code>null</code>or an empty string will also trigger this exception.</p>
      </descr>
    </constant>
    <constant name="DISPATCH_REQUEST_ERR" id="DISPATCH_REQUEST_ERR" type="unsigned short" value="1" since="DOM Level 3">
      <descr>
        <p>If the<code>Event</code>object is already dispatched in the tree.</p>
      </descr>
    </constant>
  </group>
  <interface name="DocumentEvent" id="Events-DocumentEvent" since="DOM Level 2">
    <descr>
      <p>The<code>DocumentEvent</code>interface provides a mechanism by which the user can create an<code>Event</code>object of a type supported by the implementation. If the feature "Events" is supported by the<code>Document</code>object, the<code>DocumentEvent</code>interface must be implemented on the same object. If the feature "+Events" is supported by the<code>Document</code>object, an object that supports the<code>DocumentEvent</code>interface must be returned by invoking the method<code>Node.getFeature("+Events", "3.0")</code>on the<code>Document</code>object.</p>
    </descr>
    <method name="createEvent" id="Events-DocumentEvent-createEvent">
      <descr>
        <p/>
      </descr>
      <parameters>
        <param name="eventType" type="DOMString" attr="in">
          <descr>
            <p>The<code>eventType</code>parameter specifies the name of the DOM Events interface to be supported by the created event object, e.g.<code>"Event"</code>,<code>"MouseEvent"</code>,<code>"MutationEvent"</code>and so on. If the<code>Event</code>is to be dispatched via the<code>EventTarget.dispatchEvent()</code>method the appropriate event init method must be called after creation in order to initialize the<code>Event</code>'s values.</p>
            <p>As an example, a user wishing to synthesize some kind of<code>UIEvent</code>would invoke<code>DocumentEvent.createEvent("UIEvent")</code>. The<code>UIEvent.initUIEventNS()</code>method could then be called on the newly created<code>UIEvent</code>object to set the specific type of user interface event to be dispatched,<code>{"http://www.w3.org/2001/xml-events", "DOMActivate"}</code>for example, and set its context information, e.g.<code>UIEvent.detail</code>in this example.</p>
            <p>The<code>createEvent</code>method is used in creating<code>Event</code>s when it is either inconvenient or unnecessary for the user to create an<code>Event</code>themselves. In cases where the implementation provided<code>Event</code>is insufficient, users may supply their own<code>Event</code>implementations for use with the<code>EventTarget.dispatchEvent()</code>method. However, the DOM implementation needs access to the attributes<code>Event.currentTarget</code>and<code>Event.eventPhase</code>to appropriately propagate the event in the DOM tree. Therefore users'<code>Event</code>implementations might need to support the<code>CustomEvent</code>interface for that effect.</p>
            <note>
              <p>For backward compatibility reason, "UIEvents", "MouseEvents", "MutationEvents", and "HTMLEvents" feature names are valid values for the parameter<code>eventType</code>and represent respectively the interfaces "UIEvent", "MouseEvent", "MutationEvent", and "Event".</p>
            </note>
          </descr>
        </param>
      </parameters>
      <returns type="Event">
        <descr>
          <p>The newly created event object.</p>
        </descr>
      </returns>
      <raises>
        <exception name="DOMException">
          <descr>
            <p>NOT_SUPPORTED_ERR: Raised if the implementation does not support the<code>Event</code>interface requested.</p>
          </descr>
        </exception>
      </raises>
    </method>
    <method name="canDispatch" id="Events-DocumentEvent-canDispatch" since="DOM Level 3">
      <descr>
        <p>Test if the implementation can generate events of a specified type.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.namespaceURI</code>of the event.</p>
          </descr>
        </param>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Specifies the<code>Event.type</code>of the event.</p>
          </descr>
        </param>
      </parameters>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if the implementation can generate and dispatch this event type,<code>false</code>otherwise.</p>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="CustomEvent" inherits="Event" id="Events-CustomEvent" since="DOM Level 3">
    <descr>
      <p>The<code>CustomEvent</code>interface gives access to the attributes<code>Event.currentTarget</code>and<code>Event.eventPhase</code>. It is intended to be used by the DOM Events implementation to access the underlying current target and event phase while dispatching a custom<code>Event</code>in the tree; it is also intended to be implemented, and<emph>not used</emph>, by DOM applications.</p>
      <p>The methods contained in this interface are not intended to be used by a DOM application, especially during the dispatch on the<code>Event</code>object. Changing the current target or the current phase may result in unpredictable results of the event flow. The DOM Events implementation should ensure that both methods return the appropriate current target and phase before invoking each event listener on the current target to protect DOM applications from malicious event listeners.</p>
      <note>
        <p>If this interface is supported by the event object,<code>Event.isCustom()</code>must return<code>true</code>.</p>
      </note>
    </descr>
    <method name="setDispatchState" id="Events-CustomEvent-setCurrentTarget">
      <descr>
        <p>The<code>setDispatchState</code>method is used by the DOM Events implementation to set the values of<code>Event.currentTarget</code>and<code>Event.eventPhase</code>. It also reset the states of<code>isPropagationStopped</code>and<code>isImmediatePropagationStopped</code>.</p>
      </descr>
      <parameters>
        <param name="target" type="EventTarget" attr="in">
          <descr>
            <p>Specifies the new value for the<code>Event.currentTarget</code>attribute.</p>
          </descr>
        </param>
        <param name="phase" type="unsigned short" attr="in">
          <descr>
            <p>Specifies the new value for the<code>Event.eventPhase</code>attribute.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr/>
      </returns>
      <raises/>
    </method>
    <method name="isPropagationStopped" id="Events-Event-isPropagationStopped">
      <descr>
        <p>This method will return<code>true</code>if the method<code>stopPropagation()</code>has been called for this event,<code>false</code>in any other cases.</p>
      </descr>
      <parameters/>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if the event propagation has been stopped in the current group.</p>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="isImmediatePropagationStopped" id="Events-Event-isImmediatePropagationStopped">
      <descr>
        <p>The<code>isImmediatePropagationStopped</code>method is used by the DOM Events implementation to know if the method<code>stopImmediatePropagation()</code>has been called for this event. It returns<code>true</code>if the method has been called,<code>false</code>otherwise.</p>
      </descr>
      <parameters/>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if the event propagation has been stopped immediately in the current group.</p>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="UIEvent" inherits="Event" id="Events-UIEvent" since="DOM Level 2">
    <descr>
      <p>The<code>UIEvent</code>interface provides specific contextual information associated with User Interface events.</p>
      <p>To create an instance of the<code>UIEvent</code>interface, use the<code>DocumentEvent.createEvent("UIEvent")</code>method call.</p>
    </descr>
    <attribute type="views::AbstractView" name="view" readonly="yes" id="Events-UIEvent-view">
      <descr>
        <p>The<code>view</code>attribute identifies the<code>AbstractView</code>from which the event was generated.</p>
      </descr>
    </attribute>
    <attribute id="Events-UIEvent-detail" name="detail" type="long" readonly="yes">
      <descr>
        <p>Specifies some detail information about the<code>Event</code>, depending on the type of event.</p>
      </descr>
    </attribute>
    <method name="initUIEvent" id="Events-Event-initUIEvent">
      <descr>
        <p>The<code>initUIEvent</code>method is used to initialize the value of a<code>UIEvent</code>object and has the same behavior as<code>Event.initEvent()</code>.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Specifies<code>UIEvent.view</code>.</p>
          </descr>
        </param>
        <param name="detailArg" type="long" attr="in">
          <descr>
            <p>Specifies<code>UIEvent.detail</code>.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initUIEventNS" id="Events-Event-initUIEventNS" since="DOM Level 3">
      <descr>
        <p>The<code>initUIEventNS</code>method is used to initialize the value of a<code>UIEvent</code>object and has the same behavior as<code>Event.initEventNS()</code>.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="detailArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="TextEvent" inherits="UIEvent" id="Events-TextEvent" since="DOM Level 3">
    <descr>
      <p>The<code>TextEvent</code>interface provides specific contextual information associated with Text Events.</p>
      <p>To create an instance of the<code>TextEvent</code>interface, use the<code>DocumentEvent.createEvent("TextEvent")</code>method call.</p>
    </descr>
    <attribute type="DOMString" name="data" id="Events-UIEvent-data" readonly="yes">
      <descr>
        <p><code>data</code>holds the value of the characters generated by the character device. This may be a single Unicode character or a non-empty sequence of Unicode characters<bibref ref="Unicode"/>. Characters should be normalized as defined by the Unicode normalization form<term>NFC</term>, defined in<bibref ref="UnicodeNormalization"/>. This attribute cannot be null or contain the empty string.</p>
      </descr>
    </attribute>
    <method name="initTextEvent" id="Events-Event-initTextEvent">
      <descr>
        <p>The<code>initTextEvent</code>method is used to initialize the value of a<code>TextEvent</code>object and has the same behavior as<code>UIEvent.initUIEvent()</code>. The value of<code>UIEvent.detail</code>remains undefined.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="dataArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>TextEvent.data</code>.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr/>
      </returns>
      <raises/>
    </method>
    <method name="initTextEventNS" id="Events-Event-initTextEventNS">
      <descr>
        <p>The<code>initTextEventNS</code>method is used to initialize the value of a<code>TextEvent</code>object and has the same behavior as<code>UIEvent.initUIEventNS()</code>. The value of<code>UIEvent.detail</code>remains undefined.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="type" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="dataArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>TextEvent.initTextEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr/>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="MouseEvent" inherits="UIEvent" id="Events-MouseEvent" since="DOM Level 2">
    <descr>
      <p>The<code>MouseEvent</code>interface provides specific contextual information associated with Mouse events.</p>
      <p>In the case of nested elements mouse events are always targeted at the most deeply nested element. Ancestors of the targeted element may use bubbling to obtain notification of mouse events which occur within theirs descendent elements.</p>
      <p>To create an instance of the<code>MouseEvent</code>interface, use the<code>DocumentEvent.createEvent("MouseEvent")</code>method call.</p>
      <note>
        <p>When initializing<code>MouseEvent</code>objects using<code>initMouseEvent</code>or<code>initMouseEventNS</code>, implementations should use the client coordinates<code>clientX</code>and<code>clientY</code>for calculation of other coordinates (such as target coordinates exposed by<termref def="dt-DOM-Level-0">DOM Level 0</termref>implementations).</p>
      </note>
    </descr>
    <attribute type="long" name="screenX" readonly="yes" id="Events-MouseEvent-screenX">
      <descr>
        <p>The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.</p>
      </descr>
    </attribute>
    <attribute type="long" name="screenY" readonly="yes" id="Events-MouseEvent-screenY">
      <descr>
        <p>The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.</p>
      </descr>
    </attribute>
    <attribute type="long" name="clientX" readonly="yes" id="Events-MouseEvent-clientX">
      <descr>
        <p>The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.</p>
      </descr>
    </attribute>
    <attribute type="long" name="clientY" readonly="yes" id="Events-MouseEvent-clientY">
      <descr>
        <p>The vertical coordinate at which the event occurred relative to the DOM implementation's client area.</p>
      </descr>
    </attribute>
    <attribute type="boolean" name="ctrlKey" readonly="yes" id="Events-MouseEvent-ctrlKey">
      <descr>
        <p><code>true</code>if the control (Ctrl) key modifier is activated.</p>
      </descr>
    </attribute>
    <attribute type="boolean" name="shiftKey" readonly="yes" id="Events-MouseEvent-shiftKey">
      <descr>
        <p><code>true</code>if the shift (Shift) key modifier is activated.</p>
      </descr>
    </attribute>
    <attribute type="boolean" name="altKey" readonly="yes" id="Events-MouseEvent-altKey">
      <descr>
        <p><code>true</code>if the alt (alternative) key modifier is activated.</p>
        <note>
          <p>The Option key modifier on Macintosh systems must be represented using this key modifier.</p>
        </note>
      </descr>
    </attribute>
    <attribute type="boolean" name="metaKey" readonly="yes" id="Events-MouseEvent-metaKey">
      <descr>
        <p><code>true</code>if the meta (Meta) key modifier is activated.</p>
        <note>
          <p>The Command key modifier on Macintosh system must be represented using this meta key.</p>
        </note>
      </descr>
    </attribute>
    <attribute type="unsigned short" name="button" readonly="yes" id="Events-MouseEvent-button">
      <descr>
        <p>During mouse events caused by the depression or release of a mouse button,<code>button</code>is used to indicate which mouse button changed state.<code>0</code>indicates the normal button of the mouse (in general on the left or the one button on Macintosh mice, used to activate a button or select text).<code>2</code>indicates the contextual property (in general on the right, used to display a context menu) button of the mouse if present.<code>1</code>indicates the extra (in general in the middle and often combined with the mouse wheel) button. Some mice may provide or simulate more buttons, and values higher than<code>2</code>can be used to represent such buttons.</p>
      </descr>
    </attribute>
    <attribute type="EventTarget" name="relatedTarget" readonly="yes" id="Events-MouseEvent-relatedTarget">
      <descr>
        <p>Used to identify a secondary<code>EventTarget</code>related to a UI event. Currently this attribute is used with the mouseover event to indicate the<code>EventTarget</code>which the pointing device exited and with the mouseout event to indicate the<code>EventTarget</code>which the pointing device entered.</p>
      </descr>
    </attribute>
    <method name="initMouseEvent" id="Events-Event-initMouseEvent">
      <descr>
        <p>The<code>initMouseEvent</code>method is used to initialize the value of a<code>MouseEvent</code>object and has the same behavior as<code>UIEvent.initUIEvent()</code>.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="detailArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="screenXArg" type="long" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.screenX</code>.</p>
          </descr>
        </param>
        <param name="screenYArg" type="long" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.screenY</code>.</p>
          </descr>
        </param>
        <param name="clientXArg" type="long" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.clientX</code>.</p>
          </descr>
        </param>
        <param name="clientYArg" type="long" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.clientY</code>.</p>
          </descr>
        </param>
        <param name="ctrlKeyArg" type="boolean" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.ctrlKey</code>.</p>
          </descr>
        </param>
        <param name="altKeyArg" type="boolean" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.altKey</code>.</p>
          </descr>
        </param>
        <param name="shiftKeyArg" type="boolean" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.shiftKey</code>.</p>
          </descr>
        </param>
        <param name="metaKeyArg" type="boolean" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.metaKey</code>.</p>
          </descr>
        </param>
        <param name="buttonArg" type="unsigned short" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.button</code>.</p>
          </descr>
        </param>
        <param name="relatedTargetArg" type="EventTarget" attr="in">
          <descr>
            <p>Specifies<code>MouseEvent.relatedTarget</code>.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method id="Events-MouseEvent-getModifierState" name="getModifierState" since="DOM Level 3">
      <descr>
        <p>This methods queries the state of a modifier using a key identifier. See also<specref ref="Modifiers"/>.</p>
      </descr>
      <parameters>
        <param name="keyIdentifierArg" type="DOMString" attr="in">
          <descr>
            <p>A modifier key identifier, as defined by the<code>KeyboardEvent.keyIdentifier</code>attribute. Common modifier keys are<code>"Alt"</code>,<code>"AltGraph"</code>,<code>"CapsLock"</code>,<code>"Control"</code>,<code>"Meta"</code>,<code>"NumLock"</code>,<code>"Scroll"</code>, or<code>"Shift"</code>.</p>
            <note>
              <p>If an application wishes to distinguish between right and left modifiers, this information could be deduced using keyboard events and<code>KeyboardEvent.keyLocation</code>.</p>
            </note>
          </descr>
        </param>
      </parameters>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if it is modifier key and the modifier is activated,<code>false</code>otherwise.</p>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initMouseEventNS" id="Events-Event-initMouseEventNS" since="DOM Level 3">
      <descr>
        <p>The<code>initMouseEventNS</code>method is used to initialize the value of a<code>MouseEvent</code>object and has the same behavior as<code>UIEvent.initUIEventNS()</code>.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="detailArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="screenXArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>MouseEvent.initMouseEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="screenYArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>MouseEvent.initMouseEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="clientXArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>MouseEvent.initMouseEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="clientYArg" type="long" attr="in">
          <descr>
            <p>Refer to the<code>MouseEvent.initMouseEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="buttonArg" type="unsigned short" attr="in">
          <descr>
            <p>Refer to the<code>MouseEvent.initMouseEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="relatedTargetArg" type="EventTarget" attr="in">
          <descr>
            <p>Refer to the<code>MouseEvent.initMouseEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="modifiersList" type="DOMString" attr="in">
          <descr>
            <p>Aseparated list of modifier key identifiers to be activated on this object. As an example,<code>"Control Alt"</code>will activated the control and alt modifiers.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="KeyboardEvent" inherits="UIEvent" id="Events-KeyboardEvent" since="DOM Level 3">
    <descr>
      <p>The<code>KeyboardEvent</code>interface provides specific contextual information associated with keyboard devices. Each keyboard event references a key using an identifier. Keyboard events are commonly directed at the element that has the focus.</p>
      <p>The<code>KeyboardEvent</code>interface provides convenient attributes for some common modifiers keys:<code>KeyboardEvent.ctrlKey</code>,<code>KeyboardEvent.shiftKey</code>,<code>KeyboardEvent.altKey</code>,<code>KeyboardEvent.metaKey</code>. These attributes are equivalent to use the method<code>KeyboardEvent.getModifierState(keyIdentifierArg)</code>with "Control", "Shift", "Alt", or "Meta" respectively.</p>
      <p>To create an instance of the<code>KeyboardEvent</code>interface, use the<code>DocumentEvent.createEvent("KeyboardEvent")</code>method call.</p>
    </descr>
    <group id="ID-KeyboardEvent-KeyLocationCode" name="KeyLocationCode">
      <descr>
        <p>This set of constants is used to indicate the location of a key on the device. In case a DOM implementation wishes to provide a new location information, a value different from the following constant values must be used.</p>
      </descr>
      <constant name="DOM_KEY_LOCATION_STANDARD" id="DOM_KEY_LOCATION_STANDARD" type="unsigned long" value="0x00">
        <descr>
          <p>The key activation is not distinguished as the left or right version of the key, and did not originate from the numeric keypad (or did not originate with a virtual key corresponding to the numeric keypad). Example: the 'Q' key on a PC 101 Key US keyboard.</p>
        </descr>
      </constant>
      <constant name="DOM_KEY_LOCATION_LEFT" id="DOM_KEY_LOCATION_LEFT" type="unsigned long" value="0x01">
        <descr>
          <p>The key activated is in the left key location (there is more than one possible location for this key). Example: the left Shift key on a PC 101 Key US keyboard.</p>
        </descr>
      </constant>
      <constant name="DOM_KEY_LOCATION_RIGHT" id="DOM_KEY_LOCATION_RIGHT" type="unsigned long" value="0x02">
        <descr>
          <p>The key activation is in the right key location (there is more than one possible location for this key). Example: the right Shift key on a PC 101 Key US keyboard.</p>
        </descr>
      </constant>
      <constant name="DOM_KEY_LOCATION_NUMPAD" id="DOM_KEY_LOCATION_NUMPAD" type="unsigned long" value="0x03">
        <descr>
          <p>The key activation originated on the numeric keypad or with a virtual key corresponding to the numeric keypad. Example: the '1' key on a PC 101 Key US keyboard located on the numeric pad.</p>
        </descr>
      </constant>
    </group>
    <attribute type="DOMString" name="keyIdentifier" id="Events-KeyboardEvent-keyIdentifier" readonly="yes">
      <descr>
        <p><code>keyIdentifier</code>holds the identifier of the key. The key identifiers are defined in Appendix A.2 "<specref ref="KeySet-Set"/>". Implementations that are unable to identify a key must use the key identifier<code>"Unidentified"</code>.</p>
      </descr>
    </attribute>
    <attribute id="Events-KeyboardEvent-keylocation" name="keyLocation" type="unsigned long" readonly="yes">
      <descr>
        <p>The<code>keyLocation</code>attribute contains an indication of the location of they key on the device, as described in<specref ref="ID-KeyboardEvent-KeyLocationCode"/>.</p>
      </descr>
    </attribute>
    <attribute name="ctrlKey" id="Events-KeyboardEvent-ctrlKey" type="boolean" readonly="yes">
      <descr>
        <p><code>true</code>if the control (Ctrl) key modifier is activated.</p>
      </descr>
    </attribute>
    <attribute name="shiftKey" id="Events-KeyboardEvent-shiftKey" type="boolean" readonly="yes">
      <descr>
        <p><code>true</code>if the shift (Shift) key modifier is activated.</p>
      </descr>
    </attribute>
    <attribute name="altKey" id="Events-KeyboardEvent-altKey" type="boolean" readonly="yes">
      <descr>
        <p><code>true</code>if the alternative (Alt) key modifier is activated.</p>
        <note>
          <p>The Option key modifier on Macintosh systems must be represented using this key modifier.</p>
        </note>
      </descr>
    </attribute>
    <attribute name="metaKey" id="Events-KeyboardEvent-metaKey" type="boolean" readonly="yes">
      <descr>
        <p><code>true</code>if the meta (Meta) key modifier is activated.</p>
        <note>
          <p>The Command key modifier on Macintosh systems must be represented using this key modifier.</p>
        </note>
      </descr>
    </attribute>
    <method id="Events-KeyboardEvent-getModifierState" name="getModifierState">
      <descr>
        <p>This methods queries the state of a modifier using a key identifier. See also<specref ref="Modifiers"/>.</p>
      </descr>
      <parameters>
        <param name="keyIdentifierArg" type="DOMString" attr="in">
          <descr>
            <p>A modifier key identifier. Common modifier keys are<code>"Alt"</code>,<code>"AltGraph"</code>,<code>"CapsLock"</code>,<code>"Control"</code>,<code>"Meta"</code>,<code>"NumLock"</code>,<code>"Scroll"</code>, or<code>"Shift"</code>.</p>
            <note>
              <p>If an application wishes to distinguish between right and left modifiers, this information could be deduced using keyboard events and<code>KeyboardEvent.keyLocation</code>.</p>
            </note>
          </descr>
        </param>
      </parameters>
      <returns type="boolean">
        <descr>
          <p><code>true</code>if it is modifier key and the modifier is activated,<code>false</code>otherwise.</p>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initKeyboardEvent" id="Events-KeyboardEvent-initKeyboardEvent">
      <descr>
        <p>The<code>initKeyboardEvent</code>method is used to initialize the value of a<code>KeyboardEvent</code>object and has the same behavior as<code>UIEvent.initUIEvent()</code>. The value of<code>UIEvent.detail</code>remains undefined.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="keyIdentifierArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>KeyboardEvent.keyIdentifier</code>.</p>
          </descr>
        </param>
        <param name="keyLocationArg" type="unsigned long" attr="in">
          <descr>
            <p>Specifies<code>KeyboardEvent.keyLocation</code>.</p>
          </descr>
        </param>
        <param name="modifiersList" type="DOMString" attr="in">
          <descr>
            <p>Aseparated list of modifier key identifiers to be activated on this object.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr/>
      </returns>
      <raises/>
    </method>
    <method name="initKeyboardEventNS" id="Events-KeyboardEvent-initKeyboardEventNS">
      <descr>
        <p>The<code>initKeyboardEventNS</code>method is used to initialize the value of a<code>KeyboardEvent</code>object and has the same behavior as<code>UIEvent.initUIEventNS()</code>. The value of<code>UIEvent.detail</code>remains undefined.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr>
            <p>Refer to the<code>UIEvent.initUIEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="keyIdentifierArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>KeyboardEvent.initKeyboardEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="keyLocationArg" type="unsigned long" attr="in">
          <descr>
            <p>Refer to the<code>KeyboardEvent.initKeyboardEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="modifiersList" type="DOMString" attr="in">
          <descr>
            <p>Aseparated list of modifier key identifiers to be activated on this object. As an example,<code>"Control Alt"</code>will activated the control and alt modifiers.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr/>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="MutationEvent" inherits="Event" id="Events-MutationEvent" since="DOM Level 2">
    <descr>
      <p>The<code>MutationEvent</code>interface provides specific contextual information associated with Mutation events.</p>
      <p>To create an instance of the<code>MutationEvent</code>interface, use the<code>DocumentEvent.createEvent("MutationEvent")</code>method call.</p>
    </descr>
    <group id="Events-MutationEvent-attrChangeType" name="attrChangeType">
      <descr>
        <p>An integer indicating in which way the<code>Attr</code>was changed.</p>
      </descr>
      <constant name="MODIFICATION" id="MODIFICATION" type="unsigned short" value="1">
        <descr>
          <p>The<code>Attr</code>was modified in place.</p>
        </descr>
      </constant>
      <constant name="ADDITION" id="ADDITION" type="unsigned short" value="2">
        <descr>
          <p>The<code>Attr</code>was just added.</p>
        </descr>
      </constant>
      <constant name="REMOVAL" id="REMOVAL" type="unsigned short" value="3">
        <descr>
          <p>The<code>Attr</code>was just removed.</p>
        </descr>
      </constant>
    </group>
    <attribute type="Node" name="relatedNode" readonly="yes" id="Events-MutationEvent-relatedNode">
      <descr>
        <p><code>relatedNode</code>is used to identify a secondary node related to a mutation event. For example, if a mutation event is dispatched to a node indicating that its parent has changed, the<code>relatedNode</code>is the changed parent. If an event is instead dispatched to a subtree indicating a node was changed within it, the<code>relatedNode</code>is the changed node. In the case of the<code>{"http://www.w3.org/2001/xml-events", "DOMAttrModified"}</code>event it indicates the<code>Attr</code>node which was modified, added, or removed.</p>
      </descr>
    </attribute>
    <attribute type="DOMString" name="prevValue" readonly="yes" id="Events-MutationEvent-prevValue">
      <descr>
        <p><code>prevValue</code>indicates the previous value of the<code>Attr</code>node in<code>{"http://www.w3.org/2001/xml-events", "DOMAttrModified"}</code>events, and of the<code>CharacterData</code>node in<code>{"http://www.w3.org/2001/xml-events", "DOMCharacterDataModified"}</code>events.</p>
      </descr>
    </attribute>
    <attribute type="DOMString" name="newValue" readonly="yes" id="Events-MutationEvent-newValue">
      <descr>
        <p><code>newValue</code>indicates the new value of the<code>Attr</code>node in<code>{"http://www.w3.org/2001/xml-events", "DOMAttrModified"}</code>events, and of the<code>CharacterData</code>node in<code>{"http://www.w3.org/2001/xml-events", "DOMCharacterDataModified"}</code>events.</p>
      </descr>
    </attribute>
    <attribute type="DOMString" name="attrName" readonly="yes" id="Events-MutationEvent-attrName">
      <descr>
        <p><code>attrName</code>indicates the name of the changed<code>Attr</code>node in a<code>{"http://www.w3.org/2001/xml-events", "DOMAttrModified"}</code>event.</p>
      </descr>
    </attribute>
    <attribute type="unsigned short" name="attrChange" readonly="yes" id="Events-MutationEvent-attrChange">
      <descr>
        <p><code>attrChange</code>indicates the type of change which triggered the<code>{"http://www.w3.org/2001/xml-events", "DOMAttrModified"}</code>event. The values can be<code>MODIFICATION</code>,<code>ADDITION</code>, or<code>REMOVAL</code>.</p>
      </descr>
    </attribute>
    <method name="initMutationEvent" id="Events-Event-initMutationEvent">
      <descr>
        <p>The<code>initMutationEvent</code>method is used to initialize the value of a<code>MutationEvent</code>object and has the same behavior as<code>Event.initEvent()</code>.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="relatedNodeArg" type="Node" attr="in">
          <descr>
            <p>Specifies<code>MutationEvent.relatedNode</code>.</p>
          </descr>
        </param>
        <param name="prevValueArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>MutationEvent.prevValue</code>. This value may be null.</p>
          </descr>
        </param>
        <param name="newValueArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>MutationEvent.newValue</code>. This value may be null.</p>
          </descr>
        </param>
        <param name="attrNameArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>MutationEvent.attrname</code>. This value may be null.</p>
          </descr>
        </param>
        <param name="attrChangeArg" type="unsigned short" attr="in">
          <descr>
            <p>Specifies<code>MutationEvent.attrChange</code>. This value may be null.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initMutationEventNS" id="Events-Event-initMutationEventNS" since="DOM Level 3">
      <descr>
        <p>The<code>initMutationEventNS</code>method is used to initialize the value of a<code>MutationEvent</code>object and has the same behavior as<code>Event.initEventNS()</code>.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>Event.initEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="relatedNodeArg" type="Node" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="prevValueArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="newValueArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="attrNameArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="attrChangeArg" type="unsigned short" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
  <interface name="MutationNameEvent" inherits="MutationEvent" id="Events-MutationNameEvent" since="DOM Level 3">
    <descr>
      <p>The<code>MutationNameEvent</code>interface provides specific contextual information associated with Mutation name event types.</p>
      <p>To create an instance of the<code>MutationNameEvent</code>interface, use the<code>Document.createEvent("MutationNameEvent")</code>method call.</p>
    </descr>
    <attribute type="DOMString" name="prevNamespaceURI" readonly="yes" id="Events-MutationNameEvent-prevNamespaceURI">
      <descr>
        <p>The previous value of the<code>relatedNode</code>'s<code>namespaceURI</code>.</p>
      </descr>
    </attribute>
    <attribute type="DOMString" name="prevNodeName" readonly="yes" id="Events-MutationNameEvent-prevNodeName">
      <descr>
        <p>The previous value of the<code>relatedNode</code>'s<code>nodeName</code>.</p>
      </descr>
    </attribute>
    <method name="initMutationNameEvent" id="Events-Event-initMutationNameEvent" since="DOM Level 3">
      <descr>
        <p>The<code>initMutationNameEvent</code>method is used to initialize the value of a<code>MutationNameEvent</code>object and has the same behavior as<code>MutationEvent.initMutationEvent()</code>.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="relatedNodeArg" type="Node" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="prevNamespaceURIArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>MutationNameEvent.prevNamespaceURI</code>. This value may be<code>null</code>.</p>
          </descr>
        </param>
        <param name="prevNodeNameArg" type="DOMString" attr="in">
          <descr>
            <p>Specifies<code>MutationNameEvent.prevNodeName</code>.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
    <method name="initMutationNameEventNS" id="Events-Event-initMutationNameEventNS" since="DOM Level 3">
      <descr>
        <p>The<code>initMutationNameEventNS</code>method is used to initialize the value of a<code>MutationNameEvent</code>object and has the same behavior as<code>MutationEvent.initMutationEventNS()</code>.</p>
      </descr>
      <parameters>
        <param name="namespaceURI" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="typeArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="relatedNodeArg" type="Node" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEventNS()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="prevNamespaceURIArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
        <param name="prevNodeNameArg" type="DOMString" attr="in">
          <descr>
            <p>Refer to the<code>MutationEvent.initMutationEvent()</code>method for a description of this parameter.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
        <descr>
          <p/>
        </descr>
      </returns>
      <raises/>
    </method>
  </interface>
</library>