ATAG 71.6 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"
                      "http://www.w3.org/TR/REC-html40/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Authoring Tool Accessibility Guidelines 1.0</title>
<link rel="STYLESHEET" href="style/default.css" type="text/css">
<link rel="stylesheet" href="http://www.w3.org/StyleSheets/TR/W3C-REC" type= 
"text/css">
</head>
<body>
<div class="navbar">[<a accesskey="c" href="#toc">contents</a>] &nbsp; [<a
href="atag10-chktable.html">tabular checklist</a>] &nbsp; [<a
href="atag10-chklist.html">linear checklist</a>] &nbsp; 

<hr class="navbar" title="Navigation area separator"></div>

<div class="head">
<p><a href="http://www.w3.org/"><img src="http://www.w3.org/Icons/w3c_home"
alt="W3C"></a></p>

<h1 class="notoc">Authoring Tool Accessibility Guidelines 1.0</h1>

<h2 class="notoc">W3C Recommendation 3 February 2000</h2>

<dl>
<dt>This version:</dt>

<dd><a href="http://www.w3.org/TR/2000/REC-ATAG10-20000203">http://www.w3.org/TR/2000/REC-ATAG10-20000203</a></dd>

<dd>(<a href="atag10.txt">plain text</a>, <a href="atag10.tgz">
HTML gzip tar archive</a>, <a href="atag10.zip">HTML zip archive</a>,
<a href="atag10.ps">PostScript</a>, <a href="atag10.pdf">
PDF</a>)</dd>

<dt>Latest version:</dt>

<dd><a href="http://www.w3.org/TR/ATAG10">http://www.w3.org/TR/ATAG10</a></dd>

<dt>Previous version:</dt>

<dd><a href="http://www.w3.org/TR/1999/PR-WAI-AUTOOLS-19991026 ">http://www.w3.org/TR/1999/PR-WAI-AUTOOLS-19991026 </a></dd>
</dl>

<dl>
<dt>Editors:</dt>

<dd>Jutta Treviranus - <abbr title="Adaptive Technology Research Center">
ATRC</abbr>, University of Toronto</dd>

<dd>Charles McCathieNevile - <a href="http://www.w3.org/"><abbr title="the 
World Wide Web Consortium">W3C</abbr></a></dd>

<dd>Ian Jacobs - <a href="http://www.w3.org/"><abbr title="the World Wide Web 
Consortium">W3C</abbr></a></dd>

<dd>Jan Richards - University of Toronto</dd>
</dl>

<p class="copyright"><a href= 
"http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
&copy;2000 <a href="http://www.w3.org/"><abbr title="World Wide Web
Consortium">W3C</abbr></a><sup>&reg;</sup> (<a href=
"http://www.lcs.mit.edu/"><abbr title="Massachusetts Institute of
Technology">MIT</abbr></a>, <a href="http://www.inria.fr/"><abbr lang="fr"
title="Institut National de Recherche en Informatique et Automatique">
INRIA</abbr></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>, <a href= 
"http://www.w3.org/Consortium/Legal/copyright-documents-19990405">document
use</a> and <a href= 
"http://www.w3.org/Consortium/Legal/copyright-software-19980720">software
licensing</a> rules apply.</p>
</div>

<hr title="separator from header" class="noprint">
<h2 class="nonb"><a name="abstract">Abstract</a></h2>

<p>This specification provides guidelines for Web authoring tool developers.
Its purpose is two-fold: to assist developers in designing authoring tools that
produce accessible Web content and to assist developers in creating an
accessible authoring interface.</p>

<p>Authoring tools can enable, encourage, and assist users ("authors") in the
creation of accessible Web content through prompts, alerts, checking and repair
functions, help files and automated tools. It is just as important that all
people be able to author content as it is for all people to have access to it.
The tools used to create this information must therefore be accessible
themselves. Adoption of these guidelines will contribute to the proliferation
of Web content that can be read by a broader range of readers and authoring
tools that can be used by a broader range of authors.</p>

<p>This document is part of a series of accessibility documents published by
the <abbr title="the World Wide Web Consortium">W3C</abbr> <a href= 
"http://www.w3.org/WAI/">Web Accessibility Initiative</a>
(<abbr>WAI</abbr>).</p>

<h2 class="nonb"><a 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. The latest status of
this document series is maintained at the <abbr title="the World Wide Web 
Consortium">W3C</abbr>.</em></p>

<p>This document has been reviewed by W3C Members and other interested parties
and has been endorsed by the Director as a <a href= 
"http://www.w3.org/Consortium/Process/#RecsW3C">W3C Recommendation</a>. It is a
stable document and may be used as reference material or cited as a normative
reference from another document. W3C's role in making the Recommendation is to
draw attention to the specification and to promote its widespread deployment.
This enhances the functionality and interoperability of the Web.</p>

<p>A <a href="http://www.w3.org/WAI/AU/changes.html">log of changes between
successive Working Drafts</a> is available.</p>

<p>For further information about Working Group decisions, please consult the <a
href="http://www.w3.org/WAI/AU/#Minutes">minutes of <abbr title="Authoring Tool 
Accessibility Guidelines Working Group">AUWG</abbr> Meetings</a>.</p>

