-
Notifications
You must be signed in to change notification settings - Fork 12
/
svg.html
1612 lines (1595 loc) · 54.8 KB
/
svg.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>
<title>Jaws SVG support</title>
<meta charset="utf-8">
<script src="scripts/html5shiv.js"></script>
<style>
.note {
padding: 0.5em 2em;
background: none repeat scroll 0 0 #e9fbe9;
border-left: 0.25em solid #52e052; }
table {
border-collapse: collapse;
border: 1px solid #630;
font: 0.8em Arial, Verdana, Helvetica, sans-serif; }
th, td {
text-align: left;
vertical-align: top;
padding: 0.3em;
border: 1px solid #630; }
th[scope='row'] { text-align:left; }
tbody tr:hover { outline:solid 2px #666666; }
.navlist li {
display: inline;
list-style-type: none;
padding-right: 20px; }
#logo {float:left}
a:hover, a:focus { background-color:#99FF99; outline:solid thin #030; }
kbd {
background-color: #F1F1F1;
border: 1px solid #666;
border-radius: 5px;
color: #333;
padding: 0px 2px;
margin: 1px;
font-weight: bold;
font-family: Arial,Helvetica,sans-serif;
min-width: 17px;
display: inline-block;
}
</style>
<link href="https://www.w3.org/StyleSheets/TR/w3c-unofficial" rel="stylesheet" type="text/css"/>
<head>
<body>
<header>
<img src="images/HTML5_Logo.png" width="128" height="128" alt="HTML5 logo" id="logo">
<h1>Jaws SVG support</h1>
<p>A Work <em>in progress</em>: Last updated 31 May 2017</p>
<p><strong>Editors:</strong> Steve Faulkner, Leonie Watson, Ian Pouncey, Gez Lemon, Hans Hillen and Patrick Lauke</p>
<p><strong>Github Repo:</strong> <a href="https://github.com/FreedomScientific/VFO-standards-support">FreedomScientific/VFO-standards-support</a></p>
<p>Found a bug? Please <a href="https://github.com/FreedomScientific/VFO-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 particulat state or property receives <a href="http://juicystudio.com/article/making-ajax-work-with-screen-readers.php#jawsvirtual" onclick="__gaTracker('send', 'event', 'outbound-article', 'http://juicystudio.com/article/making-ajax-work-with-screen-readers.php#jawsvirtual', 'virtual focus');">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>
<p class="note">JAWS testing - In progress</p>
<table class="alt">
<caption>
JAWS ARIA Feature support (Firefox on Windows 10)
</caption>
<thead>
<tr>
<th scope="col">Role [test file linked]</th>
<th scope="col"> represents</th>
<th scope="col">AURAL UI</th>
<th scope="col">Interaction</th>
<th width="83" scope="col">ARIA Semantics conveyed?</th>
<th scope="col">Notes:</th>
</tr>
</thead>
<tfoot>
<tr>
<th scope="col">Element</th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</tfoot>
<tbody>
<tr id="toc-a">
<th scope="row"><a href="test-files/a-href.html"><code>a</code></a> with href</th>
<td>a hyperlink</td>
<td><em>element content</em> "link"</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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td><code>link</code> role announced before link text when cursored to, after via tab.</td>
</tr>
<tr id="toc-a2">
<th scope="row"><a href="test-files/a-no-href.html"><code>a</code></a> with no href</th>
<td>an anchor</td>
<td><em>element content</em></td>
<td>
<ul>
<li>JAWS <15
<ul>
<li>List of Anchors <kbd>CTRL+INSERT+A</kbd></li>
<li>Next Anchor <kbd>A</kbd></li>
<li>Previous Anchor <kbd>SHIFT+A</kbd></li>
</ul>
</li>
<li>JAWS 15+ no special commands</li>
</ul>
</td>
<td>
<p>JAWS <15<img src="images/tick.png" width="16" height="16" alt="yes"></p>
<p>JAWS 15+ <img src="images/cross.png" width="16" height="16" alt="no"></p>
</td>
<td>
<p>Semantics conveyed via navigation (JAWS <15)</p>
<p>No semantics conveyed (JAWS15+)</p>
<p> </p>
</td>
</tr>
<tr>
<th scope="row"><a href="test-files/abbr.html"><code>abbr</code></a></th>
<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 <img src="images/cross.png" width="16" height="16" alt="no"></p>
<p>via preference<img src="images/tick.png" width="16" height="16" alt="yes"></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 title attribute are not available to keyboard only users. Refer to <a href="http://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="test-files/address.html"><code>address</code></a></th>
<td>Contact information for a page or <a href="http://www.w3.org/TR/html5/sections.html#the-article-element">article</a> element</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/area.html"><code>area</code></a></th>
<td>Hyperlink or dead area on an image map</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/article.html"><code>article</code></a></th>
<td>Self-contained syndicatable or reusable composition</td>
<td>"article" <em>element content</em> "article end"</td>
<td>
<ul>
<li>Move to Next Region <kbd>SEMICOLON</kbd> (JAWS14) <kbd>R</kbd> (JAWS15)</li>
<li>Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS14) <kbd>SHIFT+R</kbd> (JAWS15)</li>
<li>Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS14) <kbd>INSERT+CTRL+R</kbd> (JAWS15)</li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>Included as a navigable region</td>
</tr>
<tr id="jaws-el-aside" tabindex="-1">
<th scope="row"><a href="test-files/aside.html"><code>aside</code></a></th>
<td>Sidebar for tangentially related content</td>
<td>
<p>"complimentary information" <em>element content</em> "complimentary information end"</p>
<p> </p>
</td>
<td>
<ul>
<li>Move to Next Region <kbd>SEMICOLON</kbd> (JAWS14) <kbd>R</kbd> (JAWS15)</li>
<li>Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS14) <kbd>SHIFT+R</kbd> (JAWS15)</li>
<li>Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS14) <kbd>INSERT+CTRL+R</kbd> (JAWS15)</li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>Included as a navigable region</td>
</tr>
<tr>
<th scope="row"><a href="test-files/audio.html"><code>audio</code></a></th>
<td>Audio player</td>
<td> </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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr id="toc-b">
<th scope="row"><a href="test-files/b.html"><code>b</code></a></th>
<td>Keywords</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/semantics.html#the-base-element"><code>base</code></a></th>
<td>Base URL and default target <a href="http://www.w3.org/TR/html5/browsers.html#browsing-context">browsing context</a> for <a data-anolis-xref="attr-hyperlink-target" href="http://www.w3.org/TR/html5/links.html#attr-hyperlink-target">hyperlinks</a> and <a data-anolis-xref="attr-fs-target" href="http://www.w3.org/TR/html5/forms.html#attr-fs-target">forms</a></td>
<td><em><strong>none expected</strong></em></td>
<td>No special commands</td>
<td> </td>
<td><strong>No UI</strong></td>
</tr>
<tr>
<th scope="row"><a href="test-files/bdi.html"><code>bdi</code></a></th>
<td>Text directionality isolation</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/bdo.html"><code>bdo</code></a></th>
<td>Text directionality formatting</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/blockquote-cite.html"><code>blockquote</code></a></th>
<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>
<li>Next Blockquote <kbd>Q</kbd></li>
<li>Previous Blockquote <kbd>SHIFT+Q</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>Semantics conveyed via navigation and element name announcement</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/sections.html#the-body-element"><code>body</code></a></th>
<td>Document body</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></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="test-files/br.html"><code>br</code></a></th>
<td>Line break, e.g. in poem or postal address</td>
<td> </td>
<td>No special commands</td>
<td> </td>
<td><em>line break?</em></td>
</tr>
<tr>
<th scope="row"><a href="test-files/button.html"><code>button</code></a></th>
<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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>Semantics conveyed via navigation and element name announcement</td>
</tr>
<tr id="toc-c">
<th scope="row"><a href="test-files/canvas.html"><code>canvas</code></a></th>
<td>Scriptable bitmap canvas</td>
<td><em>element content</em></td>
<td><p>No special commands</p></td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td><p>The canvas is 'transparent' for screen reader users. HTML content included in the <a href="http://www.paciellogroup.com/blog/2015/02/html5-canvas-sub-dom/">HTML5 canvas sub DOM</a> is announced and navigable by screen reader users and is navigable by keyboard users.</p>
</td>
</tr>
<tr>
<th scope="row"><a href="test-files/table-caption-thead-tbody-tfoot-tr-th-td.html"><code>caption</code></a></th>
<td>Table caption</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></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="test-files/blockquote-cite.html"><code>cite</code></a></th>
<td>Reference to a creative work</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/code.html"><code>code</code></a></th>
<td>Computer code</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/tabular-data.html#the-col-element"><code>col [no test]</code></a></th>
<td>Table column</td>
<td><em>none expected</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/tables-complex.html"><code>colgroup</code></a></th>
<td>Group of columns in a table</td>
<td><em>none expected</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td> </td>
</tr>
<tr id="toc-d">
<th scope="row"><a href="test-files/data.html"><code>data</code></a></th>
<td>Machine-readable equivalent</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/datalist.html"><code>datalist</code></a></th>
<td>Container for options for <a data-anolis-xref="attr-input-list" href="http://www.w3.org/TR/html5/forms.html#attr-input-list">combo box control</a></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/dl-dt-dd.html"><code>dd</code></a></th>
<td>Content for corresponding <a href="http://www.w3.org/TR/html5/grouping-content.html#the-dt-element">dt</a> element(s)</td>
<td><em>element content</em></td>
<td> </td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></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="test-files/del-ins.html"><code>del</code></a></th>
<td>A removal from the document</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<!--<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#the-details-element"><code>details [no test]</code></a></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>-->
<tr>
<th scope="row"><code><a href="test-files/details-summary.html">details</a></code></th>
<td>disclosure widget container</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/dfn.html"><code>dfn</code></a></th>
<td>Defining instance of a term</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<!-- <tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/commands.html#the-dialog-element"><code>dialog [no test]</code></a></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr> -->
<tr>
<th scope="row"><a href="test-files/div.html"><code>div</code></a></th>
<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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/dl-dt-dd.html"><code>dl</code></a></th>
<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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/dl-dt-dd.html"><code>dt</code></a></th>
<td>Legend for corresponding <a href="http://www.w3.org/TR/html5/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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>Identified as a list item</td>
</tr>
<tr id="toc-e">
<th scope="row"><a href="test-files/em.html"><code>em</code></a></th>
<td>Stress emphasis</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/embed.html"><code>embed</code></a></th>
<td><a href="http://www.w3.org/TR/html5/infrastructure.html#plugin">Plugin</a></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr id="toc-f">
<th scope="row"><a href="test-files/fieldset-legend.html"><code>fieldset</code></a></th>
<td>Group of form controls</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/figure-figcaption.html"><code>figcaption</code></a></th>
<td>Caption for <a href="http://www.w3.org/TR/html5/grouping-content.html#the-figure-element">figure</a></td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/figure.html"><code>figure</code></a></th>
<td>Figure with optional caption</td>
<td>"group start"<em> figcaption content , element content, figcaption content "group end"<em> </em></em></td>
<td>No special commands</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/footer.html"><code>footer</code></a></th>
<td>Footer for a page or section</td>
<td> </td>
<td>
<ul>
<li>Move to Next Region <kbd>SEMICOLON</kbd> (JAWS14) <kbd>R</kbd> (JAWS15) </li>
<li>Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS14) <kbd>SHIFT+R</kbd> (JAWS15) </li>
<li>Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS14) <kbd>INSERT+CTRL+R</kbd> (JAWS15)</li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/form.html"><code>form</code></a></th>
<td>User-submittable form</td>
<td> </td>
<td>
<ul>
<li>No special commands</li>
</ul>
</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr id="toc-h">
<th scope="row"><a href="test-files/h1-h6.html"><code>h1-h6</code></a></th>
<td>Section heading</td>
<td> </td>
<td>
<ul>
<li>List Headings <kbd>INSERT</kbd>+<kbd>F6 </kbd></li>
<li>Next Heading <kbd>H</kbd></li>
<li>Prior Heading <kbd>SHIFT+H</kbd></li>
<li>First Heading <kbd>ALT+INSERT+HOME</kbd></li>
<li>Last Heading <kbd>ALT+INSERT+END </kbd></li>
<li>Next Heading at Level - number keys <kbd>1</kbd> through <kbd>6</kbd></li>
<li>Prior Heading at Level <kbd>SHIFT+1</kbd> through <kbd>6 </kbd></li>
<li>First Heading at Level <kbd>ALT+CTRL+INSERT+1</kbd> through <kbd>6</kbd></li>
<li>Last Heading at Level <kbd>ALT+CTRL+INSERT+ SHIFT+1</kbd> through <kbd>6</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/semantics.html#the-head-element"><code>head [no test]</code></a></th>
<td>Container for document metadata</td>
<td><em><strong>none expected</strong></em></td>
<td>No special commands</td>
<td> </td>
<td><strong>No UI</strong></td>
</tr>
<tr>
<th scope="row"><a href="test-files/header.html"><code>header</code></a></th>
<td>Introductory or navigational aids for a page or section</td>
<td> </td>
<td>
<ul>
<li>Move to Next Region <kbd>SEMICOLON</kbd> (JAWS14) <kbd>R</kbd> (JAWS15)</li>
<li>Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS14) <kbd>SHIFT+R</kbd> (JAWS15)</li>
<li>Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS14) <kbd>INSERT+CTRL+R</kbd> (JAWS15)</li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/hr.html"><code>hr</code></a></th>
<td>Thematic break</td>
<td>"separator"</td>
<td>
<ul>
<li>Move to Next Separator <kbd>DASH</kbd></li>
<li>Move to Prior Separator <kbd>SHIFT+DASH</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/semantics.html#the-html-element"><code>html [no test]</code></a></th>
<td>Root element</td>
<td><em><strong>none expected</strong></em></td>
<td>No special commands</td>
<td> </td>
<td> </td>
</tr>
<tr id="toc-i">
<th scope="row"><a href="test-files/i.html"><code>i</code></a></th>
<td>Alternate voice</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td><img src="images/cross.png" width="16" height="16" alt="no"></td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="test-files/iframe.html"><code>iframe</code></a></th>
<td><a href="http://www.w3.org/TR/html5/browsers.html#nested-browsing-context">Nested browsing context</a></td>
<td> </td>
<td>
<ul>
<li>List of Frames <kbd>INSERT+F9</kbd></li>
<li>Next Frame <kbd>M</kbd></li>
<li>Previous Frame <kbd>SHIFT+M </kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/iframe-title.html"><code>iframe with title</code></a></th>
<td><a href="http://www.w3.org/TR/html5/browsers.html#nested-browsing-context">Nested browsing context</a></td>
<td> </td>
<td>
<ul>
<li>List of Frames <kbd>INSERT+F9</kbd></li>
<li>Next Frame <kbd>M</kbd></li>
<li>Previous Frame <kbd>SHIFT+ M </kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/img-alt.html"><code>img</code></a></th>
<td>Image</td>
<td>"graphic" <em>alt attribute content</em></td>
<td>
<ul>
<li>List of Graphics <kbd>CTRL+INSERT+G</kbd></li>
<li>Next Graphic <kbd>G</kbd></li>
<li>Previous Graphic <kbd>SHIFT+G</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-button.html"><code>input [button]</code></a></th>
<td>Button control</td>
<td> </td>
<td>
<ul id="button-commands2" 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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-checkbox.html"><code>input [checkbox]</code></a></th>
<td>Checkbox control</td>
<td> </td>
<td>
<ul>
<li>List Check Boxes <kbd>CTRL+INSERT+X</kbd></li>
<li>Move To Next Check Box <kbd>X </kbd></li>
<li>Move to Prior Check Box <kbd>SHIFT+X</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-color.html"><code>input [color]</code></a></th>
<td>Colour picker control</td>
<td> </td>
<td>no special commands?</td>
<td> </td>
<td>Identified as button by JAWS but not navigable using button navigation keys.</td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-date.html"><code>input [date]</code></a></th>
<td>date (day/month year) picker control</td>
<td> </td>
<td> </td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<!--<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#date-and-time-state-(type=datetime)"><code>input [datetime]</code></a></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>-->
<tr>
<th scope="row"><a href="test-files/input-email.html"><code>input [email]</code></a></th>
<td>text control for inputting email address</td>
<td> </td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E</kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-file-upload.html"><code>input [file]</code></a></th>
<td>File chooser control</td>
<td> </td>
<td>
<ul>
<li>List Buttons <kbd>CTRL+INSERT+B</kbd></li>
<li>Next Button <kbd>B</kbd></li>
<li>Previous button <kbd>B</kbd></li>
</ul>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd> </li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>As it's a composite control, it can be navigated to using either button or edit commands.</td>
</tr>
<tr>
<th scope="row"><code><a href="http://www.w3.org/html/wg/drafts/html/master/forms.html#hidden-state-(type=hidden)">input [hidden] - [no test]</a></code></th>
<td>hidden form control</td>
<td><em><strong>none expected</strong></em></td>
<td>No special commands</td>
<td> </td>
<td><strong>No UI</strong></td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-image.html"><code>input [image]</code></a></th>
<td>Button control</td>
<td> </td>
<td>
<ul>
<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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<!--<tr>
<th scope="row"><a href="test-files/input-month.html"><code>input [month]</code></a></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>-->
<tr>
<th scope="row"><a href="test-files/input-number.html"><code>input [number]</code></a></th>
<td>spin box control</td>
<td>
<p>"edit, spin box" <em>label content</em></p>
<p> </p>
</td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E</kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
<li>Increase value <kbd>UP ARROW</kbd></li>
<li>Decrease value <kbd>DOWN ARROW</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>
<p><strong>note:</strong> value in edit box announced as changed increase/decreased using arrow keys.</p>
<p>spin buttons included in button commands.</p>
<ul>
<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>
</tr>
<tr>
<th scope="row"><a href="test-files/input-password.html"><code>input [password]</code></a></th>
<td>text control for inputting a password</td>
<td>
<em>label content</em> "password edit"
</td>
<td><ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul> </td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td><strong>note:</strong> keyboard character input announced as "star"</td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-range.html"><code>input [range]</code></a></th>
<td>slider control</td>
<td><em>label content</em> "left, right slider to decrease or increase use the arrow keys" <em>current value</em></td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul>
<ul>
<li><kbd>RIGHT ARROW</kbd> and <kbd>UP ARROW</kbd> increase the value of the slider.</li>
<li><kbd>LEFT ARROW</kbd> and <kbd>DOWN ARROW</kbd> decrease the value of the slider.</li>
<li><kbd>HOME</kbd> and <kbd>END</kbd> move to the minimum and maximum values of the slider.</li>
<li><kbd>PAGE UP</kbd> and <kbd>PAGE DOWN</kbd> increment or decrement the slider by a given amount.</li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td>
<p><strong>note:</strong> When slider has no accessible name (label) or is disabled or readonly, it is identified (incorrectly) as an edit box. - also depended on how it si navigated to (arrow keys, tab key or edit/form control navigation keys)</p>
<p>Slider value announced as it changes</p>
</td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-radio.html"><code>input [radio]</code></a></th>
<td>single choice from a set of options</td>
<td>"radio button checked/not checked" <em>label content</em> "x of y" where x = position in radio group, y = number of radio buttons in group.</td>
<td>
<ul>
<li>List Radio Buttons <kbd>CTRL+INSERT+R</kbd> (JAWS <15) <kbd>CTRL+INSERT+A</kbd> (JAWS15+)</li>
<li>Move To Next Radio Button <kbd>R</kbd> (JAWS <15) <kbd>A</kbd> (JAWS15+)</li>
<li>Move to Prior Radio Button <kbd>SHIFT+R</kbd> (JAWS <15) <kbd>SHIFT+A</kbd> (JAWS15+)</li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-reset.html"><code>input [reset]</code></a></th>
<td>Button control for resetting a form</td>
<td> </td>
<td>
<ul>
<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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-search.html"><code>input [search]</code></a></th>
<td>text control for inputting search terms</td>
<td> </td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-submit.html"><code>input [submit]</code></a></th>
<td>Button control for submitting a form</td>
<td> </td>
<td>
<ul>
<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><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-tel.html"><code>input [tel]</code></a></th>
<td>text box control for inputting a phone number</td>
<td> </td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul>
</td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-text.html"><code>input [text]</code></a></th>
<td>text box control</td>
<td> </td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul>
</td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input--time.html"><code>input [time]</code></a></th>
<td>control for setting a specific <a data-anolis-xref="concept-time" href="http://www.w3.org/TR/html5/infrastructure.html#concept-time">time</a>.</td>
<td> </td>
<td> </td>
<td><img src="images/tick.png" width="16" height="16" alt="yes"></td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/input-url.html"><code>input [url]</code></a></th>
<td>text control for inputting a URL</td>
<td> </td>
<td>
<ul>
<li>List Edit Boxes <kbd>CTRL+INSERT+E</kbd></li>
<li>Move To Next Edit Box <kbd>E </kbd></li>
<li>Move to Prior Edit Box <kbd>SHIFT+E</kbd></li>
</ul>
</td>
<td> </td>
<td> </td>
</tr>
<!--<tr>
<th scope="row"><a href="test-files/input-week.html"><code>input [week]</code></a></th>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>-->
<tr>
<th scope="row"><a href="test-files/del-ins.html"><code>ins</code></a></th>
<td>An addition to the document</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td> </td>
<td>No semantics conveyed</td>
</tr>
<tr id="toc-k">
<th scope="row"><a href="test-files/keyboard.html"><code>kbd</code></a></th>
<td>User input</td>
<td><em>element content</em></td>
<td>No special commands</td>
<td> </td>
<td>No semantics conveyed</td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/the-button-element.html#the-keygen-element"><code>keygen [no test]</code></a></th>
<td>Cryptographic key-pair generator form control</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr id="toc-l">
<th scope="row"><a href="test-files/label.html"><code>label</code></a></th>
<td>Caption for a form control</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/fieldset-legend.html"><code>legend</code></a></th>
<td>Caption for <a href="http://www.w3.org/TR/html5/forms.html#the-fieldset-element">fieldset</a></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="test-files/ul-li.html"><code>li</code></a></th>
<td>List item</td>
<td> </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> </td>
<td> </td>
</tr>
<tr>
<th scope="row"><a href="http://www.w3.org/html/wg/drafts/html/master/semantics.html#the-link-element"><code>link [no test]</code></a></th>
<td>Link metadata</td>
<td><em><strong>none expected</strong></em></td>
<td>No special commands</td>
<td> </td>
<td><strong>No UI</strong></td>
</tr>
<tr id="toc-m">
<th scope="row"><a href="test-files/main.html"><code>main</code></a></th>
<td>Main content of a document </td>
<td> </td>
<td>
<ul>
<li>Move to Main Region <kbd>Q</kbd></li>
<li>Move to Next Region <kbd>SEMICOLON</kbd> (JAWS14) <kbd>R</kbd> (JAWS15) </li>
<li>Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS14) <kbd>SHIFT+R</kbd> (JAWS15) </li>