-
Notifications
You must be signed in to change notification settings - Fork 13
/
html.html
3560 lines (3436 loc) · 181 KB
/
html.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 lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>JAWS HTML Support</title>
<script src="scripts/html5shiv.js"></script>
<link rel="stylesheet" href="./assets/style/styles.css">
<style>
svg {
fill: green;
}
svg.no {
fill: red;
}
svg.unknown {
fill: red;
}
</style>
</head>
<body>
<header> <img src="./assets/images/HTML5_Logo.png" alt="HTML5 logo" id="logo">
<h1>Jaws HTML Support</h1>
<p> A Work <em>in progress</em>: Last updated 20 May 2024. </p>
<p><strong>Editors:</strong> Steve Faulkner </p>
<p><strong>Github Repo:</strong> <a href="https://github.com/FreedomScientific/standards-support">FreedomScientific/standards-support</a>
</p>
<p>Found a bug? Please <a href="https://github.com/FreedomScientific/standards-support/issues?state=open">report
it</a>. </p>
</header>
<main>
<h2>How HTML elements are supported by screen readers</h2>
<p> Typical support patterns of HTML elements by screen readers: </p>
<ul>
<li> Identification of an element by role as the user moves
through the content. </li>
<li> Announcement of the text content of an element. </li>
<li> Announcement of the start and end of an element. </li>
<li> Change in voice as the content of an element is announced.
</li>
<li> Announcement of an elements accessible name and/or
description </li>
<li> Announcement of states and properties. </li>
<li> Emission of a beep or other sound when an element with a
particular state or property receives <a href="http://juicystudio.com/article/making-ajax-work-with-screen-readers.php#jawsvirtual">virtual
focus</a>. </li>
<li> Instructions on how to operate interactive elements such as
form controls. </li>
<li> Navigation of elements by keyboard and “quick access” lists
of a particular elements, list items are linked to each
instance of an element on the page. </li>
</ul>
<p> <strong>Note:</strong> The combination of patterns supported
varies from element to element and support for a particular
element varies between screen reader software. </p>
<h2>Support legend</h2>
<ul>
<li><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48 48zm-204.686-98.059l184-184c6.248-6.248
6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0 22.627l104
104c6.249 6.25 16.379 6.25 22.628.001z"></path> </svg>
means were have found this feature to be implemented
interoperably (across multiple browsers)</li>
<li><svg viewBox="0 0 512 512" width="20" role="img" aria-label="no" class="no"><path d="M464 32H48C21.5 32 0
53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8
12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256
313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4
0l-40.5-40.5c-4.8-4.8-4.8-12.6
0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6
0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1
66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8 4.8
12.6 0 17.4L313.3 256l67.1 66.5z"></path></svg> means we
have found that this feature is not implemented</li>
<li><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48
48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92
296c-6.6 0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0
12 5.4 12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg>
means the element has no expected semantics.</li>
<li><svg viewBox="0 0 512 512" width="20" aria-label="question
mark" class="unknown" role="img"><path d="M504 256c0
136.997-111.043 248-248 248S8 392.997 8 256C8 119.083
119.043 8 256 8s248 111.083 248 248zM262.655 90c-54.497
0-89.255 22.957-116.549 63.758-3.536 5.286-2.353 12.415
2.715 16.258l34.699 26.31c5.205 3.947 12.621 3.008
16.665-2.122 17.864-22.658 30.113-35.797 57.303-35.797
20.429 0 45.698 13.148 45.698 32.958 0 14.976-12.363
22.667-32.534 33.976C247.128 238.528 216 254.941 216
296v4c0 6.627 5.373 12 12 12h56c6.627 0 12-5.373
12-12v-1.333c0-28.462 83.186-29.647 83.186-106.667
0-58.002-60.165-102-116.531-102zM256 338c-25.365 0-46
20.635-46 46 0 25.364 20.635 46 46 46s46-20.636
46-46c0-25.365-20.635-46-46-46z"></path></svg> means we
are unsure whether this feature is supported, this may be due
to lack of testing or lack of clarity around what 'support' of
this feature is supposed to convey to the user.</li>
</ul>
<p class="note"> JAWS testing - In progress </p>
<table class="alt">
<caption> JAWS (2024 ) HTML Support (Chrome Version
121.0.6167.161 (Official Build) (64-bit) on Windows 11) </caption>
<thead> <tr>
<th scope="col">Element</th>
<th scope="col">Test Case</th>
<th scope="col">Represents</th>
<th scope="col">AURAL UI</th>
<th scope="col">Interaction</th>
<th scope="col" style="width: 84px">Supported</th>
<th scope="col">Notes</th>
</tr>
</thead> <tbody>
<tr id="toc-a">
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-a-element"><code>a</code></a>
</th>
<td>
<p> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/a-href.html"><code>a</code>
with <code>href</code> test</a> </p>
<p> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/a-no-href.html"><code>a</code>
with no <code>href</code> test</a> </p>
</td>
<td>
<p> <strong>With <code>href</code>:</strong> a hyperlink
</p>
<p> <strong>With no <code>href</code>:</strong> an
anchor </p>
</td>
<td>
<p> <strong>With <code>href</code>:</strong> <em>element
content</em> "link" </p>
<p> <strong>With no <code>href</code>:</strong> <em>element
content</em> </p>
</td>
<td>
<p><strong>With <code>href</code>:</strong></p>
<ul>
<li>List Links <kbd>INSERT+F7</kbd></li>
<li>Next Link <code><kbd>TAB</kbd></code></li>
<li>Prior Link <kbd>SHIFT+TAB</kbd></li>
<li>Next Visited <kbd>Link V</kbd></li>
<li>Prior Visited Link <kbd>SHIFT+V</kbd></li>
<li>Open Link <kbd>ENTER</kbd></li>
<li>Open Link in New Window <kbd>SHIFT+ENTER</kbd></li>
<li>Next Non Link Text <kbd>N</kbd></li>
<li>Prior Non Link Text <kbd>SHIFT+N</kbd></li>
</ul>
<p> <strong>With no <code>href</code>:</strong> no
special commands </p>
</td>
<td>
<p> <strong>With <code>href</code>:</strong>
<svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51
0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51
0 48 21.49 48 48v352c0 26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg> </p>
<p> With no <code>href</code>:
<svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected"><path d="M400 32H48C21.5 32
0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0
48-21.5 48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12
5.4 12 12v56c0 6.6-5.4 12-12 12H92z"></path></svg></p>
</td>
<td>
<p> <strong>With <code>href</code>:</strong> </p>
<p>Link role announced before link text when cursored to,
after via tab. </p>
<ul>
<li>By Default, JAWS speaks the on screen text of a
link, but you can set JAWS to instead speak Title
text, assigned by the page author within the HTML
code. Title text normally provides supplemental
information about the link.</li>
<li>By default, JAWS announces the link type, but you
can disable this, so JAWS announces same page links,
send mail links, and FTP links as "link," or "Visited
Link."</li>
</ul>
<p>JAWS announces the type of link as follows:</p>
<ul>
<li><strong>Link:</strong> This indicates a link that
has not been visited.</li>
<li><strong>Visited Link:</strong> This indicates a link
that has been visited. This is determined by your
browser history, not by which links have been selected
on the current Web page.</li>
<li><strong>Same Page Link:</strong> This indicates a
link that moves you to another location on the same
page.</li>
<li><strong>Send Mail Link:</strong> This indicates a
link that opens a new e-mail message using your
default e-mail program. </li>
<li><strong>FTP Link:</strong> This indicates a link
that points to a FTP (File Transfer Protocol) server.</li>
</ul>
<p><strong>With no <code>href</code>:</strong></p>
<p>No semantics conveyed or expected as <code><a></code>
has a <code>role="generic"</code></p>
</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-abbr-element"><code>abbr</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/abbr.html"><code>abbr</code>
test</a> </td>
<td>An abbreviation</td>
<td><em>Element content</em></td>
<td>
<p>No special commands</p>
<p>JAWS can read <code>title</code> text associated with
abbreviations on web pages. <br>
To enable this feature, open Settings Center and expand
the Web/HTML/PDFs group. Next, expand the Reading group
and use the abbreviation and acronym options</p>
</td>
<td>
<p>By default
<svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5
21.5 48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12
5.4 12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg></p>
<p>Via preference
<svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51
0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51
0 48 21.49 48 48v352c0 26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg></p>
</td>
<td>
<p>No semantics conveyed by default</p>
<p>Note that expansions are not announced by default and
that expansions provided using the <code>title</code>
attribute are not available to keyboard only users.
Refer to <a href="https://www.paciellogroup.com/blog/2013/01/using-the-html-title-attribute-updated/">Using
the HTML title attribute</a>.</p>
</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-address-element"><code>address</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/address.html"><code>address</code>
test</a> </td>
<td>Contact information for a page or <a href="https://html.spec.whatwg.org/multipage/sections.html#the-article-element">article</a>
element</td>
<td><em>Element content</em> when no accessible name
present. </td>
<td>No special commands</td>
<td>
<p>no accessible name
<svg viewBox="0 0 512 512" width="20" role="img" aria-label="no" class="no"><path d="M464 32H48C21.5 32
0 53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0
48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-83.6
290.5c4.8 4.8 4.8 12.6 0 17.4l-40.5 40.5c-4.8
4.8-12.6 4.8-17.4 0L256 313.3l-66.5 67.1c-4.8
4.8-12.6 4.8-17.4 0l-40.5-40.5c-4.8-4.8-4.8-12.6
0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6
0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1
66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8
4.8 12.6 0 17.4L313.3 256l67.1 66.5z"></path></svg></p>
<p>With accessible name
<svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51
0-48-21.49-48-48V80c0-26.51 21.49-48 48-48h352c26.51
0 48 21.49 48 48v352c0 26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg></p>
</td>
<td>With accessible name <code>address</code> is announced
as a <code>group</code> Group - accessible name,
start/end.</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/image-maps.html#the-area-element"><code>area</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/area.html"><code>area</code>
test</a> </td>
<td>Hyperlink or dead area on an image map</td>
<td>
<p>"graphic"<em>, alt content </em>(when navigated using
the <kbd>arrow</kbd> keys or the link navigation keys.)</p>
<p><em>alt content</em>, "image map" (when navigated using
the <code>tab</code> key.</p>
</td>
<td>
<ul>
<li>List Links <kbd>INSERT+F7</kbd></li>
<li>Next Link <code><kbd>TAB</kbd></code></li>
<li>Prior Link <kbd>SHIFT+TAB</kbd></li>
<li>Next Visited <kbd>Link V</kbd></li>
<li>Prior Visited Link <kbd>SHIFT+V</kbd></li>
<li>Open Link <kbd>ENTER</kbd></li>
<li>Open Link in New Window <kbd>SHIFT+ENTER</kbd></li>
<li>Next Non Link Text <kbd>N</kbd></li>
<li>Prior Non Link Text <kbd>SHIFT+N</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td>Although area elements are links they are not conveyed
as links aurally.</td>
</tr>
<tr>
<th scope="row"> <a href="#"><code>aria-level</code></a> </th>
<td> <a href="#"><code>heading </code> level</a> </td>
<td>heading levels greater than 6 </td>
<td>not supported, all aria-level<code> </code>reported as
h2<br>
</td>
<td>
<ul>
</ul>
</td>
<td><svg viewBox="0 0 512 512" width="20" role="img" aria-label="no" class="no"><path d="M464 32H48C21.5 32 0
53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8
12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256
313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4
0l-40.5-40.5c-4.8-4.8-4.8-12.6
0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6
0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1
66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8
4.8 12.6 0 17.4L313.3 256l67.1 66.5z"></path></svg><br>
</td>
<td>Issue filed: <a href="https://github.com/FreedomScientific/standards-support/issues/814">JAWS
does not support aria-level on h1-h6</a></td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/sections.html#the-article-element"><code>article</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/article.html"><code>article</code>
test</a> </td>
<td>Self-contained syndicatable or reusable composition</td>
<td>"article" <em>element content</em> "article end"</td>
<td>
<ul>
<li>Move to Next Article <kbd>O</kbd> <br>
</li>
<li>Move to Previous Article <kbd>SHIFT+O</kbd> <br>
</li>
<li>Article List <kbd>INSERT+CTRL+O</kbd> <br>
</li>
</ul>
<ul>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td>Included as a navigable region < JAWS 2018</td>
</tr>
<tr id="jaws-el-aside" tabindex="-1">
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/sections.html#the-aside-element"><code>aside</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/aside.html"><code>aside</code>
test</a> </td>
<td>Sidebar for tangentially related content</td>
<td> "Complimentary information" <em>element content</em>
"complimentary information end" </td>
<td>
<ul>
<li>Move to Next Region <kbd>R</kbd> <br>
</li>
<li>Move to Previous Region <kbd>SHIFT+R</kbd> <br>
</li>
<li>Select a Region <kbd>INSERT+CTRL+R</kbd> <br>
</li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td>Included as a navigable region</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/media.html#the-audio-element"><code>audio</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/audio.html"><code>audio</code>
test</a> </td>
<td>Audio player</td>
<td>"audio" "group+<em>accessible name</em>" announces
controls as navigated.</td>
<td> If the audio element has a <code>controls</code>
attribute the buttons in the UI are navigable using <a href="#button-commands">button</a> commands. </td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td> </td>
</tr>
<tr id="toc-b">
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-b-element"><code>b</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/b.html"><code>b</code>
test</a> </td>
<td>Keywords</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td>Refer to: <a href="https://www.tpgi.com/screen-readers-support-for-text-level-html-semantics/">Scree Readers support for text level HTML semantics</a></td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/semantics.htmlthe-base-element"><code>base</code></a>
</th>
<td> No test </td>
<td> Base URL and default target <a href="https://html.spec.whatwg.org/multipage/document-sequences.html#browsing-context">browsing
context</a> for <a data-anolis-xref="attr-hyperlink-target" href="https://html.spec.whatwg.org/multipage/links.html#hyperlink">hyperlinks</a>
and <a data-anolis-xref="attr-fs-target" href="https://html.spec.whatwg.org/multipage/form-elements.html#forms-form-submission">forms</a>
</td>
<td><em>None expected</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td><strong>No UI</strong></td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-bdi-element"><code>bdi</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/bdi.html"><code>bdi</code>
test</a> </td>
<td>Text directionality isolation</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-bdo-element"><code>bdo</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/bdo.html"><code>bdo</code>
test</a> </td>
<td>Text directionality formatting</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-blockquote-element"><code>blockquote</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/blockquote-cite.html"><code>blockquote</code>
test</a> </td>
<td>A section quoted from another source</td>
<td>"Blockquote" <em>element content</em> "blockquote end"</td>
<td>
<ul>
<li>List Block quotes <kbd>CTRL+INSERT+Q</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td>Semantics conveyed via navigation and element name
announcement.</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/sections.html#the-body-element"><code>body</code></a>
</th>
<td> <a href="https://www.w3.org/html/wg/drafts/html/master/sections.html#the-body-element"><code>body</code>
test</a> </td>
<td>Document body</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td>
<p>No semantics conveyed</p>
<p>Is included in focus order in most browsers.</p>
</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-br-element"><code>br</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/br.html"><code>br</code>
test</a> </td>
<td>Line break, e.g. in poem or postal address</td>
<td> </td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected"><path d="M400 32H48C21.5 32 0
53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path></svg><br>
</td>
<td><em>Line break</em></td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/form-elements.html#the-button-element"><code>button</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/button.html"><code>button</code>
test</a> </td>
<td>Button control</td>
<td><em>text label</em> "button"</td>
<td>
<ul id="button-commands" tabindex="-1">
<li>List Buttons <kbd>CTRL+INSERT+B</kbd></li>
<li>Next Button <kbd>B</kbd></li>
<li>Previous button <kbd>B</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td>Semantics conveyed via navigation and element name
announcement</td>
</tr>
<tr id="toc-c">
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/canvas.html#the-canvas-element"><code>canvas</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/canvas.html"><code>canvas</code>
test</a> </td>
<td>Scriptable bitmap canvas</td>
<td><em>"graphic" element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td> The canvas is 'transparent' for screen reader users.
HTML content included in the <a href="https://www.tpgi.com/html5-canvas-sub-dom/">HTML5
canvas sub DOM</a> is announced and navigable by screen
reader users and is navigable by keyboard users. <b>Note:</b>
advised to add <code>role=presentation</code> to <code><canvas></code>
to avoid unecssary repetition of graphic role information.
</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/tables.html#the-caption-element"><code>caption</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/table-caption-thead-tbody-tfoot-tr-th-td.html"><code>caption</code>
test</a> </td>
<td>Table caption</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td> Announced when a table is navigated to. Used as table
title in the table list (List Tables <kbd>CTRL+INSERT+T</kbd>)
dialog. </td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-cite-element"><code>cite</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/blockquote-cite.html"><code>cite</code>
test</a> </td>
<td>Reference to a creative work</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected"><path d="M400 32H48C21.5 32 0
53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path></svg><br>
</td>
<td>
<p>No semantics conveyed or expected as <code><cite></code>
has a <code>role="generic"</code></p>
</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-code-element"><code>code</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/code.html"><code>code</code>
test</a> </td>
<td>Computer code</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected"><path d="M400 32H48C21.5 32 0
53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path></svg><br>
</td>
<td>
<p>No semantics conveyed or expected as <code><code></code>
currently has a <code>role="generic"</code></p>
</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/tables.html#the-col-element"><code>col</code></a>
</th>
<td> No test </td>
<td>Table column</td>
<td><em>None expected</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/tables.html#the-colgroup-element"><code>colgroup</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/tables-complex.html"><code>colgroup</code>
test</a> </td>
<td>Group of columns in a table</td>
<td><em>None expected</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td> </td>
</tr>
<tr id="toc-d">
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-data-element"><code>data</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/data.html"><code>data</code>
test</a> </td>
<td>Machine-readable equivalent</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" role="img" width="20" aria-label="none expected">
<path d="M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5
48 48 48h352c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zM92 296c-6.6
0-12-5.4-12-12v-56c0-6.6 5.4-12 12-12h264c6.6 0 12 5.4
12 12v56c0 6.6-5.4 12-12 12H92z"></path> </svg><br>
</td>
<td><p>No semantics conveyed or expected as <code><data></code>
has a <code>role="generic"</code></p></td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/form-elements.html#the-datalist-element"><code>datalist</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/datalist.html"><code>datalist</code>
test</a> </td>
<td> Container for options for <a data-anolis-xref="attr-input-list" href="https://html.spec.whatwg.org/multipage/form-elements.html#the-list-attribute">combo
box control</a> </td>
<td>
<p>"combobox, to change the selection use the arrow keys
or type the value"</p>
</td>
<td>
<ul>
<li>Move To Next Combo Box <kbd>C</kbd></li>
<li>Move to Prior Combo Box <kbd>SHIFT+C </kbd></li>
<li>List of Combo boxes <kbd>CTRL+INSERT+C</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td> </td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-dd-element"><code>dd</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/dl-dt-dd.html"><code>dd</code>
test</a> </td>
<td> Content for corresponding <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-dt-element">dt</a>
element(s) </td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td> Included as part of <code>dt</code> list item, user
must use <kbd>arrow down</kbd> for content to be
announced. If user navigates via list item navigation
(Next Item in a List <kbd>I</kbd>) from <code>dt</code>
then <code>dd</code> content will not be announced. </td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/edits.html#the-del-element"><code>del</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/del-ins.html"><code>del</code>
test</a> </td>
<td>A removal from the document</td>
<td>voice change, deletion <em>Element content</em> end
deletion</td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg>
</td>
<td>Refer to: <a href="https://www.tpgi.com/screen-readers-support-for-text-level-html-semantics/">Scree Readers support for text level HTML semantics</a></td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/interactive-elements.html#the-details-element"><code>details</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/details-summary.html"><code>details</code>
test</a> </td>
<td>Disclosure widget container</td>
<td>When the details element has an accessible name it is
announced along with group start/end.</td>
<td>No special commands</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg></td>
<td>Refer to <a href="#el-summary"><code>summary</code></a>
element</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/text-level-semantics.html#the-dfn-element"><code>dfn</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/dfn.html"><code>dfn</code>
test</a> </td>
<td>Defining instance of a term</td>
<td><em>Element content</em></td>
<td>No special commands</td>
<td><svg viewBox="0 0 512 512" width="20" role="img" aria-label="no" class="no"><path d="M464 32H48C21.5 32 0
53.5 0 80v352c0 26.5 21.5 48 48 48h416c26.5 0 48-21.5
48-48V80c0-26.5-21.5-48-48-48zm-83.6 290.5c4.8 4.8 4.8
12.6 0 17.4l-40.5 40.5c-4.8 4.8-12.6 4.8-17.4 0L256
313.3l-66.5 67.1c-4.8 4.8-12.6 4.8-17.4
0l-40.5-40.5c-4.8-4.8-4.8-12.6
0-17.4l67.1-66.5-67.1-66.5c-4.8-4.8-4.8-12.6
0-17.4l40.5-40.5c4.8-4.8 12.6-4.8 17.4 0l66.5 67.1
66.5-67.1c4.8-4.8 12.6-4.8 17.4 0l40.5 40.5c4.8 4.8
4.8 12.6 0 17.4L313.3 256l67.1 66.5z"></path></svg><br>
</td>
<td>No semantics conveyed Refer to <a href="https://github.com/FreedomScientific/standards-support/issues/821">JAWS tracker Issue 821</a> </td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/interactive-elements.html#the-dialog-element"><code>dialog</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/dialog.html">dialog test</a> </td>
<td>The dialog element represents a transitory part of an application, in the form of a small window ("dialog box")</td>
<td>dialog, accessible name if provided, accessible description if provided.</td>
<td>When the <code>dialog</code> opens focus is moved to first focusable element. <code>dialog</code> can be closed with the <kbd>ESC</kbd> key. Upon closing focus moves back to the trigger control. While displayed focus is contained within the <code>dialog</code>.</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br></td>
<td><b>Note:</b> Focus is contained within the <code>dialog</code>, but the browser address bar is included within the focus order. This is a browser implemented behaviour.</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-div-element"><code>div</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/div.html"><code>div</code>
test</a> </td>
<td>Generic flow container</td>
<td><em>Element content</em></td>
<td>
<ul>
<li>Move to Next Division <kbd>Z</kbd></li>
<li>Move to Prior Division <kbd>SHIFT+Z</kbd></li>
<li>List Divisions <kbd>CTRL+INSERT+Z</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-dl-element"><code>dl</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/dl-dt-dd.html"><code>dl</code>
test</a> </td>
<td>Association list consisting of zero or more name-value
groups</td>
<td> </td>
<td>
<ul>
<li>List All Ordered, Unordered, and Definition Lists <kbd>CTRL+INSERT+L</kbd></li>
<li>Next List <kbd>L</kbd></li>
<li>Previous List <kbd>SHIFT+I</kbd></li>
<li> Next Item in a List <kbd>I</kbd></li>
<li>Previous item in a List <kbd>SHIFT+I</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48
48zm-204.686-98.059l184-184c6.248-6.248 6.248-16.379
0-22.627l-22.627-22.627c-6.248-6.248-16.379-6.249-22.628
0L184
302.745l-70.059-70.059c-6.248-6.248-16.379-6.248-22.628
0l-22.627 22.627c-6.248 6.248-6.248 16.379 0
22.627l104 104c6.249 6.25 16.379 6.25 22.628.001z"></path>
</svg><br>
</td>
<td> </td>
</tr>
<tr>
<th scope="row"> <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-dt-element"><code>dt</code></a>
</th>
<td> <a href="https://stevefaulkner.github.io/AT-browser-tests/test-files/dl-dt-dd.html"><code>dt</code>
test</a> </td>
<td> Legend for corresponding <a href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-dd-element">dd</a>
element(s) </td>
<td><em>Element content</em></td>
<td>
<ul>
<li>Next Item in a List <kbd>I</kbd></li>
<li>Previous Item in a List <kbd>SHIFT+I</kbd></li>
</ul>
</td>
<td><svg viewBox="0 0 448 512" width="20" aria-label="yes">
<path d="M400 480H48c-26.51 0-48-21.49-48-48V80c0-26.51
21.49-48 48-48h352c26.51 0 48 21.49 48 48v352c0
26.51-21.49 48-48