WD-xml-events-20070216
84.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet href="http://www.w3.org/StyleSheets/TR/W3C-WD.css" type="text/css" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org" />
<title>XML Events 2</title>
<style type="text/css">
.dtd-code { font-family: monospace; background-color: #dfdfdf; white-space: pre; border: #000000; border-style: solid; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px}
code {
color: green;
font-family: monospace;
font-weight: bold;
}
h4 { color: #005A9C; background: white }
code.greenmono {
color: green;
font-family: monospace;
font-weight: bold;
}
.example {
border: solid green;
border-width: 2px;
color: green;
font-weight: bold;
margin-right: 5%;
margin-left: 0;
}
.bad {
border: solid red;
border-width: 2px;
margin-left: 0;
margin-right: 5%;
color: rgb(192, 101, 101);
}
div.navbar { text-align: center; }
div.contents {
background-color: rgb(204,204,255);
padding: 0.5em;
border: none;
margin-right: 5%;
}
.tocline { list-style: none; }
td { text-align: left }
.ins { background-color: yellow }
.del { background-color: yellow; text-decoration: line-through }
ul.acks { list-style: none }
p.issueTitle {
font-size: 150% ;
}
div.issue {
background-color: #cfc ;
border: none ;
margin-right: 5% ;
}
/* assertion styles */
.must, .mustnot, .required, .shall, .shallnot, .should, .recommended, .may, .optional {
font-style: italic ;
background-color: #FF8040 ;
}
</style>
<link rel="stylesheet" type="text/css" href="http://www.w3.org/StyleSheets/TR/W3C-WD.css" />
</head>
<body>
<div class="head"><a href="http://www.w3.org/"><img height="48" width="72" alt="W3C" src="http://www.w3.org/Icons/w3c_home" /></a>
<h1><a id="title" name="title">XML Events 2</a></h1>
<h2><a id="subtitle" name="subtitle">An Events Syntax for XML</a></h2>
<h2><a id="w3c-doctype" name="w3c-doctype">W3C Working Draft 16 February 2007</a></h2>
<dl>
<dt>This version:</dt>
<dd><a href="http://www.w3.org/TR/2007/WD-xml-events-20070216">http://www.w3.org/TR/2007/WD-xml-events-20070216</a></dd>
<dt>Latest version:</dt>
<dd><a href="http://www.w3.org/TR/xml-events">http://www.w3.org/TR/xml-events</a></dd>
<dt>Previous version:</dt>
<dd><a href="http://www.w3.org/TR/2003/REC-xml-events-20031014">http://www.w3.org/TR/2003/REC-xml-events-20031014</a></dd>
<dt>Diff from previous recommendation:</dt>
<dd><a href="xml-events-diff.html">xml-events-diff.html</a></dd>
<dt>Editors:</dt>
<dd><a href="mailto:shane@aptest.com">Shane McCarron</a>, <a href="http://www.aptest.com">Applied Testing and Technology, <abbr title="Incorporated">Inc.</abbr></a><br />
<a href="mailto:mark.birbeck@x-port.net">Mark Birbeck</a>, <a href="http://www.x-port.net">x-port.net Ltd.</a></dd>
<dt>Version 1 Editors:</dt>
<dd><a href="mailto:shane@aptest.com">Shane McCarron</a>, <a href="http://www.aptest.com">Applied Testing and Technology, <abbr title="Incorporated">Inc.</abbr></a><br />
<a href="http://www.cwi.nl/~steven/">Steven Pemberton</a>, <a href="http://www.cwi.nl"><abbr lang="nl" xml:lang="nl" title="Centrum voor Wiskunde en Informatica">CWI</abbr></a>/<a href=
"http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup><br />
<a href="mailto:tvraman@almaden.ibm.com">T. V. Raman</a>, <a href="http://www.ibm.com"><abbr title="International Business Machines">IBM</abbr> Corporation</a></dd>
</dl>
<p>Please refer to the <a href="http://www.w3.org/2003/10/REC-xml-events-20031014-errata"><strong>errata</strong></a> for this document, which may include some normative corrections.</p>
<p>This document is also available in these non-normative formats: <a href="xml-events.ps">PostScript version</a>, <a href="xml-events.pdf">PDF version</a>, <a href="xml-events.zip">ZIP archive</a>,
and <a href="xml-events.tgz">Gzip'd TAR archive</a>.</p>
<p>The English version of this specification is the only normative version. Non-normative <a href="http://www.w3.org/Consortium/Translation/">translations</a> may also be available.</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2007 <a href="http://www.w3.org/"><acronym title="World Wide Web Consortium">
W3C</acronym></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><acronym title="Massachusetts Institute of Technology">MIT</acronym></a>, <a href="http://www.ercim.org/"><acronym title=
"European Research Consortium for Informatics and Mathematics">ERCIM</acronym></a>, <a href="http://www.keio.ac.jp/">Keio</a>), All Rights Reserved. W3C <a href=
"http://www.w3.org/Consortium/Legal/ipr-notice#Legal_Disclaimer">liability</a>, <a href="http://www.w3.org/Consortium/Legal/ipr-notice#W3C_Trademarks">trademark</a> and <a href=
"http://www.w3.org/Consortium/Legal/copyright-documents">document use</a> rules apply.</p>
</div>
<hr />
<h2><a id="abstract" name="abstract">Abstract</a></h2>
<p>The XML Events module defined in this specification provides XML languages with the ability to uniformly integrate event listeners and associated event handlers with Document Object Model (DOM)
Level 2 event interfaces [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>]. The result is to provide an interoperable way of associating behaviors with document-level markup.</p>
<h2><a id="status" name="status">Status of This Document</a></h2>
<p><em>This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of
this technical report can be found in the <a href="http://www.w3.org/TR/">W3C technical reports index</a> at http://www.w3.org/TR/.</em></p>
<p>This document is a Working Draft. It reflects clarifications and corrections as a result of many years of use by the community. It also includes updated implementations in XML Schema and XML DTD
that can readily integrate with the host language's namespace. This document should in no way be considered stable, and should not be normatively referenced for any purposes whatsoever.</p>
<p>Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is
inappropriate to cite this document as other than work in progress.</p>
<p>This document has been produced by the <a class="member" href="http://www.w3.org/MarkUp/Group/">W3C HTML Working Group</a> (<em><a href="http://cgi.w3.org/MemberAccess/AccessRequest">Members
only</a></em>) as part of the <a href="http://www.w3.org/MarkUp/Activity">HTML Activity</a>. The goals of the HTML Working Group are discussed in the <a href="http://www.w3.org/2002/05/html/charter">
HTML Working Group charter</a>.</p>
<p>This document is governed by the <a href="http://www.w3.org/TR/2002/NOTE-patent-practice-20020124">24 January 2002 CPP</a> as amended by the <a href="http://www.w3.org/2004/02/05-pp-transition">
W3C Patent Policy Transition Procedure</a>. W3C maintains a <a rel="disclosure" href="http://www.w3.org/MarkUp/2002/Disclosures">public list of any patent disclosures</a> made in connection with the
deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href=
"http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href=
"http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section 6 of the W3C Patent Policy</a>.</p>
<p>Please report errors in this specification to <a href="mailto:www-html-editor@w3.org">www-html-editor@w3.org</a> (<a href="http://lists.w3.org/Archives/Public/www-html-editor/">archive</a>). It is
inappropriate to send discussion email to this address. Public discussion may take place on <a href="mailto:www-html@w3.org">www-html@w3.org</a> (<a href=
"http://lists.w3.org/Archives/Public/www-html/">archive</a>).</p>
<h1><a id="contents" name="contents">Contents</a></h1>
<div class="toc">
<ul class='toc'>
<li class='tocline'>1. <a href="#s_intro" class="tocxref">Introduction</a></li>
<li class='tocline'>2. <a href="#s_event_module_conformance" class="tocxref">Conformance Requirements</a>
<ul class="toc">
<li class='tocline'>2.1. <a href="#docconf" class="tocxref">Document Conformance</a></li>
<li class='tocline'>2.2. <a href="#hostconf" class="tocxref">Host Language Conformance</a></li>
<li class='tocline'>2.3. <a href="#uaconf" class="tocxref">User Agent Conformance</a></li>
</ul>
</li>
<li class='tocline'>3. <a href="#s_event_module_elements" class="tocxref">The XML Events Module</a>
<ul class="toc">
<li class='tocline'>3.1. <a href="#section-listener-element" class="tocxref">The listener Element</a>
<ul class="toc">
<li class='tocline'>3.1.1. <a href="#sec_3.1.1." class="tocxref">Examples of listener Usage</a></li>
</ul>
</li>
<li class='tocline'>3.2. <a href="#section-listener-observer" class="tocxref">Attaching Attributes Directly to the Observer Element</a>
<ul class="toc">
<li class='tocline'>3.2.1. <a href="#sec_3.2.1." class="tocxref"> Examples of Using Attributes Attached to an Observer Element</a></li>
</ul>
</li>
<li class='tocline'>3.3. <a href="#section-listener-handler" class="tocxref">Attaching Attributes Directly to the Handler Element</a>
<ul class="toc">
<li class='tocline'>3.3.1. <a href="#sec_3.3.1." class="tocxref"> Examples of Using Attributes Attached to a Handler Element</a></li>
</ul>
</li>
<li class='tocline'>3.4. <a href="#section-attributedefaulting" class="tocxref">Summary of Observer and Handler Attribute Defaulting</a></li>
<li class='tocline'>3.5. <a href="#section-eventhandlers" class="tocxref">Event Handlers</a></li>
<li class='tocline'>3.6. <a href="#section-basic" class="tocxref">The Basic XML Events Profile</a></li>
</ul>
</li>
<li class='tocline'>4. <a href="#s_handler_module_elements" class="tocxref">The XML Handlers Module</a>
<ul class="toc">
<li class='tocline'>4.1. <a href="#section-action-element" class="tocxref">The action Element</a></li>
<li class='tocline'>4.2. <a href="#section-script-element" class="tocxref">The script Element</a></li>
<li class='tocline'>4.3. <a href="#section-dispatchEvent-element" class="tocxref">The dispatchEvent Element</a></li>
<li class='tocline'>4.4. <a href="#section-addEventListener-element" class="tocxref">The addEventListener element</a></li>
<li class='tocline'>4.5. <a href="#section-removeEventListener-element" class="tocxref">The removeEventListener element</a></li>
<li class='tocline'>4.6. <a href="#section-stopPropagation-element" class="tocxref">The stopPropagation element</a></li>
<li class='tocline'>4.7. <a href="#section-preventDefault-element" class="tocxref">The preventDefault element</a></li>
</ul>
</li>
<li class='tocline'>5. <a href="#section-event-naming" class="tocxref">Naming Event Types</a></li>
<li class='tocline'>6. <a href="#section-xpath-expressions" class="tocxref">XPath Expressions</a>
<ul class="toc">
<li class='tocline'>6.1. <a href="#xpath-function-library" class="tocxref">Function Library</a>
<ul class="toc">
<li class='tocline'>6.1.1. <a href="#xpath-event-function" class="tocxref">XPath event Function</a></li>
</ul>
</li>
</ul>
</li>
<li class='tocline'>A. <a href="#a_DTD_definition" class="tocxref">DTD Implementation</a>
<ul class="toc">
<li class='tocline'>A.1. <a href="#a_module_qname" class="tocxref">Qualified Names Module</a></li>
<li class='tocline'>A.2. <a href="#a_module_xml_events" class="tocxref">XML Events Module</a></li>
<li class='tocline'>A.3. <a href="#a_module_xml_handlers" class="tocxref">XML Handlers Module</a></li>
</ul>
</li>
<li class='tocline'>B. <a href="#a_Schema_definition" class="tocxref">Schema Implementation</a>
<ul class="toc">
<li class='tocline'>B.1. <a href="#a_schema_attribs" class="tocxref">Attributes Module</a></li>
<li class='tocline'>B.2. <a href="#a_schema_xml_events" class="tocxref">XML Events Module</a></li>
<li class='tocline'>B.3. <a href="#a_schema_xml_handlers" class="tocxref">XML Handlers Module</a></li>
</ul>
</li>
<li class='tocline'>C. <a href="#s_implnotes" class="tocxref">Implementation Notes</a></li>
<li class='tocline'>D. <a href="#s_refs" class="tocxref">References</a>
<ul class="toc">
<li class='tocline'>D.1. <a href="#s_norm-refs" class="tocxref">Normative References</a></li>
<li class='tocline'>D.2. <a href="#s_other-refs" class="tocxref">Other References</a></li>
</ul>
</li>
<li class='tocline'>E. <a href="#s_acks" class="tocxref">Acknowledgments</a></li>
</ul>
</div>
<!--OddPage-->
<h1><a id="s_intro" name="s_intro">1.Introduction</a></h1>
<p><em>This section is informative.</em></p>
<p>An <em>event</em> is the representation of some asynchronous occurrence (such as a mouse click on the presentation of the element, or an arithmetical error in the value of an attribute of the
element, or any of unthinkably many other possibilities) that gets associated with an element (<em>targeted</em> at it) in an XML document.</p>
<p>In the DOM model of events [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>], the general behavior is that when an event occurs it is <em>dispatched</em> by passing it down the document tree
in a phase called <em>capture</em> to the element where the event occurred (called its <em>target</em>), where it then may be passed back up the tree again in the phase called <em>bubbling</em>. In
general an event can be responded to at any element in the path (an <em>observer</em>) in either phase by causing an action, and/or by stopping the event, and/or by cancelling the default action for
the event. The following diagram illustrates this:</p>
<p><img src="images/event-flow.png" alt="Event propagation flow diagram" longdesc="#event-flow-desc" /><br />
<em id="event-flow-desc">Event flow in DOM2: an event targeted at an element (marked 'target') in the tree passes down the tree from the root to the target in the phase called 'capture'. If the event
type allows it, the event then travels back up the tree by the same route in a phase called 'bubbling'. Any node in the route, including the root node and the target, may be an 'observer': that is to
say, a handler may be attached to it that is activated when the event passes through in either phase. A handler can only listen for one phase. To listen for both you have to attach two
handlers.</em></p>
<p>An <em>action</em> is some way of responding to an event; a <em>handler</em> is some specification for such an action, for instance using scripting or some other method. A <em>listener</em> is a
binding of such a handler to an event targeting some element in a document.</p>
<p>HTML [<a class="nref" href="#ref_HTML4">HTML4</a>] binds events to an element by encoding the event name in an attribute name, such that the value of the attribute is the action for that event at
that element. This method has two main disadvantages: firstly it hardwires the events into the language, so that to add a new event, you have to make a change to the language, and secondly it forces
you to mix the content of the document with the specifications of the scripting and event handling, rather than allowing you to separate them out. SVG [<a class="nref" href="#ref_SVG">SVG</a>] uses a
similar method.</p>
<p>The process of defining a new version of HTML identified the need for an extensible event specification method. The design requirements were the following:</p>
<ul>
<li>Syntactically expose the DOM event model to an XML document [<a class="nref" href="#ref_XML">XML</a>].</li>
<li>Provide for new event types without requiring modification to the DOM or the DTD.</li>
<li>Allow for integration with other XML languages.</li>
</ul>
<p>The DOM specifies an event model that provides the following features:</p>
<ul>
<li>A generic event system,</li>
<li>Means for registering event listeners and handlers,</li>
<li>Means for routing events through a tree structure,</li>
<li>Access to context information for each event, and</li>
<li>A definition of event flow, as sketched above.</li>
</ul>
<p>The elements and attributes defined in this specification are the method of binding a DOM level 2 event at an element to an event handler. They encapsulate various aspects of the DOM level 2 event
interface, thereby providing markup-level specification of the actions to be taken during the various phases of event propagation.</p>
<p>This document neither specifies particular events, nor mandates any particular methods of specifying actions. These definitions are left to any markup language using the facilities described
here.</p>
<!--OddPage-->
<h1><a id="s_event_module_conformance" name="s_event_module_conformance">2.Conformance Requirements</a></h1>
<p>This section is <em>normative</em>.</p>
<p>The keywords "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [<a class="nref" href=
"#ref_RFC2119">RFC2119</a>].</p>
<h2><a id="docconf" name="docconf">2.1.Document Conformance</a></h2>
<p>XML Events is not a stand-alone document type. It is intended to be integrated into other host languages such as XHTML. A conforming XML Events document is a document that requires only the
facilities described as mandatory in this specification and the facilities described as mandatory in its host language. Such a document must meet all the following criteria:</p>
<ol>
<li>
<p><span class="must">The document MUST conform to the constraints expressed in <a href="#a_Schema_definition">Appendix B - Schema Implementation</a> or <a href="#a_DTD_definition">
Appendix A - DTD Implementation</a>, combined with the constraints expressed in its host language implementation.</span></p>
</li>
<li>
<p><span class="must">If the host language does not incorporate XML Events elements and attributes into its own namespace, the document MUST contain an <code>xmlns</code> declaration for the XML
Events namespace [<a class="nref" href="#ref_XMLNAMES">XMLNAMES</a>]</span>. The namespace for XML Events is defined to be <code>http://www.w3.org/2001/xml-events</code>. An example start tag of a
root element might look like:</p>
<div class="good">
<pre>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
xmlns:ev="http://www.w3.org/2001/xml-events" >
</pre>
</div>
<p>Note that we expect this namespace to revert to the namespace of the previous recommendation once development of this specification is complete.</p>
</li>
</ol>
<div class="issue">
<p id="_issue_" class="issueTitle">Chameleon Namespace</p>
This draft alludes to supporting "chameleon" use of event elements and attributes. It is not clear that this is easily supportable by implementors. It may be that these elements and attributes must
be in their own namespace.</div>
<h2><a id="hostconf" name="hostconf">2.2.Host Language Conformance</a></h2>
<p><span class="must">When XML Events are included in a host language, all of the facilities required in this specification MUST be included in the host language</span>. <span class="must">In
addition, the mandatory elements and attributes defined in this specification MUST be included in the content model of the host language</span>.</p>
<h2><a id="uaconf" name="uaconf">2.3.User Agent Conformance</a></h2>
<p><span class="must">A conforming user agent MUST support all of the features required in this specification.</span></p>
<!--OddPage-->
<h1><a id="s_event_module_elements" name="s_event_module_elements">3.The XML Events Module</a></h1>
<p><em>This section is normative.</em></p>
<p>This specification defines a module called XML Events. The XML Events module uses the XML namespace [<a class="nref" href="#ref_XMLNAMES">XMLNAMES</a>] identifier <code>
http://www.w3.org/2001/xml-events</code>.</p>
<p>Examples in this document that use the namespace prefix "<code>ev</code>" all assume an <code>xmlns</code> declaration <code>xmlns:ev="http://www.w3.org/2001/xml-events"</code> somewhere suitable
in the document involved. All examples are informative.</p>
<p>The remainder of this section describes the elements and attributes in this module, the semantics, and provides an abstract module definition as required in [<a class="nref" href=
"#ref_XHTMLMOD">XHTMLMOD</a>].</p>
<p>The XML Events Module supports the following element and attributes:</p>
<table cellpadding="3" class="moduledef" border="1" summary="Element and Attributes for XML Events Module">
<thead>
<tr>
<th>Element</th>
<th>Attributes</th>
<th>Minimal Content Model</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#section-listener-element">listener</a></td>
<td>event (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
observer (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_IDREF">IDREF</a></span>),<br />
targetid (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_IDREF">IDREF</a></span>),<br />
handler (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_URI">URI</a></span>),<br />
phase ("capture" | "default"*),<br />
propagate ("stop" | "continue"*),<br />
defaultAction ("cancel" | "perform"*),<br />
if (<a href="#section-xpath-expressions">XPathExpression</a>),<br />
while (<a href="#section-xpath-expressions">XPathExpression</a>),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])<br />
</td>
<td>EMPTY</td>
</tr>
</tbody>
</table>
<p>Implementations: <a href="#a_module_xml_events">DTD</a>, <a href="#a_schema_xml_events">XML Schema</a></p>
<h2><a id="section-listener-element" name="section-listener-element">3.1.The listener Element</a></h2>
<p>Element <code>listener</code> supports a subset of the DOM's <code>EventListener</code> interface. It is used to declare event listeners and register them with specific nodes in the DOM, and has
the following attributes:</p>
<dl>
<dt><a id="attr-listener-event">event</a></dt>
<dd>The required <code>event</code> attribute specifies the event type for which the listener is being registered.</dd>
<dt><a id="attr-listener-observer"></a>observer</dt>
<dd>The optional <code>observer</code> attribute specifies the <code>id</code> of the element with which the event listener is to be registered. If this attribute is not present, the observer is the
element that the <code>event</code> attribute is on (see later under "<a href="#section-listener-observer">Attaching Attributes Directly to the Observer Element</a>"), or the parent of that element
(see later under "<a href="#section-listener-handler">Attaching Attributes Directly to the Handler Element</a>").
<p><em>EDITORS' NOTE:</em> There is a proposal that this attribute should be a URI. This is still under discussion, and we recognise that there may be security issues to resolve. However, if they can
be addressed then we generally support this.</p>
</dd>
<dt><a id="attr-listener-targetid">targetid</a></dt>
<dd>The optional <code>targetid</code> attribute specifies the <code>id</code> of the target element of the event (i.e., the node that caused the event). If this attribute is present, only events
that match both the <code>event</code> and <code>targetid</code> attributes will be processed by the associated event handler. Clearly because of the way events propagate, the target element should
be a descendent node of the observer element, or the observer element itself.
<p>Use of this attribute requires care; for instance, if you specify</p>
<pre>
<listener event="click" observer="para1"
targetid="link1" handler="#clicker"/>
</pre>
<p>where 'para1' is some ancestor of the following node</p>
<pre>
<a id="link1" href="doc.html">The <em>draft</em> document</a>
</pre>
<p>and the user happens to click on the word "draft", the <code>em</code> element, and not the <code>a</code>, will be the target, and so the handler will not be activated; to catch all mouse clicks
on the <code>a</code> element and its children, use <code>observer="link1"</code>, and no <code>targetid</code> attribute.</p>
</dd>
<dt><a id="attr-listener-handler">handler</a></dt>
<dd>The optional <code>handler</code> attribute specifies the URI reference of a resource that defines the action that should be performed if the event reaches the observer. (This specification does
not mandate what form that element should take: see further the section "<a href="#section-eventhandlers">Event Handlers</a>"). If this attribute is not present, the handler is the element that the
<code>event</code> attribute is on (see later under "<a href="#section-listener-handler">Attaching Attributes Directly to the Handler Element</a>").</dd>
<dt><a id="attr-listener-phase">phase</a></dt>
<dd>The optional <code>phase</code> attribute specifies when (during which DOM 2 event propagation phase) the listener will be activated by the desired event.
<dl>
<dt><code>capture</code></dt>
<dd>Listener is activated during capturing phase.</dd>
<dt><code>default</code></dt>
<dd>Listener is activated during bubbling or target phase.</dd>
</dl>
<p>The default behavior is <code>phase="default"</code>.</p>
<p>Note that not all events bubble, in which case with phase="default" you can only handle the event by making the event's target the observer.</p>
</dd>
<dt><a id="attr-listener-propagate">propagate</a></dt>
<dd>The optional <code>propagate</code> attribute specifies whether after processing all listeners at the current node, the event is allowed to continue on its path (either in the capture or the
bubble phase).
<dl>
<dt><code>stop</code></dt>
<dd>event propagation stops</dd>
<dt><code>continue</code></dt>
<dd>event propagation continues (unless stopped by other means, such as scripting, or by another listener).</dd>
</dl>
<p>The default behavior is <code>propagate="continue"</code>.</p>
</dd>
<dt><a id="attr-listener-defaultAction">defaultAction</a></dt>
<dd>The optional <code>defaultAction</code> attribute specifies whether after processing of all listeners for the event, the default action for the event (if any) should be performed or not. For
instance, in XHTML the default action for a mouse click on an <code>a</code> element or one of its descendents is to traverse the link.
<dl>
<dt><code>cancel</code></dt>
<dd>if the event type is cancelable, the default action is cancelled</dd>
<dt><code>perform</code></dt>
<dd>the default action is performed (unless cancelled by other means, such as scripting, or by another listener).</dd>
</dl>
<p>The default value is <code>defaultAction="perform"</code>.</p>
<p>Note that not all events are cancelable, in which case this attribute is ignored.</p>
</dd>
<dt><a id="attr-listener-if">if</a></dt>
<dd>The optional if attribute allows a condition to be specified. This condition must be met in order for the event handler to be activated. The condition is specified using an <a href=
"#section-xpath-expressions">XPath Expression</a>. There is no default value.
<p>This attribute allows event handlers to be specified that respond not just to named events, but to more specific conditions, such as a mouse click with the control key pressed:</p>
<div class="example">
<pre>
<listener event="click" if="event('ctrlKey') = true()"
observer="para1"
targetid="link1" handler="#clicker"/>
</pre>
</div>
<p>The event function is described in <a href="#xpath-event-function">XPath Event Function</a>.</p>
</dd>
<dt><a id="attr-listener-while">while</a></dt>
<dd>The optional while attribute allows a condition to be specified. This condition must be met in order for the event handler to be activated. The condition is specified using an <a href=
"#section-xpath-expressions">XPath Expression</a>. There is no default value.
<p>This attribute allows event handlers to be specified that perform their action whilst some condition remains true.</p>
<p><em>EDITORS' NOTE:</em> Can't think of an example that only makes use of what we have in this spec, i.e., the event() function. We may need to do something like delete a list in XForms.</p>
</dd>
</dl>
<p>Note that <code>observer = "<element-id>"</code> and <code>event = "<event-type>"</code> are similar to the <code>begin = "<element-id>.<event-type>"</code> attribute in
SMIL EventTiming [<a class="nref" href="#ref_SMIL20">SMIL20</a>].</p>
<h3><a id="sec_3.1.1." name="sec_3.1.1.">3.1.1.Examples of listener Usage</a></h3>
<ol>
<li>
<p>This example attaches the handler in the element at <code>"#doit"</code> that will get activated when the event called <code>activate</code> occurs on the element with <code>id="button1"</code>,
or any of its children. The activation will occur during bubbling, or if the event happened on the observer element itself, when the event reaches the element (phase <em>target</em>).</p>
<pre>
<listener event="activate" observer="button1" handler="#doit"/>
</pre>
</li>
<li>
<p>This attaches the handler at <code>#overflow-handler</code> that will get activated when the event <code>overflow</code> occurs on the element with <code>id="expr1"</code> and bubbles up to the
element with <code>id="prog1"</code>.</p>
<pre>
<listener event="overflow" observer="prog1" targetid="expr1"
handler="#overflow-handler"/>
</pre>
</li>
<li>
<p>This attaches the handler at <code>#popup</code> that will get activated whenever an <code>activate</code> event occurs at the element with <code>id="embargo"</code> or any of its children. Since
it will be activated during the capture phase, and propagation is stopped, this will have the effect (regardless of what the handler does) of preventing any child elements of the <code>embargo</code>
element seeing any <code>activate</code> events.</p>
<pre>
<listener event="activate" observer="embargo" handler="#popup"
phase="capture" propagate="stop"/>
</pre>
</li>
<li>
<p>This attaches a handler from another document.</p>
<pre>
<listener event="activate" observer="image1"
handler="/handlers/events.xml#activate"/>
</pre>
</li>
</ol>
<h2><a id="section-listener-observer" name="section-listener-observer">3.2.Attaching Attributes Directly to the Observer Element</a></h2>
<p>All the attributes from the <code>listener</code> element with the exception of <code>id</code> may be used as global attributes, as defined in <em>Namespaces in XML</em> [<a class="nref" href=
"#ref_XMLNAMES">XMLNAMES</a>], to attach the attributes to other elements.</p>
<p>Note that this means that the <code>listener</code> element is strictly speaking redundant, since the following</p>
<pre>
<anyelement ev:event="click" ev:observer="button1" ev:handler="#clicker"/>
</pre>
<p>would have the same effect as</p>
<pre>
<ev:listener event="click" observer="button1" handler="#clicker"/>
</pre>
<p>Nonetheless, for utility the <code>listener</code> element has been retained.</p>
<p>If the <code>observer</code> attribute is omitted (but not the <code>handler</code> attribute), then the element that the other attributes are attached to is the observer element.</p>
<h3><a id="sec_3.2.1." name="sec_3.2.1.">3.2.1. Examples of Using Attributes Attached to an Observer Element</a></h3>
<ol>
<li>
<p>This first example will attach the handler identified by <code>"#popper"</code> to the <code>a</code> element, and cancel the default action for the event.</p>
<pre>
<a href="doc.html" ev:event="activate" ev:handler="#popper"
ev:defaultAction="cancel">The document</a>
</pre>
</li>
<li>
<p>This will attach the handler at <code>#handle-overflow</code> for the event <code>overflow</code> to the current element.</p>
<pre>
<div ev:event="overflow" ev:handler="#handle-overflow"> ... </div>
</pre>
</li>
</ol>
<h2><a id="section-listener-handler" name="section-listener-handler">3.3.Attaching Attributes Directly to the Handler Element</a></h2>
<p>If, when attaching the global attributes to an element, the <code>handler</code> attribute is omitted then the element that the other attributes are attached to is the handler element.</p>
<p>Note that, since the <code>observer</code> and <code>targetid</code> attributes are IDREFs, in this case the handler and observer/target elements must be in the same document (while in other
cases, since the <code>handler</code> attribute is a URI, the handler element may be in another document).</p>
<p>If the <code>observer</code> attribute is also omitted, then the parent of the handler element is the observer element.</p>
<h3><a id="sec_3.3.1." name="sec_3.3.1.">3.3.1. Examples of Using Attributes Attached to a Handler Element</a></h3>
<ol>
<li>
<p>In this case the element is the handler for the <code>submit</code> event on the element with <code>id="form1"</code>.</p>
<pre>
<script type="application/x-javascript"
ev:event="submit" ev:observer="form1">
return docheck(event);
</script>
</pre>
</li>
<li>
<p>In this case the <code>action</code> element is the handler for event <code>q-submit</code>, and the observer is the <code>questionnaire</code> element.</p>
<pre>
<questionnaire submissionURL="/q/tally">
<action ev:event="q-submit">
...
</action>
...
</questionnaire>
</pre>
</li>
<li>
<p>The <code>script</code> element is the handler for event <code>click</code>; the <code>img</code> element is the observer.</p>
<pre>
<img src="button.gif" alt="OK">
<script ev:event="activate" type="application/x-javascript">
doactivate(event);
</script>
</img>
</pre>
</li>
<li>
<p>The <code>onevent</code> element is the handler for event <code>enterforward</code>. The <code>card</code> element is the observer.</p>
<pre>
<card>
<onevent ev:event="enterforward">
<go href="/url"/>
</onevent>
<p>
Hello!
</p>
</card>
</pre>
</li>
<li>
<p>The <code>catch</code> element is the handler for the <code>nomatch</code> event. The observer is the <code>field</code> element.</p>
<pre>
<form id="launch_missiles">
<field name="password">
<prompt>What is the code word?</prompt>
<grammar>
<rule id="root" scope="public">rutabaga</rule>
</grammar>
<help>It is the name of an obscure vegetable.</help>
<catch ev:event="nomatch">
<prompt>Security violation!</prompt>
<submit next="apprehend_felon" namelist="user_id"/>
</catch>
</field>
<block>
<goto next="#get_city"/>
</block>
</form>
</pre>
</li>
<li>
<p>This example shows three handlers for different events. The observer for all three is the <code>secret</code> element.</p>
<pre>
<secret ref="/login/password">
<caption>Please enter your password</caption>
<info ev:event="help">
Mail help@example.com in case of problems
</info>
<info ev:event="hint">
A pet's name
</info>
<info ev:event="alert">
This field is required
</info>
</secret>
</pre>
</li>
</ol>
<h2><a id="section-attributedefaulting" name="section-attributedefaulting">3.4.Summary of Observer and Handler Attribute Defaulting</a></h2>
<p>The following table summarizes which elements play the role of observer or handler if the relevant attribute is omitted.</p>
<table cellpadding="3" border="1" summary="The effect of omitted observer and handler attributes">
<caption>The effect of omitted observer and handler attributes</caption>
<tbody>
<tr>
<td></td>
<th>Handler present</th>
<th>Handler omitted</th>
</tr>
<tr>
<th>Observer present</th>
<td>(As declared)</td>
<td>Element is handler</td>
</tr>
<tr>
<th>Observer omitted</th>
<td>Element is observer</td>
<td>Element is handler<br />
Parent is observer</td>
</tr>
</tbody>
</table>
<h2><a id="section-eventhandlers" name="section-eventhandlers">3.5.Event Handlers</a></h2>
<p>This specification does not require an XML application that uses XML Events to use any particular method for specifying handlers. However, the examples, particularly those in the section on
attaching the attributes directly to the handler, are intended to give examples of how they could be specified.</p>
<p>It is however recognized that two methods are likely to occur often: scripting (such as XHTML's <script> element) and declarative markup using XML elements (such as WML's <onevent>
element). Section 4 of this specification provides markup to support these methods.</p>
<h2><a id="section-basic" name="section-basic">3.6.The Basic XML Events Profile</a></h2>
<p>The Basic XML Events Profile allows restrictions on the usage of the XML Events Module in order to make processing easier on small devices.</p>
<p>The Basic Profile allows the following restrictions on the use of <code>listener</code> element and its attributes, and on the use of the attributes from the <code>listener</code> element as
global attributes.</p>
<ol>
<li>
<p>External Event Handlers</p>
<p>The ability to process external event handlers is not required. When the 'handler' attribute on the <code>listener</code> element is used, or when the global 'handler' attribute is used, the
handler specified in the value of that attribute should be within the current document.</p>
<p>For example, the following is allowed:</p>
<pre>
<listener event="click" targetid="#button1" handler="#clicker"/>
</pre>
<p>while the following is not required to be processed:</p>
<pre>
<listener event="click" targetid="#button1" handler="doc2.html#clicker"/>
</pre>
</li>
<li>Ordering of Event Bindings
<p>The binding of an event handler to an observer may be required to be lexically before the end of the observer element. In other words, a <code>listener</code> binding to an observer may not occur
after the closing tag of the observer element, and an event handler carrying the attributes to bind it to an observer may also not occur after the closing tag of the observer element.</p>
</li>
</ol>
<!--OddPage-->
<h1><a id="s_handler_module_elements" name="s_handler_module_elements">4.The XML Handlers Module</a></h1>
<p><em>This section is normative.</em></p>
<p>This specification also defines a module called XML Handlers. The XML Handlers module also uses the XML namespace [<a class="nref" href="#ref_XMLNAMES">XMLNAMES</a>] identifier <code>
http://www.w3.org/2001/xml-events</code>.</p>
<p>The purpose of this module is to provide a declarative way to map specific events to a series of one or more actions. Those actions are declared either by the host language (e.g., [<a class="nref"
href="#ref_XFORMS">XFORMS</a>]) or within the document using the XML Events module above. Implementing actual handlers for the events remains the perview of the host language, supported scripting
languages, etc.</p>
<p>The XML Handlers Module supports the following elements and attributes:</p>
<table cellpadding="3" class="moduledef" border="1" summary="Element and Attributes for XML Handlers Module">
<thead>
<tr>
<th>Element</th>
<th>Attributes</th>
<th>Minimal Content Model</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#section-action-element">action</a></td>
<td>event (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
targetid (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_IDREF">IDREF</a></span>),<br />
declare ("declare"),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>( action | script | dispatchEvent | addEventListener | removeEventListener | stopPropagation | preventDefault )+</td>
</tr>
<tr>
<td><a href="#section-script-element">script</a></td>
<td>encoding (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_Charset">Charset</a></span>),<br />
src (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_URI">URI</a></span>),<br />
type (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_ContentTypes">ContentTypes</a></span>),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>PCDATA</td>
</tr>
<tr>
<td><a href="#section-dispatchEvent-element">dispatchEvent</a></td>
<td>raise (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
destid (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_IDREF">IDREF</a></span>),<br />
bubbles ("bubbles"),<br />
cancelable ("cancelable"),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>EMPTY</td>
</tr>
<tr>
<td><a href="#section-addEventListener-element">addEventListener</a></td>
<td>event* (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
handler* (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_IDREF">IDREF</a></span>),<br />
phase ("capture" | "default"*),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>EMPTY</td>
</tr>
<tr>
<td><a href="#section-removeEventListener-element">removeEventListener</a></td>
<td>event* (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
handler* (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_IDREF">IDREF</a></span>),<br />
phase ("capture" | "default"*),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>EMPTY</td>
</tr>
<tr>
<td><a href="#section-stopPropagation-element">stopPropagation</a></td>
<td>event* (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>EMPTY</td>
</tr>
<tr>
<td><a href="#section-preventDefault-element">preventDefault</a></td>
<td>event* (<span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QName">QName</a></span>),<br />
xml:id ([<a class="nref" href="#ref_XMLID">XMLID</a>])</td>
<td>EMPTY</td>
</tr>
</tbody>
</table>
<p>Implementations: <a href="#a_module_xml_handlers">DTD</a>, <a href="#a_schema_xml_handlers">XML Schema</a></p>
<h2><a id="section-action-element" name="section-action-element">4.1.The action Element</a></h2>
<p>The <code>action</code> element is used to group event handler elements (including other <code>action</code> elements) that will act <em>in sequence</em> as handlers for an event. The <code>
action</code> element takes the following attributes:</p>
<dl>
<dt><a id="attr-action-event">event</a></dt>
<dd>The required <code>event</code> attribute specifies the event type this action will handle.</dd>
<dt><a id="attr-action-targetid">targetid</a></dt>
<dd>The optional <code>targetid</code> attribute specifies the <code>id</code> of the target element of the event (i.e., the node that caused the event). If this attribute is present, only events
that match both the <code>event</code> and <code>targetid</code> attributes will be processed by the associated event handler. Clearly because of the way events propagate, the target element should
be a descendant node of the observer element, or the observer element itself.</dd>
<dt><a id="attr-action-declare">declare</a></dt>
<dd>When present, this boolean attribute makes the current element (and any elements it may contain) a declaration only.</dd>
</dl>
<h2><a id="section-script-element" name="section-script-element">4.2.The script Element</a></h2>
<p>The <code>script</code> element contains or references <em>scripts</em> that may register one or more event handlers for a document through a <em>scripting language</em> that is supported by the
implementation.</p>
<p>The event handler(s) may be defined within the contents of the <code>script</code> element or in an external file. <span class="must">If the <code>src</code> attribute is not set, user agents MUST
interpret the contents of the element as the handler.</span> <span class="must">If the <code>src</code> has a URI value, user agents MUST ignore the element's contents and retrieve the handler via
the URI.</span></p>
<p>Note that the <code>encoding</code> attribute refers to the <span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_Charset">character encoding</a></span> of
the handler designated by the <code>src</code> attribute; it does not concern the content of the <code>script</code> element. Also note that the <code>type</code> attribute can be used to specify a
list of available implementations for the <code>script</code>, allowing the user agent to choose among them (see <code>type</code> for more details).</p>
<h2><a id="section-dispatchEvent-element" name="section-dispatchEvent-element">4.3.The dispatchEvent Element</a></h2>
<p>The <code>dispatchEvent</code> element triggers the event identified by the <code>raise</code> attribute. If the <code>destid</code> attribute is specified, it names a specific element to which to
dispatch the event. Otherwise the event is just dispatched to the "document" to be handled by any registered listener.</p>
<p>The <code>dispatchEvent</code> element also defines two additional attributes:</p>
<dl>
<dt><a id="attr-dispatchEvent-bubbles">bubbles</a></dt>
<dd>Optional boolean indicating if this event bubbles as defined in [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>]. The default value will depend on the actual event being dispatched.</dd>
<dt><a id="attr-dispatchEvent-cancelable">cancelable</a></dt>
<dd>Optional boolean indicating if this event is cancelable as defined in [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>]. The default value will depend on the actual event being
dispatched.</dd>
</dl>
<h2><a id="section-addEventListener-element" name="section-addEventListener-element">4.4.The addEventListener element</a></h2>
<p>This element allows the registration of a listener on a specific event, as defined in [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>].</p>
<h2><a id="section-removeEventListener-element" name="section-removeEventListener-element">4.5.The removeEventListener element</a></h2>
<p>The <code>removeEventListener</code> element de-registers the handler identified by the required <code>handler</code> attribute for the event identified by the required <code>event</code>
attribute.</p>
<h2><a id="section-stopPropagation-element" name="section-stopPropagation-element">4.6.The stopPropagation element</a></h2>
<p>The <code>stopPropagation</code> element is used to prevent further propagation of an event during event flow. If this method is called by any EventListener the event will cease propagating
through the tree. The event will complete dispatch to all listeners on the current EventTarget before event flow stops. This method may be used during any stage of event flow.</p>
<h2><a id="section-preventDefault-element" name="section-preventDefault-element">4.7.The preventDefault element</a></h2>
<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. If, during any stage of event flow, the <code>preventDefault</code> method is called the event is canceled. Any default action associated with the event will not occur.
Calling this method for a non-cancelable event has no effect. Once preventDefault has been called it will remain in effect throughout the remainder of the event's propagation. This method may be used
during any stage of event flow.</p>
<!--OddPage-->
<h1><a id="section-event-naming" name="section-event-naming">5.Naming Event Types</a></h1>
<p><em>This section is informative.</em></p>
<p>This specification does not normatively specify how language designers should name events (i.e., the values used in the <code>event</code> attribute).</p>
<p>However, future versions of DOM Events are likely to allow namespaced event names, so language designers are advised not to use the colon character ":" in event names.</p>
<p>A number of event types are defined in DOM 3 Events [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>], to which you should refer for their names and semantics.</p>
<!--OddPage-->
<h1><a id="section-xpath-expressions" name="section-xpath-expressions">6.XPath Expressions</a></h1>
<p>XML Events uses XPath expressions to specify conditionals (<a href="#attr-listener-if">if</a>, <a href="#attr-listener-while">while</a>). As described in section 1 of [<a class="nref" href=
"#ref_XPATH">XPATH</a>], each XPath expression is evaluated within a context, which is made up of:</p>
<ul>
<li>a node (the context node)</li>
<li>a pair of non-zero positive integers (the context position and the context size)</li>
<li>a set of variable bindings</li>
<li>a function library</li>
<li>the set of namespace declarations in scope for the expression</li>
</ul>
<p>XML Events XPath expressions have no context node, and so the context position is 0 and the context size is 0. There are no variable bindings, and the function library contains the functions
described below. It is not necessary to provide namespace declarations.</p>
<p><span class="must">Host languages that import XML Events may provide a richer context, and MUST specify whether their context is the same as that provided here, or more.</span></p>
<h2><a id="xpath-function-library" name="xpath-function-library">6.1.Function Library</a></h2>
<p>The XPath function library consists of the following functions:</p>
<ul>
<li>event</li>
</ul>
<h3><a id="xpath-event-function" name="xpath-event-function">6.1.1.XPath event Function</a></h3>
<p><code>node-set event(string)</code></p>
<p>Function <code>event</code> returns the value of a property of the current event object, as determined by the string argument. The value returned will be typed, depending on the property. For
example, the MouseEvent interface [<a class="nref" href="#ref_DOM2EVENTS">DOM2EVENTS</a>] has the attribute <code>shiftKey</code>, which is a <code>boolean</code>. This can be accessed by passing the
string value '<code>shiftKey</code>' to the event function. The result will be an XPath boolean.</p>
<!--OddPage-->
<h1><a id="a_DTD_definition" name="a_DTD_definition">A.DTD Implementation</a></h1>
<p>This appendix is <em>normative</em>.</p>
<p>The DTD implementation of XML Events conforms to the requirements defined in [<a class="nref" href="#ref_XHTMLMOD">XHTMLMOD</a>]. Consequently, it provides a Qualified Names sub-module, and a
module file for the XML Events module defined in this Proposed Recommendation.</p>
<h2><a id="a_module_qname" name="a_module_qname">A.1.Qualified Names Module</a></h2>
<p>Note that this module defines the parameter entity <code>%xml-events-attrs.qname;</code>. This entity is intended to be used in the attribute lists of elements in any host language that permits
the use of event attributes on elements in its own namespace. In this case the Host Language driver should set a parameter entity <code>%XML-EVENTS.prefixed;</code> to <code>INCLUDE</code> and a
parameter entity <code>%XML-EVENTS.prefix;</code> to a value that is the prefix for the XML Events attributes.</p>
<pre class="dtd">
<!-- ....................................................................... -->
<!-- XML Events Qname Module ............................................ -->
<!-- file: xml-events-qname-2.mod
This is XML Events - the Events Module for XML,
a definition of access to the DOM events model.
Copyright 2000-2007 W3C (MIT, ERCIM, Keio), All Rights Reserved.
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ENTITIES XML Events Qnames 2.0//EN"
SYSTEM "http://www.w3.org/MarkUp/DTD/xml-events-qname-2.mod"
Revisions:
(none)
....................................................................... -->
<!-- XML Events Qname (Qualified Name) Module
This module is contained in two parts, labeled Section 'A' and 'B':
Section A declares parameter entities to support namespace-
qualified names, namespace declarations, and name prefixing
for XML Events and extensions.
Section B declares parameter entities used to provide
namespace-qualified names for all XML Events element types:
%listener.qname; the xmlns-qualified name for <listener>
...
XML Events extensions would create a module similar to this one.
Included in the XML distribution is a template module
('template-qname-2.mod') suitable for this purpose.
-->
<!-- Section A: XML Events XML Namespace Framework :::::::::::::::::::: -->
<!-- 1. Declare a %XML-EVENTS.prefixed; conditional section keyword, used
to activate namespace prefixing. The default value should
inherit '%NS.prefixed;' from the DTD driver, so that unless
overridden, the default behavior follows the overall DTD
prefixing scheme.
-->
<!ENTITY <span class="entity">% NS.prefixed</span> "IGNORE" >
<!ENTITY <span class="entity">% XML-EVENTS.prefixed</span> "%NS.prefixed;" >
<!-- 2. Declare a parameter entity (eg., %XML-EVENTS.xmlns;) containing
the URI reference used to identify the XML Events namespace
-->
<!ENTITY <span class="entity">% XML-EVENTS.xmlns</span> "http://www.w3.org/2001/xml-events" >
<!-- 3. Declare parameter entities (eg., %XML.prefix;) containing
the default namespace prefix string(s) to use when prefixing
is enabled. This may be overridden in the DTD driver or the
internal subset of an document instance. If no default prefix
is desired, this may be declared as an empty string.
NOTE: As specified in [XMLNAMES], the namespace prefix serves
as a proxy for the URI reference, and is not in itself significant.
-->
<!ENTITY <span class="entity">% XML-EVENTS.prefix</span> "" >
<!-- 4. Declare parameter entities (eg., %XML-EVENTS.pfx;) containing the
colonized prefix(es) (eg., '%XML-EVENTS.prefix;:') used when
prefixing is active, an empty string when it is not.
-->
<![%XML-EVENTS.prefixed;[
<!ENTITY <span class="entity">% XML-EVENTS.pfx</span> "%XML-EVENTS.prefix;:" >
]]>
<!ENTITY <span class="entity">% XML-EVENTS.pfx</span> "" >
<!-- declare qualified name extensions here ............ -->
<!ENTITY <span class="entity">% xml-events-qname-extra.mod</span> "" >
%xml-events-qname-extra.mod;
<!-- 5. The parameter entity %XML-EVENTS.xmlns.extra.attrib; may be
redeclared to contain any non-XML Events namespace declaration
attributes for namespaces embedded in XML. The default
is an empty string. XLink should be included here if used
in the DTD.
-->
<!ENTITY <span class="entity">% XML-EVENTS.xmlns.extra.attrib</span> "" >
<!-- Section B: XML Qualified Names ::::::::::::::::::::::::::::: -->
<!-- 6. This section declares parameter entities used to provide
namespace-qualified names for all XML Events element types.
-->
<!ENTITY <span class="entity">% xml-events.listener.qname</span> "%XML-EVENTS.pfx;listener" >
<!ENTITY <span class="entity">% xml-handlers.action.qname</span> "%XML-EVENTS.pfx;action" >
<!ENTITY <span class="entity">% xml-handlers.script.qname</span> "%XML-EVENTS.pfx;script" >
<!ENTITY <span class="entity">% xml-handlers.dispatchEvent.qname</span> "%XML-EVENTS.pfx;dispatchEvent" >
<!ENTITY <span class="entity">% xml-handlers.addEventListener.qname</span> "%XML-EVENTS.pfx;addEventListener" >
<!ENTITY <span class="entity">% xml-handlers.removeEventListener.qname</span> "%XML-EVENTS.pfx;removeEventListener" >
<!ENTITY <span class="entity">% xml-handlers.stopPropagation.qname</span> "%XML-EVENTS.pfx;stopPropagation" >
<!ENTITY <span class="entity">% xml-handlers.preventDefault.qname</span> "%XML-EVENTS.pfx;preventDefault" >
<!-- The following defines a PE for use in the attribute sets of elements in
other namespaces that want to incorporate the XML Event attributes. Note
that in this case the XML-EVENTS.pfx should always be defined. -->
<!ENTITY <span class="entity">% xml-events.attrs.qname</span>
"%XML-EVENTS.pfx;event NMTOKEN #IMPLIED
%XML-EVENTS.pfx;observer IDREF #IMPLIED
%XML-EVENTS.pfx;target IDREF #IMPLIED
%XML-EVENTS.pfx;handler %URI.datatype; #IMPLIED
%XML-EVENTS.pfx;phase (capture|default) #IMPLIED
%XML-EVENTS.pfx;propagate (stop|continue) #IMPLIED
%XML-EVENTS.pfx;defaultAction (cancel|perform) #IMPLIED
%XML-EVENTS.pfx;condition CDATA #IMPLIED"
>
<!-- end of xml-events-qname-2.mod -->
</pre>
<h2><a id="a_module_xml_events" name="a_module_xml_events">A.2.XML Events Module</a></h2>
<pre class="dtd">
<!-- ...................................................................... -->
<!-- XML Events Module .................................................... -->
<!-- file: xml-events-2.mod
This is XML Events - the Events Module for XML.
a redefinition of access to the DOM events model.
Copyright 2000-2007 W3C (MIT, ERCIM, Keio), All Rights Reserved.
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ENTITIES XML Events 2.0//EN"
SYSTEM "http://www.w3.org/MarkUp/DTD/xml-events-2.mod"
Revisions:
(none)
....................................................................... -->
<!-- XML Events defines the listener element and its attributes -->
<!ENTITY <span class="entity">% xml-events.listener.content</span> "EMPTY" >
<!ELEMENT <span class="element">%xml-events.listener.qname;</span> %xml-events.listener.content;>
<!ATTLIST %xml-events.listener.qname;
xml:id ID #IMPLIED
event NMTOKEN #REQUIRED
observer IDREF #IMPLIED
targetid IDREF #IMPLIED
handler %anyURI.datatype; #IMPLIED
phase (capture|default) #IMPLIED
propagate (stop|continue) #IMPLIED
condition CDATA #IMPLIED
>
<!-- end of xml-events-2.mod -->
</pre>
<h2><a id="a_module_xml_handlers" name="a_module_xml_handlers">A.3.XML Handlers Module</a></h2>
<pre class="dtd">
<!-- ................................................................... -->
<!-- XML Handlers Module ............................................... -->
<!-- file: xml-handlers-2.mod
This is XML Handlers - the Handlers Module for XML.
a redefinition of support for handlers of the DOM event model.
Copyright 2007 W3C (MIT, ERCIM, Keio), All Rights Reserved.
This DTD module is identified by the PUBLIC and SYSTEM identifiers:
PUBLIC "-//W3C//ENTITIES XML Handlers 2.0//EN"
SYSTEM "http://www.w3.org/MarkUp/DTD/xml-handlers-2.mod"
Revisions:
(none)
....................................................................... -->
<!-- XML Handlers defines the various element and attributes -->
<!ENTITY <span class="entity">% xml-handlers.action.content</span>
"( %xml-handlers.action.qname; |
%xml-handlers.script.qname; |
%xml-handlers.dispatchevent.qname; |
%xml-handlers.addEventListener.qname; |
%xml-handlers.removeEventListener.qname; |
%xml-handlers.stopPropagation.qname; |
%xml-handlers.preventDefault.qname; |
%xml-handlers.action.extras; )+ "
>
<!ELEMENT <span class="element">%xml-handlers.action.qname;</span> %xml-handlers.action.content;>
<!ATTLIST %xml-handlers.action.qname;
xml:id ID #IMPLIED
event %QName.datatype; #IMPLIED
targetid IDREF #IMPLIED
declare ( declare ) #IMPLIED
condition CDATA #IMPLIED
while CDATA #IMPLIED
>
<!ENTITY <span class="entity">% xml-handlers.script.content</span> "( #PCDATA )" >
<!ELEMENT <span class="element">%xml-handlers.script.qname;</span> %xml-handlers.script.content; >
<!ENTITY <span class="entity">% xml-handlers.script.attlist</span> "INCLUDE" >
<![%xml-handlers.script.attlist;[
<!ATTLIST %xml-handlers.script.qname;
%XML-EVENTS.xmlns.attrib;
xml:id ID #IMPLIED
charset %Charset.datatype; #IMPLIED
type %ContentType.datatype; #REQUIRED
src %URI.datatype; #IMPLIED
defer ( defer ) #IMPLIED
>
<!-- end of xml-handlers.script.attlist -->]]>
<!ENTITY <span class="entity">% xml-handlers.dispatchEvent.content</span> "NONE" >
<!ELEMENT <span class="element">%xml-handlers.dispatchEvent.qname;</span>
%xml-handlers.dispatchEvent.content >
<ENTITY % xml-handlers.dispatchEvent.attlist "INCLUDE" >
<![%xml-handlers.dispatchEvent.attlist;[
<!ATTLIST %xml-handlers.dispatchEvent.qname;
%XML-EVENTS.xmlns.attrib;
xml:id ID #IMPLIED
destid IDREF #IMPLIED
raise %QName.datatype; #IMPLIED
bubbles ( bubbles ) #IMPLIED
cancelable ( cancelable ) #IMPLIED
>
<!-- end of xml-handlers.dispatchEvent.attlist -->]]>
<!ENTITY <span class="entity">% xml-handlers.addEventListener.content</span> "NONE" >
<!ELEMENT <span class="element">%xml-handlers.addEventListener.qname;</span>
%xml-handlers.addEventListener.content >
<ENTITY % xml-handlers.addEventListener.attlist "INCLUDE" >
<![%xml-handlers.addEventListener.attlist;[
<!ATTLIST %xml-handlers.addEventListener.qname;
%XML-EVENTS.xmlns.attrib;
xml:id ID #IMPLIED
event %QName.datatype; #REQUIRED
handler IDREF #REQUIRED
phase (capture|default) #IMPLIED
>
<!-- end of xml-handlers.addEventListener.attlist -->]]>
<!ENTITY <span class="entity">% xml-handlers.removeEventListener.content</span> "NONE" >
<!ELEMENT <span class="element">%xml-handlers.removeEventListener.qname;</span>
%xml-handlers.removeEventListener.content >
<ENTITY % xml-handlers.removeEventListener.attlist "INCLUDE" >
<![%xml-handlers.removeEventListener.attlist;[
<!ATTLIST %xml-handlers.removeEventListener.qname;
%XML-EVENTS.xmlns.attrib;
xml:id ID #IMPLIED
event %QName.datatype; #REQUIRED
handler IDREF #REQUIRED
phase (capture|default) #IMPLIED
>
<!-- end of xml-handlers.addEventListener.attlist -->]]>
<!ENTITY <span class="entity">% xml-handlers.stopPropagation.content</span> "NONE" >
<!ELEMENT <span class="element">%xml-handlers.stopPropagation.qname;</span>
%xml-handlers.stopPropagation.content >
<ENTITY % xml-handlers.stopPropagation.attlist "INCLUDE" >
<![%xml-handlers.stopPropagation.attlist;[
<!ATTLIST %xml-handlers.stopPropagation.qname;
%XML-EVENTS.xmlns.attrib;
xml:id ID #IMPLIED
event %QName.datatype; #REQUIRED
>
<!-- end of xml-handlers.stopPropagation.attlist -->]]>
<!ENTITY <span class="entity">% xml-handlers.preventDefault.content</span> "NONE" >
<!ELEMENT <span class="element">%xml-handlers.preventDefault.qname;</span>
%xml-handlers.preventDefault.content >
<ENTITY % xml-handlers.preventDefault.attlist "INCLUDE" >
<![%xml-handlers.preventDefault.attlist;[
<!ATTLIST %xml-handlers.preventDefault.qname;
%XML-EVENTS.xmlns.attrib;
xml:id ID #IMPLIED
event %QName.datatype; #REQUIRED
>
<!-- end of xml-handlers.preventDefault.attlist -->]]>
<!-- end of xml-handlers-2.mod -->
</pre>
<!--OddPage-->
<h1><a id="a_Schema_definition" name="a_Schema_definition">B.Schema Implementation</a></h1>
<p>This appendix is <em>normative</em>.</p>
<p>The schema implementation of XML Events conforms to the requirements defined in [<a class="nref" href="#ref_XHTMLSCHEMAMOD">XHTMLSCHEMAMOD</a>]. It is divided into an attributes module and an
element module for the XML Events module defined in this Proposed Recommendation.</p>
<h2><a id="a_schema_attribs" name="a_schema_attribs">B.1.Attributes Module</a></h2>
<!-- INCLUDING SCHEMA SCHEMA/xml-events-attribs-2.xsd.mhtml -->
<pre class="dtd">
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
targetNamespace="http://www.w3.org/2001/xml-events"
xmlns:ev="http://www.w3.org/2001/xml-events"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/XMLSchema
http://www.w3.org/2001/XMLSchema.xsd"
elementFormDefault="unqualified"
blockDefault="#all"
finalDefault="#all"
attributeFormDefault="unqualified">
<xs:annotation>
<xs:documentation>
This is the XML Schema for XML Events global attributes
URI: http://www.w3.org/MarkUp/SCHEMA/xml-events-attribs-2.xsd
$Id: Overview.html,v 1.1 2007/02/15 22:01:09 jean-gui Exp $
</xs:documentation>
<xs:documentation source="xml-events-copyright-2.xsd"/>
</xs:annotation>
<xs:annotation>
<xs:documentation>
XML Event Attributes
These "global" event attributes are defined in "Attaching
Attributes Directly to the Observer Element" of the XML
Events specification.
</xs:documentation>
</xs:annotation>
<xs:attribute name="event" type="xs:NMTOKEN"/>
<xs:attribute name="observer" type="xs:IDREF"/>
<xs:attribute name="target" type="xs:IDREF"/>
<xs:attribute name="handler" type="xs:anyURI"/>
<xs:attribute name="condition" type="xs:normalizedString"/>
<xs:attribute name="phase" default="default">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="capture"/>
<xs:enumeration value="default"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="propagate" default="continue">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="stop"/>
<xs:enumeration value="continue"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="defaultAction" default="perform">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="cancel"/>
<xs:enumeration value="perform"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attributeGroup name="XmlEvents.attlist">
<xs:attribute ref="ev:event"/>
<xs:attribute ref="ev:observer"/>
<xs:attribute ref="ev:target"/>
<xs:attribute ref="ev:handler"/>
<xs:attribute ref="ev:condition"/>
<xs:attribute ref="ev:phase"/>
<xs:attribute ref="ev:propagate"/>
<xs:attribute ref="ev:defaultAction"/>
</xs:attributeGroup>
</xs:schema>
</pre>
<!-- END OF FILE SCHEMA/xml-events-attribs-2.xsd.mhtml -->
<h2><a id="a_schema_xml_events" name="a_schema_xml_events">B.2.XML Events Module</a></h2>
<!-- INCLUDING SCHEMA SCHEMA/xml-events-2.xsd.mhtml -->
<pre class="dtd">
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
targetNamespace="http://www.w3.org/2001/xml-events"
xmlns="http://www.w3.org/2001/xml-events"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/XMLSchema
http://www.w3.org/2001/XMLSchema.xsd"
elementFormDefault="unqualified"
blockDefault="#all"
finalDefault="#all"
attributeFormDefault="unqualified">
<xs:annotation>
<xs:documentation>
This is the XML Schema for XML Events
URI: http://www.w3.org/MarkUp/SCHEMA/xml-events-2.xsd
$Id: Overview.html,v 1.1 2007/02/15 22:01:09 jean-gui Exp $
</xs:documentation>
<xs:documentation source="xml-events-copyright-2.xsd"/>
</xs:annotation>
<xs:annotation>
<xs:documentation>
XML Events element listener
This module defines the listener element for XML Events.
This element can be used to define event listeners. This
module relies upon the XmlEvents.attlist attribute group
defined in xml-events-attribs-2.xsd.
</xs:documentation>
</xs:annotation>
<xs:attributeGroup name="listener.attlist">
<xs:attribute name="event" use="required" type="xs:NMTOKEN"/>
<xs:attribute name="observer" type="xs:IDREF"/>
<xs:attribute name="target" type="xs:IDREF"/>
<xs:attribute name="handler" type="xs:anyURI"/>
<xs:attribute name="condition" type="xs:normalizedString"/>
<xs:attribute name="phase" default="default">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="capture"/>
<xs:enumeration value="default"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="propagate" default="continue">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="stop"/>
<xs:enumeration value="continue"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="defaultAction" default="perform">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="cancel"/>
<xs:enumeration value="perform"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="id" type="xs:ID"/>
</xs:attributeGroup>
<xs:complexType name="listener.type">
<xs:attributeGroup ref="listener.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_listener">listener</a></span>" type="listener.type"/>
</xs:schema>
</pre>
<!-- END OF FILE SCHEMA/xml-events-2.xsd.mhtml -->
<h2><a id="a_schema_xml_handlers" name="a_schema_xml_handlers">B.3.XML Handlers Module</a></h2>
<!-- INCLUDING SCHEMA SCHEMA/xml-handlers-2.xsd.mhtml -->
<pre class="dtd">
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema
targetNamespace="http://www.w3.org/2001/xml-events"
xmlns="http://www.w3.org/2001/xml-events"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3.org/2001/XMLSchema
http://www.w3.org/2001/XMLSchema.xsd"
elementFormDefault="unqualified"
blockDefault="#all"
finalDefault="#all"
attributeFormDefault="unqualified">
<xs:annotation>
<xs:documentation>
This is the XML Schema for XML Events
URI: http://www.w3.org/MarkUp/SCHEMA/xml-handlers-2.xsd
$Id: Overview.html,v 1.1 2007/02/15 22:01:09 jean-gui Exp $
</xs:documentation>
<xs:documentation source="xml-events-copyright-2.xsd"/>
</xs:annotation>
<xs:attributeGroup name="action.attlist">
<xs:attribute name="event" use="required" type="xs:NMTOKEN"/>
<xs:attribute name="observer" type="xs:IDREF"/>
<xs:attribute name="target" type="xs:IDREF"/>
<xs:attribute name="handler" type="xs:anyURI"/>
<xs:attribute name="condition" type="xs:normalizedString"/>
<xs:attribute name="phase" default="default">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="capture"/>
<xs:enumeration value="default"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="propagate" default="continue">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="stop"/>
<xs:enumeration value="continue"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="defaultAction" default="perform">
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="cancel"/>
<xs:enumeration value="perform"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="id" type="xs:ID"/>
</xs:attributeGroup>
<xs:complexType name="action.type">
<xs:attributeGroup ref="action.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_action">action</a></span>" type="action.type"/>
<xs:complexType name="script.type">
<xs:attributeGroup ref="script.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_script">script</a></span>" type="script.type"/>
<xs:complexType name="dispatchEvent.type">
<xs:attributeGroup ref="dispatchEvent.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_dispatchEvent">dispatchEvent</a></span>" type="dispatchEvent.type"/>
<xs:complexType name="addEventListener.type">
<xs:attributeGroup ref="addEventListener.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_addEventListener">addEventListener</a></span>" type="addEventListener.type"/>
<xs:complexType name="removeEventListener.type">
<xs:attributeGroup ref="removeEventListener.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_removeEventListener">removeEventListener</a></span>" type="removeEventListener.type"/>
<xs:complexType name="stopPropagation.type">
<xs:attributeGroup ref="stopPropagation.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_stopPropagation">stopPropagation</a></span>" type="stopPropagation.type"/>
<xs:complexType name="preventDefault.type">
<xs:attributeGroup ref="preventDefault.attlist"/>
</xs:complexType>
<xs:element name="<span class="element"><a id="a_smodule_element_preventDefault">preventDefault</a></span>" type="stopPropagation.type"/>
</xs:schema>
</pre>
<!-- END OF FILE SCHEMA/xml-handlers-2.xsd.mhtml --><!--OddPage-->
<h1><a id="s_implnotes" name="s_implnotes">C.Implementation Notes</a></h1>
<p>This appendix is <em>informative</em>.</p>
<p>XML Events is intended as a declarative way to use DOM Events, but it is not necessarily limited to that. For example, it would be possible to use XML Events in a tree-based system that does not
support a DOM. The mapping to DOM 3 Events is straightforward, and XML Events 2 provides mark-up that reflects all features of DOM 3 Events. The mapping to DOM 2 Events is slightly more involved, and
requires some processing of event names, since in XML Events 2 event names are <span class="datatype"><a href="http://www.w3.org/TR/xhtml-modularization/abstraction.html#dt_QNames">QNames</a></span>.
DOM 2 Events allows a string for the event name, and a suggested practice is to convert the QName to a URI by concatenating the local part to the namespace, and then use the URI as the event
name.</p>
<!--OddPage-->
<h1><a id="s_refs" name="s_refs">D.References</a></h1>
<p>This appendix is <em>normative</em>.</p>
<h2><a id="s_norm-refs" name="s_norm-refs">D.1.Normative References</a></h2>
<dl>
<dt>[<a id="ref_DOM2EVENTS" name="ref_DOM2EVENTS" class="normref">DOM2EVENTS</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/DOM-Level-2-Events/">Document Object Model (DOM) Level 2 Events Specification</a></cite>", W3C Recommendation, T. Pixley, <i><abbr title="editor">
ed.</abbr></i>, 13 November 2000.<br />
Available at: http://www.w3.org/TR/DOM-Level-2-Events/<br />
The <a href="http://www.w3.org/TR/DOM-Level-2-Events">latest version</a> is available at: http://www.w3.org/TR/DOM-Level-2-Events</dd>
<dt>[<a id="ref_XML" name="ref_XML" class="normref">XML</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2000/REC-xml-20001006">Extensible Markup Language (XML) 1.0 (Second Edition)</a></cite>", W3C Recommendation, T. Bray <i lang="lt" xml:lang="lt">et al.</i>,
<i><abbr title="editors">eds.</abbr></i>, 6 October 2000.<br />
Available at: http://www.w3.org/TR/2000/REC-xml-20001006<br />
The <a href="http://www.w3.org/TR/REC-xml">latest version</a> is available at: http://www.w3.org/TR/REC-xml</dd>
<dt>[<a id="ref_SCHEMA" name="ref_SCHEMA" class="normref">SCHEMA</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/">XML Schema Part 2: Datatypes</a></cite>", W3C Recommendation, P. V. Biron <i lang="lt" xml:lang="lt">et al.</i>, <i><abbr
title="editors">eds.</abbr></i>, 2 May 2001.<br />
Available at: http://www.w3.org/TR/2001/REC-xmlschema-2-20010502/<br />
The <a href="http://www.w3.org/TR/xmlschema-2/">latest version</a> is available at: http://www.w3.org/TR/xmlschema-2/</dd>
<dt><a id="ref_RFC2119" name="ref_RFC2119" class="normref">[RFC2119]</a></dt>
<dd>"<cite><a href="http://www.rfc-editor.org/rfc/rfc2119.txt">Key words for use in RFCs to indicate requirement levels</a></cite>", RFC 2119, S. Bradner, March 1997.<br />
Available at: http://www.rfc-editor.org/rfc/rfc2119.txt</dd>
<dt><a id="ref_XMLID" name="ref_XMLID" class="normref">[XMLID]</a></dt>
<dd>"<cite><a href="http://www.w3.org/TR/2005/CR-xml-id-20050208/">xml:id Version 1.0</a></cite>", W3C Candidate Recommendation, J. Marsh, D. Veillard, N. Walsh, <i><abbr title="editors">
eds.</abbr></i>, 8 February 2005, <em>work in progress</em>.<br />
Available at: http://www.w3.org/TR/2005/CR-xml-id-20050208/</dd>
<dt><a id="ref_XMLNAMES" name="ref_XMLNAMES" class="ref">[XMLNAMES]</a></dt>
<dd>"<cite><a href="http://www.w3.org/TR/1999/REC-xml-names-19990114">Namespaces in XML</a></cite>", W3C Recommendation, T. Bray <i lang="lt" xml:lang="lt">et al.</i>, <i><abbr title="editors">
eds.</abbr></i>, 14 January 1999.<br />
Available at: http://www.w3.org/TR/1999/REC-xml-names-19990114<br />
The <a href="http://www.w3.org/TR/REC-xml-names">latest version</a> is available at: http://www.w3.org/TR/REC-xml-names</dd>
<dt><a id="ref_XPATH" name="ref_XPATH" class="ref">[XPATH]</a></dt>
<dd>"<cite><a href="http://www.w3.org/TR/1999/REC-xpath-19991116">XML Path Language</a></cite>", W3C Recommendation, James Clark, <i lang="lt" xml:lang="lt">et al.</i>, <i><abbr title="editors">
eds.</abbr></i>, 16 November 1999.<br />
Available at: http://www.w3.org/TR/1999/REC-xpath-19991116<br />
The <a href="http://www.w3.org/TR/xpath">latest version</a> is available at: http://www.w3.org/TR/xpath</dd>
</dl>
<h2><a id="s_other-refs" name="s_other-refs">D.2.Other References</a></h2>
<dl>
<dt>[<a id="ref_HTML4" name="ref_HTML4">HTML4</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/1999/REC-html401-19991224">HTML 4.01 Specification</a></cite>", W3C Recommendation, D. Raggett <i lang="lt" xml:lang="lt">et al.</i>, <i><abbr title=
"editors">eds.</abbr></i>, 24 December 1999.<br />
Available at: http://www.w3.org/TR/1999/REC-html401-19991224<br />
The <a href="http://www.w3.org/TR/html4">latest version</a> is available at: http://www.w3.org/TR/html4</dd>
<dt>[<a id="ref_SMIL20" name="ref_SMIL20">SMIL20</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2001/REC-smil20-20010807/">Synchronized Multimedia Integration Language (SMIL 2.0)</a></cite>", W3C Recommendation, J. Ayars <i lang="lt" xml:lang="lt">et
al.</i>, <i><abbr title="editors">eds.</abbr></i>, 7 August 2001.<br />
Available at: http://www.w3.org/TR/2001/REC-smil20-20010807/<br />
The <a href="http://www.w3.org/TR/smil20">latest version</a> is available at: http://www.w3.org/TR/smil20</dd>
<dt>[<a id="ref_SVG" name="ref_SVG">SVG</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2001/REC-SVG-20010904/">Scalable Vector Graphics (SVG) 1.0 Specification</a></cite>", W3C Recommendation, J. Ferraiolo, <i><abbr title="editor">
ed.</abbr></i>, 4 September 2001.<br />
Available at: http://www.w3.org/TR/2001/REC-SVG-20010904/<br />
The <a href="http://www.w3.org/TR/SVG/">latest version</a> is available at: http://www.w3.org/TR/SVG/</dd>
<dt>[<a id="ref_XFORMS" name="ref_XFORMS">XFORMS</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2004/WD-xforms11-20041115/">XForms 1.1</a></cite>", W3C Working Draft, M. Dubinko <i lang="la" xml:lang="la">et al.</i>, <i><abbr title="editors">
eds.</abbr></i>, 15 November 2004.<br />
Available at: http://www.w3.org/TR/2004/WD-xforms11-20041115/</dd>
<dt>[<a id="ref_XHTML" name="ref_XHTML">XHTML</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2002/REC-xhtml1-20020801">XHTML™ 1.0: The Extensible HyperText Markup Language (Second Edition)</a></cite>". S. Pemberton <i lang="lt" xml:lang="lt">et
al.</i>, 26 January 2000, revised 1 August 2002.<br />
Available at: http://www.w3.org/TR/2002/REC-xhtml1-20020801<br />
The <a href="http://www.w3.org/TR/xhtml1">latest version</a> is available at: http://www.w3.org/TR/xhtml1</dd>
<dt>[<a id="ref_XHTMLMOD" name="ref_XHTMLMOD">XHTMLMOD</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2006/PR-xhtml-modularization-20060213">Modularization of XHTML™ 1.1</a></cite>", W3C Proposed Recommendation, D. Austin <i lang="lt" xml:lang="lt">et
al.</i>, <i><abbr title="editors">eds.</abbr></i>, 13 February 2006.<br />
Available at: http://www.w3.org/TR/2006/PR-xhtml-modularization-20060213<br />
The <a href="http://www.w3.org/TR/xhtml-modularization">latest version</a> is available at: http://www.w3.org/TR/xhtml-modularization</dd>
<dt>[<a id="ref_XHTMLSCHEMAMOD" name="ref_XHTMLSCHEMAMOD">XHTMLSCHEMAMOD</a>]</dt>
<dd>"<cite><a href="http://www.w3.org/TR/2003/WD-xhtml-m12n-schema-20031003">Modularization of XHTML™ in XML Schema</a></cite>", W3C Working Draft, D. Austin <i lang="lt" xml:lang="lt">et
al.</i>, <i><abbr title="editors">eds.</abbr></i>, 3 October 2003, <em>work in progress</em>.<br />
Available at: http://www.w3.org/TR/2003/WD-xhtml-m12n-schema-20031003<br />
The <a href="http://www.w3.org/TR/xhtml-m12n-schema">latest version</a> is available at: http://www.w3.org/TR/xhtml-m12n-schema</dd>
</dl>
<!--OddPage-->
<h1><a id="s_acks" name="s_acks">E.Acknowledgments</a></h1>
<p><em>This section is informative.</em></p>
<p>This document was originally edited by Ted Wugofski (Openwave).</p>
<p>Special acknowledgments to: Mark Baker (Sun Microsystems), Wayne Carr (Intel Corporation), Warner ten Kate (Philips Electronics), Patrick Schmitz, and Peter Stark (Ericsson) for their significant
contributions to the evolution of this specification.</p>
<p>At the time of publication, the participants in the W3C HTML Working Group were:</p>
<ul class="acks">
<li>Steven Pemberton, <abbr>CWI</abbr>/<abbr>W3C</abbr> (HTML Working Group Chair)</li>
<li>Daniel Austin, W. W. Grainger, <abbr>Inc.</abbr></li>
<li>Jim Bigelow, Hewlett-Packard Company</li>
<li>Mark Birbeck, x-port.net <abbr title="Limited">Ltd.</abbr> (Invited Expert)</li>
<li>Jonny Axelsson, Opera Software</li>
<li>Tantek Çelik, Microsoft Corporation</li>
<li>Beth Epperson, Netscape/<abbr title="America Online">AOL</abbr></li>
<li>Masayasu Ishikawa, <abbr>W3C</abbr> (Team Contact)</li>
<li>Shin'ichi Matsui, Panasonic</li>
<li>Shane McCarron, Applied Testing and Technology (Invited Expert)</li>
<li>Ann Navarro, WebGeek, <abbr>Inc.</abbr> (Invited Expert)</li>
<li>Subramanian Peruvemba, Oracle Corporation</li>
<li>Sebastian Schnitzenbaumer, SAP <abbr lang="de" xml:lang="de" title="Aktiengesellschaft">AG</abbr></li>
</ul>
</body>
</html>