<p>This document has been produced by the <a href="http://www.w3.org/WAI/AU/">
Authoring Tool Accessibility Guidelines Working Group (<abbr title="Authoring 
Tool Accessibility Guidelines Working Group">AUWG</abbr>)</a> as part of the <a
href="http://www.w3.org/WAI">Web Accessibility Initiative (<abbr title="Web 
Accessibility Initiative">WAI</abbr>)</a>. The goals of the Working Group are
discussed in the <a href="http://www.w3.org/WAI/AU/charter.html">AUWG
charter</a>.</p>

<p>Please send general comments about this document to the public mailing list:
<a href="mailto:w3c-wai-au@w3.org">w3c-wai-au@w3.org</a> (<a href= 
"http://lists.w3.org/Archives/Public/w3c-wai-au">public archives</a>).</p>

<p>The English version of this specification is the only normative version.
Information about translations of this document is available at <a href= 
"http://www.w3.org/WAI/AU/ATAG-TRANSLATIONS">http://www.w3.org/WAI/AU/ATAG-TRANSLATIONS</a>.</p>

<p>The list of known errors in this document is available at <a href= 
"http://www.w3.org/WAI/AU/ATAG-ERRATA">http://www.w3.org/WAI/AU/ATAG-ERRATA</a>. Please report errors in this document to <a
href="mailto:wai-atag-editor@w3.org">wai-atag-editor@w3.org</a>.</p>

<p>A list of current W3C Recommendations and other technical documents
including Working Drafts and Notes can be found at <a href=
"http://www.w3.org/TR">http://www.w3.org/TR</a>.</p>

<!--NewPage--><!-- this is for html2ps -->
<div class="toc">
<h2 class="notoc"><a name="toc">Table of Contents</a></h2>

<ul class="toc">
<li class="tocline2"><a href="#abstract" class="tocxref">Abstract</a></li>

<li class="tocline2"><a href="#status" class="tocxref">Status of this
document</a></li>

<li class="tocline2"><a href="#Introduction" class="tocxref">1.
Introduction</a> 

<ul class="toc">
<li class="tocline3"><a href="#organized" class="tocxref">1.1 How the
Guidelines are organized</a></li>

<li class="tocline3"><a href="#priorities" class="tocxref">1.2 Checkpoint
Priorities</a></li>

<li class="tocline3"><a href="#conformance" class="tocxref">1.3 Conformance to
these Guidelines</a></li>
</ul>
</li>

<li class="tocline2"><a href="#guidelines" class="tocxref">2. Guidelines</a> 

<ul class="toc">
<li class="tocline3"><a href="#gl-access-support" class="tocxref">1. Support
accessible authoring practices.</a></li>

<li class="tocline3"><a href="#gl-language-support" class="tocxref">2. Generate
standard markup.</a></li>

<li class="tocline3"><a href="#gl-prewritten-descs" class="tocxref">3. Support
the creation of accessible content.</a></li>

<li class="tocline3"><a href="#gl-identify-markup" class="tocxref">4. Provide
ways of checking and correcting inaccessible content.</a></li>

<li class="tocline3"><a href="#gl-integrate-naturally" class="tocxref">5.
Integrate accessibility solutions into the overall "look and feel".</a></li>

<li class="tocline3"><a href="#gl-provide-help" class="tocxref">6. Promote
accessibility in help and documentation.</a></li>

<li class="tocline3"><a href="#gl-make-accessible" class="tocxref">7. Ensure
that the authoring tool is accessible to authors with disabilities.</a></li>
</ul>
</li>

<li class="tocline2"><a href="#definitions" class="tocxref">3. Glossary of
Terms and Definitions</a></li>

<li class="tocline2"><a href="#acknowledgments" class="tocxref">4.
Acknowledgments</a></li>

<li class="tocline2"><a href="#references" class="tocxref">5.
References</a></li>
</ul>
</div>

<p>An appendix to this document <a href="#ref-ATAG10-CHECKLIST" title="Link to 
reference ATAG10-CHECKLIST">[ATAG10-CHECKLIST]</a> lists all checkpoints for
convenient reference.</p>

<div class="noprint">
<hr title="Separator from Introduction"></div>

<!--NewPage--><!-- this is for html2ps -->
<h2>1. <a name="Introduction">Introduction</a></h2>

<p>In these guidelines, the term "<a href="#def-authoring-tool" rel="glossary"
title="Definition of Authoring Tool"><span class="dfn-instance">authoring
tool</span></a>" refers to the wide range of software used for creating Web
content, including:</p>

<ul>
<li>Editing tools specifically designed to produce Web content (e.g., WYSIWYG
HTML and XML editors);</li>

<li>Tools that offer the option of saving material in a Web format (e.g., word
processors or desktop publishing packages);</li>

<li>Tools that transform documents into Web formats (e.g., filters to transform
desktop publishing formats to HTML);</li>

<li>Tools that produce multimedia, especially where it is intended for use on
the Web (e.g., video production and editing suites, SMIL authoring
packages);</li>

<li>Tools for site management or site publication, including tools that
automatically generate Web sites dynamically from a database, on-the-fly
conversion tools, and Web site publishing tools;</li>

<li>Tools for management of layout (e.g., CSS formatting tools).</li>
</ul>

<p>The goals of this document can be stated as follows: that the authoring tool
be accessible to authors regardless of disability, that it produce accessible
content by default, and that it support and encourage the author in creating
accessible content. Because most of the content of the Web is created using
authoring tools, they play a critical role in ensuring the <a href= 
"#def-Accessibility" rel="glossary" title="Definition of Accessibility"><span
class="dfn-instance">accessibility</span></a> of the Web. Since the Web is both
a means of receiving information and communicating information, it is important
that both the Web content produced and the authoring tool itself be
accessible.</p>

<p>To achieve these goals, authoring tool developers must take steps such as
ensuring conformance to accessible standards (e.g., HTML 4), checking and
correcting accessibility problems, prompting, and providing appropriate
documentation and help. For detailed information about what constitutes
accessible content, these guidelines rely on the Web Content Accessibility
Guidelines 1.0 <a href="#ref-WCAG10" title="Link to reference WCAG10">
[WCAG10]</a>. Similarly, rather than directly reproducing existing
specifications that address general accessible software design, these
guidelines rely on other sources. The present guidelines do address accessible
design considerations specific to Web authoring tools such as providing
flexible editing views, navigation aids and access to display properties for
authors.</p>

<p>The principles set forth in these guidelines will benefit many people who do
not have a disability but who have similar needs. This includes people who work
in noisy or quiet environments where the use of sound is not practical, people
who need to use their eyes for another task and are unable to view a screen,
and people who use small mobile devices that have a small screen, no keyboard,
and no mouse.</p>

<p>A separate document, entitled "Techniques for Authoring Tool Accessibility Guidelines 1.0" <a href="#ref-ATAG10-TECHS"
title="Link to reference ATAG10-TECHS">[ATAG10-TECHS]</a>, provides suggestions
and examples of how each checkpoint might be satisfied. It also includes
references to other accessibility resources (such as platform-specific software
accessibility guidelines) that provide additional information on how a tool may
satisfy each checkpoint. Readers are strongly encouraged to become familiar
with the Techniques Document as well as "Techniques for Web Content
Accessibility Guidelines 1.0" <a href="#ref-WCAG10-TECHS" title="Link to 
reference WCAG10-TECHS">[WCAG10-TECHS]</a> and "Techniques for User Agent
Accessibility Guidelines 1.0" <a href="#ref-UAAG10-TECHS" title="Link to 
reference UAAG10-TECHS">[UAAG10-TECHS]</a>.</p>

<p><strong>Note:</strong> The techniques in <a href="#ref-ATAG10-TECHS" title= 
"Link to reference ATAG10-TECHS">[ATAG10-TECHS]</a> are informative examples
only. Other strategies may be used to satisfy the checkpoints in addition to,
or in place of, those discussed in <a href="#ref-ATAG10-TECHS" title="Link to 
reference ATAG10-TECHS">[ATAG10-TECHS]</a>.</p>

<p><strong>Note:</strong> Authoring tools that conform to this document will
propagate accessible Web content and be useful to anyone regardless of
disability. There will also be authoring tools that produce accessible content
in favorable circumstances (e.g., a text editor used by a motivated author), or
provide an accessible interface to authors with certain disabilities, but that
do not conform to these guidelines.</p>

<h3>1.1 <a name="organized">How the Guidelines are organized</a></h3>

<p>The seven guidelines in this document are general principles for accessible
design. Each guideline includes:</p>

<ul>
<li>The guideline number;</li>

<li>The statement of the guideline;</li>

<li>The rationale behind the guideline;</li>

<li>A list of checkpoint definitions.</li>
</ul>

<p>The checkpoint definitions in each guideline specify requirements for
authoring tools to follow the guideline. Each checkpoint definition
includes:</p>

<ul>
<li>The checkpoint number;</li>

<li>The statement of the checkpoint;</li>

<li>The priority of the checkpoint;</li>

<li>In some cases informative notes, clarifying examples, or cross references
to related guidelines or checkpoints;</li>

<li>A link to a section of "Techniques for Authoring Tool Accessibility Guidelines 1.0" <a href="#ref-ATAG10-TECHS"
title="Link to reference ATAG10-TECHS">[ATAG10-TECHS]</a> where implementations
and examples of the checkpoint are discussed.</li>
</ul>

<p>Each checkpoint is intended to be specific enough that it can be verified,
while being sufficiently general to allow developers the freedom to use the
most appropriate strategies to satisfy it.</p>

<p>An appendix to this specification <a href="#ref-ATAG10-CHECKLIST" title= 
"Link to reference ATAG10-CHECKLIST">[ATAG10-CHECKLIST]</a> lists all
checkpoints for convenient reference.</p>

<div class="priorities-specific">
<h3>1.2 <a name="priorities">Checkpoint Priorities</a></h3>

<p>Each checkpoint has a priority level. The priority level reflects the impact
of the checkpoint in meeting the goals of this specification. These goals
are:</p>

<ul>
<li>That the authoring tool be accessible;</li>

<li>That the authoring tool produce accessible content by default;</li>

<li>That the authoring tool encourage the creation of accessible content.</li>
</ul>

<p>The priority levels are assigned as follows:</p>

<dl>
<dt><a name="priority-1">[Priority 1]</a></dt>

<dd>If the checkpoint is essential to meeting the goals.</dd>

<dt><a name="priority-2">[Priority 2]</a></dt>

<dd>If the checkpoint is important to meeting the goals.</dd>

<dt>[<a name="priority-3">Priority 3]</a></dt>

<dd>If the checkpoint is beneficial to meeting the goals.</dd>

<dt><a name="priority-rel">[Relative Priority]</a></dt>

<dd>
<p>Some checkpoints that refer to generating, authoring, or checking Web
content have multiple priorities. The priority depends on the corresponding
priority in the Web Content Accessibility Guidelines (<abbr title="Web Content 
Accessibility Guidelines">WCAG</abbr>) 1.0 <a href="#ref-WCAG10" title="Link to 
reference WCAG10">[WCAG10]</a>.</p>

<ul>
<li>It is priority 1 to satisfy the checkpoint for content features that are a
priority 1 requirement in <abbr title="Web Content Accessibility Guidelines">
WCAG</abbr> 1.0.</li>

<li>It is priority 2 to satisfy the checkpoint for content features that are a
priority 2 requirement in <abbr title="Web Content Accessibility Guidelines">
WCAG</abbr> 1.0.</li>

<li>It is priority 3 to satisfy the checkpoint for content features that are a
priority 3 requirement in <abbr title="Web Content Accessibility Guidelines">
WCAG</abbr> 1.0.</li>
</ul>

<p>For example:</p>

<ul>
<li>Providing <a href="#def-alt-eq" rel="glossary" title="Definition of 
Alternative Information"><span class="dfn-instance">text equivalents</span></a>
for images and audio is a priority 1 requirement in <abbr title="Web Content 
Accessibility Guidelines">WCAG</abbr> 1.0 since without it one or more groups
will find it impossible to access the information. Therefore, it is a priority
1 requirement for the authoring tool to check for (<a href= 
"#check-notify-on-schedule" class="noxref">4.1</a>) or ask the author for (<a
href="#check-provide-missing-alt" class="noxref">3.1</a>) equivalent
alternatives for these types of content.</li>

<li>Grouping links in navigation bars is a priority 3 in <abbr title="Web 
Content Accessibility Guidelines">WCAG 1.0</abbr>. Therefore, it is only
priority 3 for the authoring tool to check for (<a href= 
"#check-notify-on-schedule" class="noxref">4.1</a>) or ask the author for (<a
href="#check-help-provide-structure" class="noxref">3.2</a>) groups of links
that are not grouped in the markup as a navigation mechanism.</li>
</ul>
</dd>

<dd>
<p>When a checkpoint in this document refers to the <abbr title="Web Content 
Accessibility Guidelines">WCAG</abbr> 1.0 <a href="#ref-WCAG10" title="Link to 
reference WCAG10">[WCAG10]</a>, only the <abbr title="Web Content Accessibility 
Guidelines">WCAG</abbr> 1.0 checkpoints that refer to content supported or
automatically generated by the authoring tool apply. Some of the applicable
<abbr title="Web Content Accessibility Guidelines">WCAG</abbr> 1.0 checkpoints
may be satisfied automatically (without author participation) while others
require human judgment and support from the tool in the form of prompts and
documentation. Different tools may satisfy the same checkpoint differently.</p>
</dd>
</dl>

<p>The priority level for each checkpoint has been chosen based on the
assumption that the author is a competent, but not necessarily expert, user of
the authoring tool, and that the author has little or no knowledge of
accessibility. For example, the author is not expected to have read all of the
documentation, but is expected to know how to turn to the documentation for
assistance.</p>
</div>

<h3>1.3 <a name="conformance">Conformance to these Guidelines</a></h3>

<p>This section explains how to make a <a href="#claim-validation">valid
claim</a> that an authoring tool conforms to this document. Anyone may make a
claim (e.g., vendors about their own products, third parties about those
products, journalists about products, etc.). Claims may be published anywhere
(e.g., on the Web or in product documentation).</p>

<p>Claimants are solely responsible for their claims and the use of the <a
href="#conformance-icons">conformance icons</a>. If the subject of the claim
(i.e., the software) changes after the date of the claim, the claimant is
responsible for updating the claim. Claimants are encouraged to conform to the
most recent guidelines available.</p>

<p>Details about the <a href="#conformance-icons">conformance icons</a> are
provided on the Web (refer to <a href="#ref-CONFORMANCE" title="Link to 
reference CONFORMANCE">[CONFORMANCE]</a>).</p>

<h4><a name="conformance-levels">Conformance levels</a></h4>

<p>A conformance claim must indicate what conformance level is met:</p>

<ul>
<li><strong>Conformance Level "A"</strong>: all Priority 1 checkpoints
(including Relative Priority checkpoints) are satisfied.</li>

<li><strong>Conformance Level "Double-A"</strong>: all Priority 1 and 2
checkpoints (including Relative Priority checkpoints) are satisfied.</li>

<li><strong>Conformance Level "Triple-A"</strong>: all Priority 1, 2, and 3
checkpoints (including Relative Priority checkpoints) are satisfied.</li>
</ul>

<p><strong>Note:</strong> Conformance levels are spelled out in text (e.g.,
"Double-A" rather than "AA") so they may be understood when rendered as
speech.</p>

<h4><a name="well-formed-claim">Well-formed conformance claims</a></h4>

<p>A well-formed claim must include the following information:</p>

<ol>
<li>The guidelines title/version: "Authoring Tool Accessibility Guidelines 1.0";</li>

<li>The URI of the guidelines: http://www.w3.org/TR/2000/REC-ATAG10-20000203;</li>

<li>The <a href="#conformance-levels">conformance level</a> satisfied: "A",
"Double-A", or "Triple-A";</li>

<li>The version number and operating system of the software covered by the
claim. Also indicate whether any upgrades or plug-ins are required;</li>

<li>The date of the claim;</li>

<li>The checkpoints of the chosen conformance level considered not applicable.
Claimants should use the checklist <a href="#ref-ATAG10-CHECKLIST" title="Link 
to reference ATAG10-CHECKLIST">[ATAG10-CHECKLIST]</a> for this purpose.</li>
</ol>

<p>This information may be provided in text or metadata markup (e.g., using the
Resource Description Framework (<abbr>RDF</abbr>) <a href="#ref-RDF10" title= 
"Link to reference RDF10">[RDF10]</a> and an <abbr>RDF</abbr> schema designed
for <abbr>WAI</abbr> conformance claims). All content in the claim must be
accessible according to the Web Content Accessibility Guidelines 1.0 <a href= 
"#ref-WCAG10" title="Link to reference WCAG10">[WCAG10]</a>.</p>

<p>Here is an example of a claim expressed in HTML:</p>

<blockquote>
<p>&lt;p&gt;MyAuthoringTool version 2.3 on MyOperatingSystem conforms to
&lt;abbr title="the World Wide Web Consortium"&gt;W3C&lt;/abbr&gt;'s
"Authoring Tool Accessibility Guidelines 1.0", available at http://www.w3.org/TR/2000/REC-ATAG10-20000203, level Double-A. Details of this
claim are provided at &lt;a href="http://somewhere.com/details"&gt;
http://somewhere.com/details&lt;/a&gt;.&lt;/p&gt;</p>
</blockquote>

<h4><a name="claim-validation">Validity of a claim</a></h4>

<p>A conformance claim is valid for a given <a href="#conformance-levels">
conformance level</a> if:</p>

<ol>
<li>The claim is <a href="#well-formed-claim">well-formed</a>, and</li>

<li>The authoring tool satisfies all the checkpoints for that level.</li>
</ol>

<p>Claimants (or relevant assuring parties) are responsible for the validity of
a claim. As of the publication of this document, W3C does not act as an
assuring party, but it may do so in the future, or establish recommendations
for assuring parties.</p>

<p>Claimants are expected to modify or retract a claim if it may be
demonstrated that the claim is not valid. Please note that it is not currently
possible to validate claims completely automatically.</p>

<h4><a name="conformance-icons">Conformance Icons</a></h4>

<p>As part of a conformance claim, people may use a conformance icon on a Web
site, on product packaging, in documentation, etc. Each conformance icon
(chosen according to the appropriate <a href="#conformance-levels">conformance
level</a>) must link to the W3C explanation of the icon. The appearance of a
conformance icon does not imply that W3C has reviewed or validated the claim.
An icon must be accompanied by a <a href="#well-formed-claim">well-formed
claim</a>.</p>

<!--NewPage--><!-- this is for html2ps -->
<h2>2. <a name="guidelines">Guidelines</a></h2>

<h3 class="guideline">Guideline 1. <a name="gl-access-support">Support
accessible authoring practices.</a></h3>

<p>If the tool automatically generates markup, many authors will be unaware of
the accessibility status of the final content unless they expend extra effort
to review it and make appropriate corrections by hand. Since many authors are
unfamiliar with accessibility, authoring tools are responsible for
automatically generating accessible markup, and where appropriate, for guiding
the author in producing accessible content.</p>

<p>Many applications feature the ability to convert <a href="#def-document"
rel="glossary" title="Definition of Document"><span class="dfn-instance">
documents</span></a> from other formats (e.g., Rich Text Format) into a markup
format specifically intended for the Web such as HTML. Markup changes may also
be made to facilitate efficient editing and manipulation. It is essential that
these processes do not introduce <a href="#def-inaccessible-markup" rel= 
"glossary" title="Definition of Inaccessible Markup"><span class=
"dfn-instance">inaccessible markup</span></a> or remove accessibility content,
particularly when a tool hides the markup changes from the author's view.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-support-access-features">1.1</a></span> Ensure that the author can
produce <a href="atag10.html#def-Accessible">accessible content</a> in
the <a href="atag10.html#def-Markup-Language">markup language(s)</a>
supported by the tool. <span class="priority1">[Priority&nbsp;1]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-support-access-features">Techniques
for checkpoint 1.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-leave-access-content">1.2</a></span> Ensure that the tool preserves all
<a href="atag10.html#def-Access-info">accessibility information</a>
during authoring, <a href="atag10.html#def-Transformation">
transformations</a>, and <a href="atag10.html#def-conversion-tool">
conversions</a>. <span class="priority1">[Priority&nbsp;1]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-leave-access-content">Techniques for
checkpoint 1.2</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-generate-access-markup">1.3</a></span> Ensure that when the tool
automatically generates markup it conforms to the <abbr title="the World Wide 
Web Consortium">W3C</abbr>'s Web Content Accessibility Guidelines 1.0 <a href= 
"#ref-WCAG10" title="Link to reference WCAG10">[WCAG10]</a>. <span class= 
"priorityR">[Relative&nbsp;Priority]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-generate-access-markup">Techniques
for checkpoint 1.3</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-use-accessible-templates">1.4</a></span> Ensure that templates provided
by the tool conform to the Web Content Accessibility Guidelines 1.0 <a href= 
"#ref-WCAG10" title="Link to reference WCAG10">[WCAG10]</a>. <span class= 
"priorityR">[Relative&nbsp;Priority]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-use-accessible-templates">Techniques
for checkpoint 1.4</a></span></dd>
</dl>

<h3 class="guideline">Guideline 2. <a name="gl-language-support">Generate
standard markup.</a></h3>

<p>Conformance with standards promotes interoperability and accessibility by
making it easier to create specialized <a href="#def-User-Agent" rel="glossary"
title="Definition of User Agent"><span class="dfn-instance">user
agents</span></a> that address the needs of users with disabilities. In
particular, many assistive technologies used with browsers and multimedia
players are only able to provide access to Web <a href="#def-document" rel= 
"glossary" title="Definition of Document"><span class="dfn-instance">
documents</span></a> that use valid markup. Therefore, valid markup is an
essential aspect of authoring tool accessibility.</p>

<p>Where applicable use <abbr title="the World Wide Web Consortium">W3C</abbr>
Recommendations, which have been reviewed to ensure accessibility and
interoperability. If there are no applicable <abbr title="the World Wide Web 
Consortium">W3C</abbr> Recommendations, use a published standard that enables
accessibility.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name="check-prefer-w3c">
2.1</a></span> Use the latest versions of <abbr title="the World Wide Web 
Consortium">W3C</abbr> Recommendations when they are available and appropriate
for a task. <span class="priority2">[Priority&nbsp;2]</span></dt>

<dd>W3C specifications have undergone review specifically to ensure that they
do not compromise accessibility, and where possible, they enhance it.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-prefer-w3c">Techniques for checkpoint
2.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-ensure-published-DTD">2.2</a></span> Ensure that the tool automatically
generates valid markup. <span class="priority1">[Priority&nbsp;1]</span></dt>

<dd>This is necessary for <a href="#def-User-Agent" rel="glossary" title= 
"Definition of User Agent"><span class="dfn-instance">user agents</span></a> to
be able to render Web content in a manner appropriate to a particular user's
needs.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-ensure-published-DTD">Techniques for
checkpoint 2.2</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-declare-extended-DTD">2.3</a></span> If markup produced by the tool does
not conform to W3C specifications, <a href="atag10.html#def-inform">
inform</a> the author. <span class="priority3">[Priority&nbsp;3]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-declare-extended-DTD">Techniques for
checkpoint 2.3</a></span></dd>
</dl>

<h3 class="guideline">Guideline 3. <a name="gl-prewritten-descs">Support the
creation of accessible content.</a></h3>

<p>Well-structured information and <a href="#def-alt-eq" rel="glossary" title= 
"Definition of Alternative Information"><span class="dfn-instance">equivalent
alternative information</span></a> are cornerstones of accessible design,
allowing information to be presented in a way most appropriate for the needs of
the user without constraining the creativity of the author. Yet producing
equivalent information, such as text alternatives for images and auditory
descriptions of video, can be one of the most challenging aspects of Web
design, and authoring tool developers should attempt to facilitate and automate
the mechanics of this process. For example, prompting authors to include
equivalent alternative information such as <a href="#def-alt-eq" rel="glossary"
title="Definition of Alternative Information"><span class="dfn-instance">text
equivalents</span></a>, <a href="#def-video-captions" rel="glossary" title= 
"Definition of Captions"><span class="dfn-instance">captions</span></a>, and <a
href="#def-Auditory" rel="glossary" title="Definition of Auditory Description">
<span class="dfn-instance">auditory descriptions</span></a> at appropriate
times can greatly ease the burden for authors. Where such information can be
mechanically determined and offered as a choice for the author (e.g., the
function of icons in an automatically-generated navigation bar, or expansion of
acronyms from a dictionary), the tool can assist the author. At the same time,
the tool can reinforce the need for such information and the author's role in
ensuring that it is used appropriately in each instance.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-provide-missing-alt">3.1</a></span> <a href= 
"atag10.html#def-prompt">Prompt</a> the author to provide <a href= 
"atag10.html#def-alt-eq">equivalent alternative information</a> (e.g.,
<a href="atag10.html#def-video-captions">captions</a>, <a href= 
"atag10.html#def-Auditory">auditory descriptions</a>, and <a href= 
"atag10.html#def-transcript">collated text transcripts</a> for video).
<span class="priorityR">[Relative&nbsp;Priority]</span></dt>

<dd><strong>Note:</strong> Some checkpoints in the Web Content Accessibility
Guidelines 1.0 <a href="#ref-WCAG10" title="Link to reference WCAG10">
[WCAG10]</a> may not apply.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-provide-missing-alt">Techniques for
checkpoint 3.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-help-provide-structure">3.2</a></span> Help the author create structured
content and separate information from its presentation. <span class=
"priorityR">[Relative&nbsp;Priority]</span></dt>

<dd class="checkpoint"><strong>Note:</strong> Some checkpoints in Web Content
Accessibility Guidelines 1.0 <a href="#ref-WCAG10" title="Link to reference 
WCAG10">[WCAG10]</a> may not apply.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-help-provide-structure">Techniques
for checkpoint 3.2</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name=
"check-include-pro-descs">3.3</a></span> Ensure that prepackaged content
conforms to the Web Content Accessibility Guidelines 1.0 <a href="#ref-WCAG10"
title="Link to reference WCAG10">[WCAG10]</a>. <span class="priorityR">
[Relative&nbsp;Priority]</span></dt>

<dd>For example, include <a href="#def-video-captions" rel="glossary" title= 
"Definition of Captions"><span class="dfn-instance">captions</span></a>, an <a
href="#def-Auditory" rel="glossary" title="Definition of Auditory Description">
<span class="dfn-instance">auditory description</span></a>, and a <a href= 
"#def-transcript" rel="glossary" title="Definition of Transcript"><span class= 
"dfn-instance">collated text transcript</span></a> with prepackaged movies. <a
href="#check-no-default-alt" class="noxref">Refer also to checkpoint
3.4</a>.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-include-pro-descs">Techniques for
checkpoint 3.3</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name="check-no-default-alt">
3.4</a></span> Do not automatically generate <a href= 
"atag10.html#def-alt-eq">equivalent alternatives</a>. Do not reuse
previously authored alternatives without author confirmation, except when the
function is known with certainty. <span class="priority1">
[Priority&nbsp;1]</span></dt>

<dd class="checkpoint">For example, <a href="#def-prompt" rel="glossary" title= 
"Definition of Prompt"><span class="dfn-instance">prompt</span></a> the author
for a <a href="#def-alt-eq" rel="glossary" title="Definition of Alternative 
Information"><span class="dfn-instance">text equivalent</span></a> of an image.
If the author has already provided a text equivalent for the same image used in
another document, offer to reuse that text and prompt the author for
confirmation. If the tool automatically generates a "Search" icon, it would be
appropriate to automatically reuse the previously authored text equivalent for
that icon. Refer also to <a href="#check-include-pro-descs" class="noxref">
checkpoint 3.3</a> and <a href="#check-have-alt-registry" class="noxref">
checkpoint 3.5</a>. 

<p><strong>Note:</strong> Human-authored equivalent alternatives may be
available for an object (for example, through <a href=
"#check-have-alt-registry" class="noxref">checkpoint 3.5</a> and/or <a href= 
"#check-include-pro-descs" class="noxref">checkpoint 3.3</a>). It is
appropriate for the tool to offer these to the author as defaults.</p>
</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-no-default-alt">Techniques for
checkpoint 3.4</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name=
"check-have-alt-registry">3.5</a></span> Provide functionality for managing,
editing, and reusing <a href="atag10.html#def-alt-eq">alternative
equivalents</a> for multimedia objects. <span class="priority3">
[Priority&nbsp;3]</span></dt>

<dd><strong>Note:</strong> These alternative equivalents may be packaged with
the tool, written by the author, retrieved from the Web, etc.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-have-alt-registry">Techniques for
checkpoint 3.5</a></span></dd>
</dl>

<h3 class="guideline">Guideline 4. <a name="gl-identify-markup">Provide ways of
checking and correcting inaccessible content.</a></h3>

<p>Many authoring tools allow authors to create documents with little or no
knowledge about the underlying markup. To ensure accessibility, authoring tools
must be designed so that they can (where possible, automatically) identify <a
href="#def-inaccessible-markup" rel="glossary" title="Definition of 
Inaccessible Markup"><span class="dfn-instance">inaccessible markup</span></a>,
and enable its correction even when the markup itself is hidden from the
author.</p>

<p>Authoring tool support for the creation of accessible Web content should
account for different authoring styles. Authors who can configure the tool's
accessibility features to support their regular work patterns are more likely
to accept accessible authoring practices (refer to <a href= 
"http://www.w3.org/TR/ATAG10#gl-integrate-naturally">guideline 5</a>). For example,
some authors may prefer to be alerted to <a href="#def-accessibility-problem"
rel="glossary" title="Definition of Accessibility Problem"><span class= 
"dfn-instance">accessibility problems</span></a> when they occur, whereas
others may prefer to perform a check at the end of an editing session. This is
analogous to programming environments that allow users to decide whether to
check for correct code during editing or at compilation.</p>

<p><strong>Note:</strong> Validation of markup is an essential aspect of
checking the accessibility of content.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-notify-on-schedule">4.1</a></span> <a href= 
"atag10.html#def-check-for">Check for</a> and <a href= 
"atag10.html#def-inform">inform</a> the author of <a href= 
"atag10.html#def-accessibility-problem">accessibility problems</a>.
<span class="priorityR">[Relative&nbsp;Priority]</span></dt>

<dd class="checkpoint"><strong>Note:</strong> Accessibility problems should be
detected automatically where possible. Where this is not possible, the tool may
need to <a href="#def-prompt" rel="glossary" title="Definition of Prompt"><span
class="dfn-instance">prompt</span></a> the author to make decisions or to
manually check for certain types of problems.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-notify-on-schedule">Techniques for
checkpoint 4.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-dont-require-knowledge">4.2</a></span> Assist authors in correcting <a
href="atag10.html#def-accessibility-problem">accessibility
problems</a>. <span class="priorityR">[Relative&nbsp;Priority]</span></dt>

<dd class="checkpoint">At a minimum, provide context-sensitive help with the
accessibility checking required by <a href="#check-notify-on-schedule" class= 
"noxref">checkpoint 4.1</a></dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-dont-require-knowledge">Techniques
for checkpoint 4.2</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name="check-notify-changes">
4.3</a></span> Allow the author to preserve markup not recognized by the tool.
<span class="priority2">[Priority&nbsp;2]</span></dt>

<dd class="checkpoint"><strong>Note:</strong> The author may have included or
imported markup that enhances accessibility but is not recognized by the
tool.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-notify-changes">Techniques for
checkpoint 4.3</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name=
"check-progress-feedback">4.4</a></span> Provide the author with a summary of
the document's accessibility status. <span class="priority3">
[Priority&nbsp;3]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-progress-feedback">Techniques for
checkpoint 4.4</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-allow-transformation">4.5</a></span> Allow the author to transform <a
href="atag10.html#def-presentation-markup">presentation markup</a> that
is misused to convey structure into <a href= 
"atag10.html#def-structural-markup">structural markup</a>, and to
transform presentation markup used for style into style sheets. <span class= 
"priority3">[Priority&nbsp;3]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-allow-transformation">Techniques for
checkpoint 4.5</a></span></dd>
</dl>

<h3 class="guideline">Guideline 5. <a name="gl-integrate-naturally">Integrate
accessibility solutions into the overall "look and feel".</a></h3>

<p>When a new feature is added to an existing software tool without proper
integration, the result is often an obvious discontinuity. Differing color
schemes, fonts, interaction styles, and even software stability can be factors
affecting author acceptance of the new feature. In addition, the relative
prominence of different ways to accomplish the same task can influence which
one the author chooses. Therefore, it is important that creating accessible
content be a natural process when using an authoring tool.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-integrate-features">5.1</a></span> Ensure that functionality related to
<a href="atag10.html#def-accessible-au-practice">accessible authoring
practices</a> is naturally integrated into the overall look and feel of the
tool. <span class="priority2">[Priority&nbsp;2]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-integrate-features">Techniques for
checkpoint 5.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name="check-visible-means">
5.2</a></span> Ensure that <a href= 
"atag10.html#def-accessible-au-practice">accessible authoring
practices</a> supporting Web Content Accessibility Guidelines 1.0 <a href= 
"#ref-WCAG10" title="Link to reference WCAG10">[WCAG10]</a> Priority 1
checkpoints are among the most obvious and easily initiated by the author.
<span class="priority2">[Priority&nbsp;2]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-visible-means">Techniques for
checkpoint 5.2</a></span></dd>
</dl>

<h3 class="guideline">Guideline 6. <a name="gl-provide-help">Promote
accessibility in help and documentation.</a></h3>

<p>Web authors may not be familiar with accessibility issues that arise when
creating Web content. Therefore, help and documentation must include
explanations of <a href="#def-accessibility-problem" rel="glossary" title= 
"Definition of Accessibility Problem"><span class="dfn-instance">accessibility
problems</span></a>, and should demonstrate solutions with examples.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name=
"check-document-features">6.1</a></span> Document all features that promote the
production of accessible content. <span class="priority1">
[Priority&nbsp;1]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-document-features">Techniques for
checkpoint 6.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-accessibility-everywhere">6.2</a></span> Ensure that creating accessible
content is a naturally integrated part of the documentation, including
examples. <span class="priority2">[Priority&nbsp;2]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-accessibility-everywhere">Techniques
for checkpoint 6.2</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-emphasize-universal-benefit">6.3</a></span> In a dedicated section,
document all features of the tool that promote the production of accessible
content. <span class="priority3">[Priority&nbsp;3]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-emphasize-universal-benefit">
Techniques for checkpoint 6.3</a></span></dd>
</dl>

<h3 class="guideline">Guideline 7. <a name="gl-make-accessible">Ensure that the
authoring tool is accessible to authors with disabilities.</a></h3>

<p>The authoring tool is a software program with standard user interface
elements and as such must be designed according to relevant user interface
accessibility guidelines. When custom interface components are created, it is
essential that they be accessible through the standard access mechanisms for
the relevant platform so that assistive technologies can be used with them.</p>

<p>Some additional user interface design considerations apply specifically to
<a href="#def-authoring-tool" rel="glossary" title="Definition of Authoring
Tool"><span class="dfn-instance">Web authoring tools.</span></a> For instance,
authoring tools must ensure that the author can edit (in an <a href= 
"#def-Editing" rel="glossary" title="Definition of Editing View"><span class= 
"dfn-instance">editing view</span></a>) using one set of stylistic preferences
and publish using different styles. Authors with low vision may need large text
when editing but want to publish with a smaller default text size. The style
preferences of the editing view must not affect the markup of the published
document.</p>

<p>Authoring tools must also ensure that the author can navigate a document
efficiently while editing, regardless of disability. Authors who use screen
readers, refreshable braille displays, or screen magnifiers can make limited
use (if at all) of graphical artifacts that communicate the structure of the
document and act as signposts when traversing it. Authors who cannot use a
mouse (e.g., people with physical disabilities or who are blind) must use the
slow and tiring process of moving one step at a time through the document to
access the desired content, unless more efficient navigation methods are
available. Authoring tools should therefore provide an <a href="#def-Editing"
rel="glossary" title="Definition of Editing View"><span class="dfn-instance">
editing view</span></a> that conveys a sense of the overall structure and
allows structured navigation.</p>

<p><strong>Note:</strong> Documentation, help files, and installation are part
of the software and need to be available in an <a href="#def-Accessible" rel= 
"glossary" title="Definition of Accessible"><span class="dfn-instance">
accessible</span></a> form.</p>

<h4 class="notoc">Checkpoints:</h4>

<dl class="checkpoints">
<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-use-system-conventions">7.1</a></span> Use all applicable operating
system and accessibility standards and conventions (Priority 1 for standards
and conventions that are essential to accessibility; Priority 2 for those that
are important to accessibility; Priority 3 for those that are beneficial to
accessibility).</dt>

<dd>The techniques for this checkpoint include references to checklists and
guidelines for a number of platforms and to general guidelines for <a href= 
"#def-Accessible" rel="glossary" title="Definition of Accessible"><span class= 
"dfn-instance">accessible</span></a> applications.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-use-system-conventions">Techniques
for checkpoint 7.1</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name= 
"check-independent-styles">7.2</a></span> Allow the author to change the
presentation within <a href="atag10.html#def-Editing">editing views</a>
without affecting the document markup. <span class="priority1">
[Priority&nbsp;1]</span></dt>

<dd>This allows the author to edit the document according to personal
requirements, without changing the way the document is rendered when
published.</dd>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-independent-styles">Techniques for
checkpoint 7.2</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name="check-edit-elements">
7.3</a></span> Allow the author to edit all <a href= 
"atag10.html#def-Property">properties</a> of each <a href= 
"atag10.html#def-element">element</a> and object in an accessible
fashion. <span class="priority1">[Priority&nbsp;1]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-edit-elements">Techniques for
checkpoint 7.3</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name=
"check-navigation-access">7.4</a></span> Ensure that the <a href= 
"atag10.html#def-Editing">editing view</a> allows navigation via the
structure of the document in an accessible fashion. <span class="priority1">
[Priority&nbsp;1]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-navigation-access">Techniques for
checkpoint 7.4</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name="check-edit-structure">
7.5</a></span> Enable editing of the structure of the document in an accessible
fashion. <span class="priority2">[Priority&nbsp;2]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-edit-structure">Techniques for
checkpoint 7.5</a></span></dd>

<dt class="checkpoint"><span class="checkpoint"><a name="check-have-search">
7.6</a></span> Allow the author to search within <a href= 
"atag10.html#def-Editing">editing views</a>. <span class="priority2">
[Priority&nbsp;2]</span></dt>

<dd><span class="noprint"><a href= 
"http://www.w3.org/TR/ATAG10-TECHS/#check-have-search">Techniques for
checkpoint 7.6</a></span></dd>
</dl>

<!--NewPage--><!-- this is for html2ps -->
<h2>3. <a name="definitions">Glossary of Terms and Definitions</a></h2>

<dl class="glossary">
<dt><a name="def-Accessibility"><dfn><b>Accessibility</b></dfn></a> (Also: <a
name="def-Accessible"><dfn><b>Accessible</b></dfn></a>)</dt>

<dd>Within these guidelines, "accessible Web content" and "accessible authoring
tool" mean that the content and tool can be used by people regardless of
disability.</dd>

<dd>To understand the accessibility issues relevant to authoring tool design,
consider that many authors may be creating content in contexts very different
from your own: 

<ul>
<li>They may not be able to see, hear, move, or may not be able to process some
types of information easily or at all;</li>

<li>They may have difficulty reading or comprehending text;</li>

<li>They may not have or be able to use a keyboard or mouse;</li>

<li>They may have a text-only display, or a small screen.</li>
</ul>
</dd>

<dd>Accessible design will benefit people in these different authoring
scenarios and also many people who do not have a physical disability but who
have similar needs. For example, someone may be working in a noisy environment
and thus require an alternative representation of audio information. Similarly,
someone may be working in an eyes-busy environment and thus require an audio
equivalent to information they cannot view. Users of small mobile devices (with
small screens, no keyboard, and no mouse) have similar functional needs as some
users with disabilities.</dd>

<dt><a name="def-Access-info"><dfn><b>Accessibility
Information</b></dfn></a></dt>

<dd>"Accessibility information" is content, including information and markup,
that is used to improve the accessibility of a document. Accessibility
information includes, but is not limited to, <a href="#def-alt-eq" rel=
"glossary" title="Definition of Alternative Information"><span class= 
"dfn-instance">equivalent alternative information</span></a>.</dd>

<dt><a name="def-accessibility-problem"><dfn><b>Accessibility
Problem</b></dfn></a> (Also: <a name="def-inaccessible-markup"><dfn><b>
Inaccessible Markup</b></dfn></a>)</dt>

<dd>Inaccessible Web content or authoring tools cannot be used by some people
with disabilities. The Web Content Accessibility Guidelines 1.0 <a href= 
"#ref-WCAG10" title="Link to reference WCAG10">[WCAG10]</a> describes how to
create accessible Web content.</dd>

<dt><a name="def-accessible-au-practice"><dfn><b>Accessible Authoring
Practice</b></dfn></a></dt>

<dd>"Accessible authoring practices" improve the accessibility of Web content.
Both authors and tools engage in accessible authoring practices. For example,
authors write clearly, structure their content, and provide navigation aids.
Tools automatically generate valid markup and assist authors in providing and
managing appropriate equivalent alternatives.</dd>

<dt><a name="def-alert"><dfn><b>Alert</b></dfn></a></dt>

<dd>An "alert" draws the author's attention to an event or situation. It may
require a response from the author.</dd>

<dt><a name="def-alt-eq"><dfn><b>Alternative Information</b></dfn></a> (Also:
<a name="def-equivalent-alternative"><dfn><b>Equivalent
Alternative</b></dfn></a>)</dt>

<dd>Content is "equivalent" to other content when both fulfill essentially the
same function or purpose upon presentation to the user. Equivalent alternatives
play an important role in accessible authoring practices since certain types of
content may not be accessible to all users (e.g., video, images, audio, etc.).
Authors are encouraged to provide text equivalents for non-text content since
text may be rendered as synthesized speech for individuals who have visual or
learning disabilities, as braille for individuals who are blind, or as
graphical text for individuals who are deaf or do not have a disability. For
more information about equivalent alternatives, please refer to the Web Content
Accessibility Guidelines <abbr title="Web Content Accessibility Guidelines">
WCAG</abbr> 1.0 <a href="#ref-WCAG10" title="Link to reference WCAG10">
[WCAG10]</a>.</dd>

<dt><a name="def-attribute"><dfn><b>Attribute</b></dfn></a></dt>

<dd>This document uses the term "attribute" as used in SGML and XML (<a href= 
"#ref-XML" title="Link to reference XML">[XML]</a>): Element types may be
defined as having any number of attributes. Some attributes are integral to the
accessibility of content (e.g., the <code>"alt"</code>, <code>"title"</code>,
and <code>"longdesc"</code> attributes in HTML).</dd>

<dt><a name="def-Auditory"><dfn><b>Auditory Description</b></dfn></a></dt>

<dd>An "auditory description" provides information about actions, body
language, graphics, and scene changes in a video. Auditory descriptions are
commonly used by people who are blind or have low vision, although they may
also be used as a low-bandwidth equivalent on the Web. An auditory description
is either a pre-recorded human voice or a synthesized voice (recorded or
automatically generated in real time). The auditory description must be
synchronized with the auditory track of a video presentation, usually during
natural pauses in the auditory track.</dd>

<dt><a name="def-authoring-tool"><dfn><b>Authoring Tool</b></dfn></a></dt>

<dd>An "authoring tool" is any software that is used to produce content for
publishing on the Web. Authoring tools include: 

<ul>
<li>Editing tools specifically designed to produce Web content (e.g., WYSIWYG
HTML and XML editors);</li>

<li>Tools that offer the option of saving material in a Web format (e.g., word
processors or desktop publishing packages);</li>

<li>Tools that transform documents into Web formats (e.g., filters to transform
desktop publishing formats to HTML);</li>

<li>Tools that produce multimedia, especially where it is intended for use on
the Web (e.g., video production and editing suites, SMIL authoring
packages);</li>

<li>Tools for site management or site publication, including tools that
automatically generate Web sites dynamically from a database, on-the-fly
conversion and Web site publishing tools;</li>

<li>Tools for management of layout (e.g., CSS formatting tools).</li>
</ul>
</dd>

<dt><a name="def-video-captions"><dfn><b>Captions</b></dfn></a></dt>

<dd>"Captions" are essential <a href="#def-equivalent-alternative" rel=
"glossary" title="Definition of Equivalent Alternative"><span class= 
"dfn-instance">text equivalents</span></a> for movie audio. Captions consist of
a <a href="#def-transcript" rel="glossary" title="Definition of Transcript">
<span class="dfn-instance">text transcript</span></a> of the auditory track of
the movie (or other video presentation) that is synchronized with the video and
auditory tracks. Captions are generally rendered graphically and benefit people
who can see but are deaf, hard-of-hearing, or cannot hear the audio.</dd>

<dt><a name="def-conversion-tool"><dfn><b>Conversion Tool</b></dfn></a></dt>

<dd>A "conversion tool" is any application or application feature (e.g., "Save
as HTML") that transforms convent in one format to another format (such as a
markup language).</dd>

<dt><a name="def-check-for"><dfn><b>Check for</b></dfn></a></dt>

<dd>As used in <a href="#check-notify-on-schedule" class="noxref">checkpoint
4.1</a>, "check for" can refer to three types of checking: 

<ol>
<li>In some instances, an authoring tool will be able to check for
accessibility problems automatically. For example, checking for validity (<a
href="#check-ensure-published-DTD" class="noxref">checkpoint 2.2</a>) or
testing whether an image is the only content of a link.</li>

<li>In some cases, the tool will be able to "suspect" or "guess" that there is
a problem, but will need confirmation from the author. For example, in making
sure that a sensible reading order is preserved a tool can present a linearized
version of a page to the author.</li>

<li>In some cases, a tool must rely mostly on the author, and can only ask the
author to check. For example, the tool may prompt the author to verify that
equivalent alternatives for multimedia are appropriate. This is the minimal
standard to be satisfied. Subtle, rather than extensive, prompting is more
likely to be effective in encouraging the author to verify accessibility where
it cannot be done automatically.</li>
</ol>
</dd>

<dt><a name="def-document"><dfn><b>Document</b></dfn></a></dt>

<dd>A "document" is a series of elements that are defined by a <a href= 
"#def-Markup-Language" rel="glossary" title="Definition of Markup Language">
<span class="dfn-instance">markup language</span></a> (e.g., HTML 4 or an XML
application).</dd>

<dt><a name="def-Editing"><dfn><b>Editing View</b></dfn></a></dt>

<dd>An "editing view" is a <a href="#def-view" rel="glossary" title="Definition 
of View"><span class="dfn-instance">view</span></a> provided by the authoring
tool that allows editing.</dd>

<dt><a name="def-element"><dfn><b>Element</b></dfn></a></dt>

<dd>An "element" is any identifiable object within a document, for example, a
character, word, image, paragraph or spreadsheet cell. In <a href="#ref-HTML4"
title="Link to reference HTML4">[HTML4]</a> and <a href="#ref-XML" title="Link 
to reference XML">[XML]</a>, an element refers to a pair of tags and their
content, or an "empty" tag - one that requires no closing tag or content.</dd>

<dt><a name="def-inform"><dfn><b>Inform</b></dfn></a></dt>

<dd>To "inform" is to make the author aware of an event or situation through <a
href="#def-alert" rel="glossary" title="Definition of Alert"><span class= 
"dfn-instance">alert</span></a>, <a href="#def-prompt" rel="glossary" title= 
"Definition of Prompt"><span class="dfn-instance">prompt</span></a>, sound,
flash, or other means.</dd>

<dt><a name="def-Markup-Language"><dfn><b>Markup Language</b></dfn></a></dt>

<dd>Authors encode information using a "markup language" such as HTML <a href= 
"#ref-HTML4" title="Link to reference HTML4">[HTML4]</a>, SVG <a href=
"#ref-SVG" title="Link to reference SVG">[SVG]</a>, or MathML <a href= 
"#ref-MATHML" title="Link to reference MATHML">[MATHML]</a>.</dd>

<dt><a name="def-presentation-markup"><dfn><b>Presentation
Markup</b></dfn></a></dt>

<dd>"Presentation markup" is <a href="#def-Markup-Language" rel="glossary"
title="Definition of Markup Language"><span class="dfn-instance">markup
language</span></a> that encodes information about the desired presentation or
layout of the content. For example, Cascading Style Sheets (<a href="#ref-CSS1"
title="Link to reference CSS1">[CSS1]</a>, <a href="#ref-CSS2" title="Link to 
reference CSS2">[CSS2]</a>) can be used to control fonts, colors, aural
rendering, and graphical positioning. Presentation markup should not be used in
place of <a href="#def-structural-markup" rel="glossary" title="Definition of 
Structural Markup"><span class="dfn-instance">structural markup</span></a> to
convey structure. For example, authors should mark up lists in HTML with proper
list markup and style them with CSS (e.g., to control spacing, bullets,
numbering, etc.). Authors should not use other CSS or HTML incorrectly to lay
out content graphically so that it resembles a list.</dd>

<dt><a name="def-prompt"><dfn><b>Prompt</b></dfn></a></dt>

<dd>A "prompt" is a request for author input, either information or a decision.
A prompt requires author response. For example, a <a href="#def-alt-eq" rel= 
"glossary" title="Definition of Alternative Information"><span class= 
"dfn-instance">text equivalent</span></a> entry field prominently displayed in
an image insertion dialog would constitute a prompt. Prompts can be used to
encourage authors to provide information needed to make content accessible
(such as <a href="#def-alt-eq" rel="glossary" title="Definition of Alternative 
Information"><span class="dfn-instance">alternative text
equivalents</span></a>).</dd>

<dt><a name="def-Property"><dfn><b>Property</b></dfn></a></dt>

<dd>A "property" is a piece of information about an element, for example
structural information (e.g., it is item number 7 in a list, or plain text) or
presentation information (e.g., that it is marked as bold, its font size is
14). In XML and HTML, properties of an element include the type of the element
(e.g., <code>IMG</code> or <code>DL</code>), the values of its <a href= 
"#def-attribute" rel="glossary" title="Definition of Attribute"><span class= 
"dfn-instance">attributes</span></a>, and information associated by means of a
style sheet. In a database, properties of a particular element may include
values of the entry, and acceptable data types for that entry.</dd>

<dt><a name="def-structural-markup"><dfn><b>Structural
Markup</b></dfn></a></dt>

<dd>"Structural markup" is <a href="#def-Markup-Language" rel="glossary" title= 
"Definition of Markup Language"><span class="dfn-instance">markup
language</span></a> that encodes information about the structural role of
elements of the content. For example, headings, sections, members of a list,
and components of a complex diagram can be identified using structural markup.
Structural markup should not be used incorrectly to control presentation or
layout. For example, authors should not use the <code>BLOCKQUOTE</code> element
in HTML <a href="#ref-HTML4" title="Link to reference HTML4">[HTML4]</a> to
achieve an indentation visual layout effect. Structural markup should be used
correctly to communicate the roles of the elements of the content and <a href= 
"#def-presentation-markup" rel="glossary" title="Definition of Presentation 
Markup"><span class="dfn-instance">presentation markup</span></a> should be
used separately to control the presentation and layout.</dd>

<dt><a name="def-transcript"><dfn><b>Transcript</b></dfn></a></dt>

<dd>A "transcript" is a text representation of sounds in an audio clip or an
auditory track of a multimedia presentation. A "collated text transcript" for a
video combines (collates) caption text with text descriptions of video
information (descriptions of the actions, body language, graphics, and scene
changes of the visual track). Collated text transcripts are essential for
individuals who are deaf-blind and rely on braille for access to movies and
other content.</dd>

<dt><a name="def-Transformation"><dfn><b>Transformation</b></dfn></a></dt>

<dd>A "transformation" is a process that changes a document or object into
another, equivalent, object according to a discrete set of rules. This includes
<a href="#def-conversion-tool" rel="glossary" title="Definition of Conversion 
Tool"><span class="dfn-instance">conversion tools</span></a>, software that
allows the author to change the <abbr title="Document Type Definition">
DTD</abbr> defined for the original document to another <abbr title="Document 
Type Definition">DTD</abbr>, and the ability to change the markup of lists and
convert them into tables.</dd>

<dt><a name="def-User-Agent"><dfn><b>User Agent</b></dfn></a></dt>

<dd>A "user agent" is software that retrieves and renders Web content. User
agents include browsers, plug-ins for a particular media type, and some
assistive technologies.</dd>

<dt><a name="def-view"><dfn><b>View</b></dfn></a></dt>

<dd>Authoring tools may render the same content in a variety of ways; each
rendering is called a "view." Some authoring tools will have several different
types of view, and some allow views of several documents at once. For instance,
one view may show raw markup, a second may show a structured tree, a third may
show markup with rendered objects while a final view shows an example of how
the document may appear if it were to be rendered by a particular browser. A
typical way to distinguish views in a graphic environment is to place each in a
separate window.</dd>
</dl>

<h2>4. <a name="acknowledgments">Acknowledgments</a></h2>

<p>Many thanks to the following people who have contributed through review and
comment: Jim Allan, Denis Anson, Kitch Barnicle, Kynn Bartlett, Harvey Bingham,
Judy Brewer, Carl Brown, Dick Brown, Wendy Chisholm, Aaron Cohen, Rob Cumming,
Daniel Dardailler, Mark Day, BK Delong, Martin D&uuml;rst, Kelly Ford, Jamie
Fox, Edna French, Sylvain Galineau, Al Gilman, Jon Gunderson, Eric Hansen,
Phill Jenkins, Len Kasday, Brian Kelly, Marja-Riitta Koivunen, Sho Kuwamoto,
Jaap van Lelieveld, Susan Lesch, William Loughborough, Greg Lowney, Karen
McCall, Thierry Michel, Charles Oppermann, Dave Pawson, Dave Poehlman, Loretta
Reid, Bruce Roberts, Chris Ridpath, Gregory Rosmaita, Bridie Saccocio, Janina
Sajka, John Slatin, Jim Thatcher, Ir&egrave;ne Vatton, Gregg Vanderheiden,
Pawan Vora, Jason White, and Lauren Wood.</p>

<!--NewPage--><!-- this is for html2ps -->
<h2>5. <a name="references">References</a></h2>

<p>For the latest version of any <abbr title="the World Wide Web Consortium">
W3C</abbr> specification please consult the list of <a href= 
"http://www.w3.org/TR"><abbr title="the World Wide Web Consortium">W3C</abbr>
Technical Reports</a> at http://www.w3.org/TR.</p>

<dl>
<dt><a name="ref-ATAG10-CHECKLIST"><b>[ATAG10-CHECKLIST]</b></a></dt>

<dd>An appendix to this document lists all of the checkpoints, sorted by
priority. The checklist is available in either <a rel="Appendix" title="Tabular 
form of ATAG Checklist" href="atag10-chktable.html">tabular
form</a> (at http://www.w3.org/TR/2000/REC-ATAG10-20000203/atag10-chktable) or <a rel="Appendix" title="List 
form of ATAG Checklist" href="atag10-chklist.html">list form</a> (at
http://www.w3.org/TR/2000/REC-ATAG10-20000203/atag10-chklist).</dd>

<dt><a name="ref-ATAG10-TECHS"><b>[ATAG10-TECHS]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/ATAG10-TECHS">Techniques for Authoring Tool Accessibility Guidelines 1.0</a>," J. Treviranus,
J. Richards, I. Jacobs, and C. McCathieNevile eds. The latest version is
available at http://www.w3.org/TR/ATAG10-TECHS.</dd>

<dt><a name="ref-CONFORMANCE"><b>[CONFORMANCE]</b></a></dt>

<dd>"<a href="http://www.w3.org/WAI/ATAG10-Conformance.html">Conformance icons
for <abbr>ATAG</abbr> 1.0</a>." Information about ATAG 1.0 conformance icons is
available at http://www.w3.org/WAI/ATAG10-Conformance.</dd>

<dt><a name="ref-CSS1"><b>[CSS1]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/1999/REC-CSS1-19990111">CSS, level 1
Recommendation</a>," B. Bos and H. Wium Lie, eds., 17 December 1996, revised 11
January 1999. This CSS1 Recommendation is
http://www.w3.org/TR/1999/REC-CSS1-19990111. The <a href= 
"http://www.w3.org/TR/REC-CSS1">latest version of CSS1</a> is available at
http://www.w3.org/TR/REC-CSS1. <strong>Note:</strong> CSS1 has been superseded
by CSS2. Tools should implement the CSS2 cascade.</dd>

<dt><a name="ref-CSS2"><b>[CSS2]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/1998/REC-CSS2-19980512">CSS, level 2
Recommendation</a>," B. Bos, H. Wium Lie, C. Lilley, and I. Jacobs, eds., 12
May 1998. This CSS2 Recommendation is
http://www.w3.org/TR/1998/REC-CSS2-19980512. The <a href= 
"http://www.w3.org/TR/REC-CSS2">latest version of CSS2</a> is available at
http://www.w3.org/TR/REC-CSS2.</dd>

<dt><a name="ref-HTML4"><b>[HTML4]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/1999/REC-html401-19991224">HTML 4.01
Recommendation</a>," D. Raggett, A. Le Hors, and I. Jacobs, eds., 24 December
1999. This HTML 4.01 Recommendation is
http://www.w3.org/TR/1999/REC-html401-19991224. The <a href= 
"http://www.w3.org/TR/html4">latest version of HTML 4</a> is available at
http://www.w3.org/TR/html4.</dd>

<dt><a name="ref-MATHML"><b>[MATHML]</b></a></dt>

<dd>"<a href="http://www.w3.org/1999/07/REC-MathML-19990707">Mathematical
Markup Language</a>," P. Ion and R. Miner, eds., 7 April 1998, revised 7 July
1999. This MathML 1.0 Recommendation is
http://www.w3.org/TR/1998/REC-MathML-19990707. The <a href= 
"http://www.w3.org/TR/REC-MathML">latest version of MathML 1.0</a> is available
at http://www.w3.org/TR/REC-MathML.</dd>

<dt><a name="ref-RDF10"><b>[RDF10]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/1999/REC-rdf-syntax-19990222">Resource
Description Framework (RDF) Model and Syntax Specification</a>," O. Lassila, R.
Swick, eds. The 22 February 1999 Recommendation is
http://www.w3.org/TR/1999/REC-rdf-syntax-19990222. The <a href= 
"http://www.w3.org/TR/REC-rdf-syntax">latest version of RDF 1.0</a> is
available at http://www.w3.org/TR/REC-rdf-syntax.</dd>

<dt><a name="ref-SVG"><b>[SVG]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/SVG">Scalable Vector Graphics (SVG) 1.0
Specification (Working Draft)</a>," J. Ferraiolo, ed. The latest version of the
SVG specification is available at http://www.w3.org/TR/SVG.</dd>

<dt><a name="ref-UAAG10-TECHS"><b>[UAAG10-TECHS]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/UAAG10-TECHS/">Techniques for User Agent
Accessibility Guidelines 1.0</a>," J. Gunderson, and I. Jacobs, eds. The <a
href="http://www.w3.org/TR/UAAG10-TECHS/">latest version of Techniques for User
Agent Accessibility Guidelines 1.0</a> is available at
http://www.w3.org/TR/UAAG10-TECHS/.</dd>

<dt><a name="ref-WCAG10"><b>[WCAG10]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/1999/WAI-WEBCONTENT-19990505">Web Content
Accessibility Guidelines 1.0</a>," W. Chisholm, G. Vanderheiden, and I. Jacobs,
eds., 5 May 1999. This Recommendation is
http://www.w3.org/TR/1999/WAI-WEBCONTENT-19990505. The latest version of the <a
href="http://www.w3.org/TR/WCAG10/">Web Content Accessibility Guidelines
1.0"</a> is available at http://www.w3.org/TR/WCAG10/.</dd>

<dt><a name="ref-WCAG10-TECHS"><b>[WCAG10-TECHS]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/WCAG10-TECHS/">Techniques for Web Content
Accessibility Guidelines 1.0</a>," W. Chisholm, G. Vanderheiden, and I. Jacobs,
eds. The <a href="http://www.w3.org/TR/WCAG10-TECHS/">latest version of
Techniques for Web Content Accessibility Guidelines 1.0</a> is available at
http://www.w3.org/TR/WCAG10-TECHS/.</dd>

<dt><a name="ref-XML"><b>[XML]</b></a></dt>

<dd>"<a href="http://www.w3.org/TR/1998/REC-xml-19980210">The Extensible Markup
Language (XML) 1.0</a>," T. Bray, J. Paoli, C. M. Sperberg-McQueen, eds., 10
February 1998. This XML 1.0 Recommendation is
http://www.w3.org/TR/1998/REC-xml-19980210. The <a href= 
"http://www.w3.org/TR/REC-xml">latest version of the XML specification</a> is
available at http://www.w3.org/TR/REC-xml.</dd>
</dl>

<p><a href="http://www.w3.org/WAI/WCAG1AA-Conformance" title="Explanation of 
Level Double-A Conformance"><img class="conform" height="32" width="88" src= 
"http://www.w3.org/WAI/wcag1AA" alt=
"Level Double-A conformance icon, W3C-WAI Web Content Accessibility Guidelines 1.0">
</a></p>

<div class="navbar">
<hr class="navbar" title="Navigation area separator">[<a accesskey="c" href= 
"#toc">contents</a>] &nbsp; [<a href=
"atag10-chktable.html">tabular checklist</a>] &nbsp; [<a href= 
"atag10-chklist.html">linear checklist</a>] &nbsp;</div>
</body>
</html>