-
Notifications
You must be signed in to change notification settings - Fork 125
/
index.html
2705 lines (2613 loc) · 116 KB
/
index.html
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
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<title>Digital Publishing Accessibility API Mappings 1.1</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove"></script>
<script src="../common/script/resolveReferences.js" class="remove"></script>
<link href="../common/css/mapping-tables.css" rel="stylesheet" type="text/css" />
<link href="../common/css/common.css" rel="stylesheet" type="text/css" />
<script class="remove">
var respecConfig = {
github: "w3c/dpub-aam",
doJsonLd: true,
// specification status (e.g., WD, LC, NOTE, etc.). If in doubt use ED.
specStatus: "WD",
crEnd: "2023-07-29",
//perEnd: "2013-07-23",
// the specifications short name, as in http://www.w3.org/TR/short-name/
shortName: "dpub-aam-1.1",
implementationReportURI: "https://w3c.github.io/test-results/dpub-aam/",
// if you wish the publication date to be other than today, set this
// publishDate: "2009-08-06",
copyrightStart: "2015",
license: "w3c-software-doc",
// if there is a previously published draft, uncomment this and set its YYYY-MM-DD date
// and its maturity status
//previousPublishDate: "2014-03-20",
//previousMaturity: "REC",
//prevRecURI: "http://www.w3.org/TR/2014/REC-wai-aria-implementation-20140320/",
//previousDiffURI: "http://www.w3.org/TR/2014/REC-wai-aria-implementation-20140320/",
// if there a publicly available Editors Draft, this is the link
edDraftURI: "https://w3c.github.io/dpub-aam/",
// if this is a LCWD, uncomment and set the end of its review period
// lcEnd: "2012-02-21",
// editors, add as many as you like
// only "name" is required
editors: [
{
name: "Matt Garrish",
company: "DAISY Consortium",
companyURL: "https://daisy.org",
w3cid: 51655,
},
{
name: "Tzviya Siegman",
url: "http://www.wiley.com",
company: "Wiley",
companyURI: "https://www.wiley.com",
w3cid: 65542,
},
],
formerEditors: [
{
name: "Joanmarie Diggs",
mailto: "[email protected]",
company: "Igalia, S.L.",
companyURI: "https://www.igalia.com",
w3cid: 68182,
},
{ name: "Richard Schwerdtfeger", mailto: "[email protected]", company: "Knowbility", companyURI: "https://www.knowbility.org/", w3cid: 2460 },
],
// authors, add as many as you like.
// This is optional, uncomment if you have authors as well as editors.
// only "name" is required. Same format as editors.
//authors: [
// { name: "Your Name", url: "http://example.org/",
// company: "Your Company", companyURI: "http://example.com/" },
//],
/*
alternateFormats: [
{ uri: 'dpub-aam-diff.html',
label: "Diff from Previous Recommendation" } ,
{ uri: 'dpub-aam.ps',
label: "PostScript version" },
{ uri: 'dpub-aam.pdf',
label: "PDF version" }
],
*/
// Working group info
group: "aria",
wgPublicList: "public-aria",
tocIntroductory: true,
//maxTocLevel: 4,
ariaSpecURLs: {
ED: "https://w3c.github.io/aria/",
FPWD: "https://www.w3.org/TR/wai-aria-1.2/",
WD: "https://www.w3.org/TR/wai-aria-1.2/",
CR: "https://www.w3.org/TR/wai-aria-1.2/",
REC: "https://www.w3.org/TR/wai-aria-1.2/",
},
coreMappingURLs: {
ED: "https://w3c.github.io/core-aam/",
WD: "https://www.w3.org/TR/core-aam-1.2/",
FPWD: "https://www.w3.org/TR/core-aam-1.2/",
CR: "https://www.w3.org/TR/core-aam-1.2/",
REC: "https://www.w3.org/TR/core-aam-1.2/",
},
dpubModURLs: {
ED: "https://w3c.github.io/dpub-aria/",
FPWD: "https://www.w3.org/TR/dpub-aria-1.1/",
WD: "https://www.w3.org/TR/dpub-aria-1.1/",
CR: "https://www.w3.org/TR/dpub-aria-1.1/",
REC: "https://www.w3.org/TR/dpub-aria-1.1/",
},
htmlMappingURLs: {
ED: "https://w3c.github.io/html-aam/",
FPWD: "https://www.w3.org/TR/html-aam-1.0/",
WD: "https://www.w3.org/TR/html-aam/",
CR: "https://www.w3.org/TR/html-aam/",
REC: "https://www.w3.org/TR/html-aam/",
},
graphicsMappingModURLs: {
ED: "https://w3c.github.io/graphics-aam/",
FPWD: "https://www.w3.org/TR/graphics-aam/",
WD: "https://www.w3.org/TR/graphics-aam/",
CR: "https://www.w3.org/TR/graphics-aam/",
REC: "https://www.w3.org/TR/graphics-aam/",
},
graphicsModURLs: {
ED: "https://w3c.github.io/graphics-aria/",
FPWD: "https://www.w3.org/TR/graphics-aria/",
WD: "https://www.w3.org/TR/graphics-aria/",
CR: "https://www.w3.org/TR/graphics-aria/",
REC: "https://www.w3.org/TR/graphics-aria/",
},
practicesURLs: {
ED: "https://www.w3.org/WAI/ARIA/apg/",
FPWD: "https://www.w3.org/WAI/ARIA/apg/",
WD: "https://www.w3.org/WAI/ARIA/apg/",
CR: "https://www.w3.org/WAI/ARIA/apg/",
REC: "https://www.w3.org/WAI/ARIA/apg/",
},
accNameURLs: {
ED: "https://w3c.github.io/accname/",
WD: "https://www.w3.org/TR/accname-1.2/",
FPWD: "https://www.w3.org/TR/accname-1.2/",
CR: "https://www.w3.org/TR/accname-1.2/",
REC: "https://www.w3.org/TR/accname-1.2/",
},
preProcess: [linkCrossReferences],
postProcess: [],
xref: ["core-aam", "wai-aria", "dom", "infra", "accname"],
lint: {
"privsec-section": false,
},
};
</script>
<script src="../common/biblio.js" class="remove"></script>
</head>
<body>
<section id="abstract">
<p>
The Digital Publishing Accessibility API Mappings (DPub-AAM) defines how [=user agents=] map the Digital Publishing WAI-ARIA Module [[dpub-aria-1.1]] markup to platform
<a class="termref">accessibility <abbr title="Application Programming Interfaces">APIs</abbr></a
>. It is intended for user agent developers responsible for accessibility in their user agent so that they can support the accessibility content produced for digital publishing.
</p>
</section>
<section id="sotd">
<p>
The primary change since the First Public Working Draft was to update the Mac AX API mappings to add the AXCustomContent fields for announcing roles. Feedback on any aspect of the
specification is encouraged. A list of all substantive changes is available in the <a href="#changelog">change log</a>.
</p>
</section>
<section id="intro" class="informative">
<h2>Introduction</h2>
<p>
The implementation of this specification in user agents enables authors to produce more accessible e-books, by conveying structural book constructs used by the digital publishing industry to
assistive technologies. It does this by extending the <cite><a href="https://www.w3.org/TR/core-aam-1.1/">Core Accessibility API Mappings 1.1</a></cite> [[CORE-AAM-1.1]] and the
<cite><a href="https://www.w3.org/TR/accname-1.2/">Accessible Name and Description: Computation 1.2</a></cite> [[ACCNAME-1.2]] specifications for user agents. It provides Accessibility API
Mapping guidance for the roles defined in the Digital Publish WAI-ARIA Module.
</p>
<p>
The DPub-AAM is part of the <abbr title="Accessible Rich Internet Applications">WAI-ARIA</abbr> suite described in the
<a href="https://www.w3.org/WAI/intro/aria.php"><abbr title="Accessible Rich Internet Application">WAI-ARIA</abbr> Overview</a>.
</p>
</section>
<section id="conformance" class="normative">
<section id="rfc-2119-keywords">
<h3>RFC-2119 Keywords</h3>
<p>
RFC-2119 keywords are formatted in uppercase and contained in a <code>strong</code> element with <code>class="rfc2119"</code>. When the keywords shown above are used, but do not share this
format, they do not convey formal information in the RFC 2119 sense, and are merely explanatory (i.e., informative). As much as possible, such usages are avoided in this specification.
</p>
</section>
<section id="normative-and-informative-sections">
<h3>Normative and Informative Sections</h3>
<p>The indication whether a section is normative or non-normative (informative) applies to the entire section including sub-sections.</p>
<p>
Informative sections provide information useful to understanding the specification. Such sections may contain examples of recommended practice, but it is not required to follow such
recommendations in order to conform to this specification.
</p>
</section>
<section id="dpub-deprecated-roles">
<h3>Roles deprecated in DPUB-ARIA</h3>
<p>
The DPUB-ARIA specification [[dpub-aria-1.1]] lists some roles as deprecated. Although this means authors are encouraged not to use these roles, it is expected that the roles could still be
used in legacy content. Therefore, it is important that user agents continue to map these roles to accessibility APIs, and doing so is part of conformance to this specification. When future
versions of the DPUB-ARIA specification change such roles from deprecated to removed, they will be removed from the mappings as well and user agents will no longer be asked to continue
support for those roles.
</p>
</section>
</section>
<section class="section" id="keyboard-focus">
<h2>Supporting keyboard navigation</h2>
<p>
Enabling keyboard navigation in web applications is a necessary step toward making accessible web applications possible. Conforming [=user agents=] <span class="rfc2119">MUST</span> conform to
<a class="core-mapping" data-cite="core-aam-1.1#keyboard-focus">Supporting Keyboard Navigation</a> requirements in [[!CORE-AAM-1.1]].
</p>
</section>
<section id="mapping">
<h2>Mapping <abbr title="Accessible Rich Internet Application">WAI-ARIA</abbr> to accessibility <abbr title="Application Programming Interfaces">APIs</abbr></h2>
<section id="mapping_general">
<h3>General rules for exposing <abbr title="Accessible Rich Internet Application">WAI-ARIA</abbr> semantics</h3>
<p>
This section <span class="rfc2119">MUST</span> conform to <a class="core-mapping" data-cite="core-aam-1.1#mapping_general">General rules for exposing WAI-ARIA semantics</a> in
[[!CORE-AAM-1.1]].
</p>
</section>
</section>
<section id="mapping_conflicts">
<h2>Conflicts between native markup semantics and <abbr title="Accessible Rich Internet Application">WAI-ARIA</abbr></h2>
<p>
User agents <span class="rfc2119">MUST</span> conform to <a class="core-mapping" data-cite="core-aam-1.1#mapping_conflicts">Conflicts between native markup semantics and WAI-ARIA</a> in
[[!CORE-AAM-1.1]].
</p>
</section>
<section id="mapping_nodirect">
<h2>Exposing attributes that do not directly map to accessibility <abbr title="application programming interface">API</abbr> properties</h2>
<p>
User agents <span class="rfc2119">MUST</span> conform to
<a class="core-mapping" data-cite="core-aam-1.1#mapping_nodirect"
>Exposing attributes that do not directly map to accessibility <abbr title="application programming interface">API</abbr> properties</a
>
in [[!CORE-AAM-1.1]].
</p>
</section>
<section id="mapping_role">
<h2>Role mapping</h2>
<p>
Platform <a class="termref">accessibility <abbr title="Application Programming Interfaces">APIs</abbr></a> traditionally have had a finite set of predefined <a class="termref">roles</a> that
are expected by <a class="termref">assistive technologies</a> on that platform and only one or two roles may be exposed. In contrast,
<abbr title="Accessible Rich Internet Application">WAI-ARIA</abbr> allows multiple roles to be specified as an ordered set of space-separated valid role tokens. The additional roles are
fallback roles similar to the concept of specifying multiple fonts in case the first choice font type is not supported.
</p>
<section id="roleMappingGeneralRules">
<h3>General Rules</h3>
<p>
User agents <span class="rfc2119">MUST</span> conform to the Role Mapping <a class="core-mapping" data-cite="core-aam-1.1#roleMappingGeneralRules">General Rules</a> accessibility API
computational requirements in [[!CORE-AAM-1.1]].
</p>
</section>
<section id="mapping_role_table">
<h3>Role Mapping Tables</h3>
<p class="note">
Translators: For label text associated with the following table and its toggle buttons, see the <code>mappingTableLabels</code> object in the <code><head></code> section of this
document.
</p>
<p>
This section defines how WAI-ARIA digital publishing roles map to platform accessibility APIs. Elements having roles with a prefix value of <code>doc-</code>, that are not listed in this
role mapping table, have no normative mappings.
</p>
<section id="doc-abstract">
<h4 id="role-map-abstract"><code>doc-abstract</code></h4>
<table aria-labelledby="role-map-abstract">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-abstract"><code>doc-abstract</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-abstract</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_SECTION</code></li>
<li>Object attribute <code>xml-roles:doc-abstract</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>abstract</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_SECTION</code> and object attribute <code>xml-roles:doc-abstract</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXApplicationGroup</code></li>
<li>AXRoleDescription: <code>'group'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "abstract" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-acknowledgments">
<h4 id="role-map-acknowledgments"><code>doc-acknowledgments</code></h4>
<table aria-labelledby="role-map-acknowledgments">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-acknowledgments"><code>doc-acknowledgments</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-acknowledgments</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_LANDMARK</code></li>
<li>Object attribute <code>xml-roles:doc-acknowledgments</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>acknowledgements</code>'</li>
<li>Landmark Type is <code>Custom</code></li>
<li>Localized Landmark Type is '<code>acknowledgements</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>
Expose <code><code>ROLE_LANDMARK</code></code> and object attribute <code>xml-roles:doc-acknowledgments</code>.
</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXLandmarkRegion</code></li>
<li>AXRoleDescription: <code>'region'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "acknowledgements" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-afterword">
<h4 id="role-map-afterword"><code>doc-afterword</code></h4>
<table aria-labelledby="role-map-afterword">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-afterword"><code>doc-afterword</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-afterword</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_LANDMARK</code></li>
<li>Object attribute <code>xml-roles:doc-afterword</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>afterword</code>'</li>
<li>Landmark Type is <code>Custom</code></li>
<li>Localized Landmark Type is '<code>afterword</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LANDMARK</code> and object attribute <code>xml-roles:doc-afterword</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXLandmarkRegion</code></li>
<li>AXRoleDescription: <code>'region'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "afterword" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-appendix">
<h4 id="role-map-appendix"><code>doc-appendix</code></h4>
<table aria-labelledby="role-map-appendix">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-appendix"><code>doc-appendix</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-appendix</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_LANDMARK</code></li>
<li>Object attribute <code>xml-roles:doc-appendix</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>appendix</code>'</li>
<li>Landmark Type is <code>Custom</code></li>
<li>Localized Landmark Type is '<code>appendix</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LANDMARK</code> and object attribute <code>xml-roles:doc-appendix</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXLandmarkRegion</code></li>
<li>AXRoleDescription: <code>'region'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "appendix" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-backlink">
<h4 id="role-map-backlink"><code>doc-backlink</code></h4>
<table aria-labelledby="role-map-backlink">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-backlink"><code>doc-backlink</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-backlink</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose
<ul>
<li><code>ROLE_SYSTEM_LINK</code> + <code>STATE_LINKED</code></li>
<li><code>STATE_LINKED</code> on all descendants</li>
</ul>
<p>IAccessible2:</p>
<ul>
<li>Object attribute <code>xml-roles:doc-backlink</code>.</li>
<li><code>AccessibleHypertext</code> interface</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>backlink</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LINK</code> and object attribute <code>xml-roles:doc-backlink</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXLink</code></li>
<li>AXSubrole: <code><nil></code></li>
<li>AXRoleDescription: <code>'link'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "back" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-biblioentry">
<h4 id="role-map-biblioentry"><code>doc-biblioentry</code></h4>
<table aria-labelledby="role-map-biblioentry">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-biblioentry"><code>doc-biblioentry</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-biblioentry</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose
<p>
<code>ROLE_SYSTEM_LISTITEM</code> +
<code>STATE_SYSTEM_READONLY</code>
</p>
<p>IAccessible2:</p>
<p>Object attribute <code>xml-roles:doc-biblioentry</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>biblioentry</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LIST_ITEM</code> and object attribute <code>xml-roles:doc-bilioentry</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code><nil></code></li>
<li>AXRoleDescription: <code>'group'</code></li>
<li>AXCustomContent: <code>{}</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-bibliography">
<h4 id="role-map-bibliography"><code>doc-bibliography</code></h4>
<table aria-labelledby="role-map-bibliography">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-biblioentry"><code>doc-bibliography</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-bibliography</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_LANDMARK</code></li>
<li>Object attribute <code>xml-roles:doc-bibliography</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>bibliography</code>'</li>
<li>Landmark Type is <code>Custom</code></li>
<li>Localized Landmark Type is '<code>biblography</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LANDMARK</code> and object attribute <code>xml-roles:doc-bibliography</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXLandmarkRegion</code></li>
<li>AXRoleDescription: <code>'region'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "bibliography" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-biblioref">
<h4 id="role-map-biblioref"><code>doc-biblioref</code></h4>
<table aria-labelledby="role-map-biblioref">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-biblioref"><code>doc-biblioref</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-biblioref</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose
<ul>
<li><code>ROLE_SYSTEM_LINK</code> + <code>STATE_LINKED</code></li>
<li><code>STATE_LINKED</code> on all descendants</li>
</ul>
<p>IAccessible2:</p>
<ul>
<li>Object attribute <code>xml-roles:doc-biblioref</code>.</li>
<li><code>AccessibleHypertext</code> interface</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>biblioref</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LINK</code> and object attribute <code>xml-roles:doc-biblioref</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXLink</code></li>
<li>AXSubrole: <code><nil></code></li>
<li>AXRoleDescription: <code>'link'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "bibliography" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-chapter">
<h4 id="role-map-chapter"><code>doc-chapter</code></h4>
<table aria-labelledby="role-map-chapter">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-chapter"><code>doc-chapter</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-chapter</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_LANDMARK</code></li>
<li>Object attribute <code>xml-roles:doc-chapter</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>chapter</code>'</li>
<li>Landmark Type is <code>Custom</code></li>
<li>Localized Landmark Type is '<code>chapter</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LANDMARK</code> and object attribute <code>xml-roles:chapter</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXLandmarkChapter</code></li>
<li>AXRoleDescription: <code>'chapter'</code></li>
<li>AXCustomContent: <code>{}</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-colophon">
<h4 id="role-map-colophon"><code>doc-colophon</code></h4>
<table aria-labelledby="role-map-colophon">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-colophon"><code>doc-colophon</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-colophon</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose
<p><code>IA2_ROLE_SECTION</code></p>
<p>IAccessible2: Object attribute <code>xml-roles:doc-colophon</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>colophon</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_SECTION</code> and object attribute <code>xml-roles:doc-colophon</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXApplicationGroup</code></li>
<li>AXRoleDescription: <code>'group'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "colophon" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-conclusion">
<h4 id="role-map-conclusion"><code>doc-conclusion</code></h4>
<table aria-labelledby="role-map-conclusion">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-conclusion"><code>doc-conclusion</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-conclusion</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose IAccessible2:
<ul>
<li><code>IA2_ROLE_LANDMARK</code></li>
<li>Object attribute <code>xml-roles:doc-conclusion</code>.</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>conclusion</code>'</li>
<li>Landmark Type is <code>Custom</code></li>
<li>Localized Landmark Type is '<code>conclusion</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_LANDMARK</code> and object attribute <code>xml-roles:doc-conclusion</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>
<li>AXSubrole: <code>AXLandmarkRegion</code></li>
<li>AXRoleDescription: <code>'region'</code></li>
<li>AXCustomContent: <code>{ label: "type", value: "conclusion" }</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-cover">
<h4 id="role-map-cover"><code>doc-cover</code></h4>
<table aria-labelledby="role-map-cover">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-cover"><code>doc-cover</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-cover</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose
<p><code>ROLE_SYSTEM_GRAPHIC</code></p>
<p>IAccessible2: Object attribute <code>xml-roles:doc-cover</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>Control Type is <code>Image</code></td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>expose <code>ROLE_IMAGE</code> and object attribute <code>xml-roles:doc-cover</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXImage</code></li>
<li>AXSubrole: <code><nil></code></li>
<li>AXRoleDescription: <code>'cover image'</code></li>
<li>AXCustomContent: <code>{}</code></li>
</ul>
</td>
</tr>
</tbody>
</table>
</section>
<section id="doc-credit">
<h4 id="role-map-credit"><code>doc-credit</code></h4>
<table aria-labelledby="role-map-credit">
<tbody>
<tr>
<th>DPUB-ARIA Specification</th>
<td>
<a class="dpub-role-reference" href="#doc-cover"><code>doc-credit</code></a>
</td>
</tr>
<tr>
<th><a class="core-mapping" data-cite="core-aam-1.2#roleMappingComputedRole">Computed Role</a></th>
<td><code>doc-credit</code></td>
</tr>
<tr>
<th>MSAA + IAccessible2 Role + Other IAccessible2 Features</th>
<td>
Expose
<p><code>IA2_ROLE_SECTION</code></p>
<p>IAccessible2:</p>
Object attribute
<code>xml-roles:doc-credit</code>
</td>
</tr>
<tr>
<th><abbr title="User Interface Automation">UIA</abbr> Control Type + Other Features</th>
<td>
<ul>
<li>Control Type is <code>Text</code></li>
<li>Localized Control Type is '<code>credit</code>'</li>
</ul>
</td>
</tr>
<tr>
<th><abbr title="Accessibility Toolkit">ATK</abbr>/<abbr title="Assistive Technology - Service Provider Interface">AT-SPI</abbr> Role</th>
<td>
<p>Expose <code>ROLE_SECTION</code> and object attribute <code>xml-roles:doc-credit</code>.</p>
</td>
</tr>
<tr>
<th><abbr title="Mac OS X Accessibility Protocol">Mac AX API</abbr></th>
<td>
<ul>
<li>AXRole: <code>AXGroup</code></li>