-
Notifications
You must be signed in to change notification settings - Fork 12
/
aria.html
1910 lines (1901 loc) · 104 KB
/
aria.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 charset="utf-8">
<title>JAWS ARIA Support</title>
<script src="scripts/html5shiv.js"></script>
<link rel="stylesheet" href="./assets/style/styles.css">
</head>
<body>
<header>
<img src="assets/images/HTML5_Logo.png" alt="HTML5 logo" width="95" height="109" id="logo">
<h1>
JAWS ARIA Role Support
</h1>
<p>A Work <em>in progress</em>: Last updated 30 June 2020. </p>
<p><strong>Editors:</strong> Steve Faulkner, Dennis Deacon and Scott O'Hara </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>
<p class="note">Read the <a href="#jas">JAWS ARIA Support Notes</a> and <a href="#kc">Key Concepts</a></p>
<h2>Support legend</h2>
<ul>
<li><img src="./assets/images/tick.png" class="status-icon" alt="yes"> means we have found this feature to be implemented interoperably (across multiple browsers)</li>
<li><img src="./assets/images/cross.png" class="status-icon" alt="no"> means we have found that this feature is not implemented</li>
<li><strong class="question">?</strong> 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">
<colgroup>
<col span="1" class="col-1">
<col span="1" class="col-2">
</colgroup>
<caption>
JAWS ARIA role Support
(Firefox on Windows 10)
</caption>
<thead>
<tr>
<th scope="col">Role</th>
<th scope="col">Description</th>
<th scope="col">Test case</th>
<th scope="col">Interaction</th>
<th scope="col">Supported</th>
<th scope="col">Notes</th>
</tr>
</thead>
<tbody>
<tr id="toc-a2">
<td tabindex="-1" id="index-aria-alert">
<a href="http://www.w3.org/TR/wai-aria-1.1/#alert"><code>alert</code></a>
</td>
<td>
A type of <code>live region</code> with important,
and usually time-sensitive, information.
See related <code>alertDialog</code> and <code>status</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#alert">alert test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/alert/index.html"><code>alert</code> example</a></p>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td><blockquote>
This role does not appear in either the virtual buffer or Forms Mode, but its contents are spoken by JAWS when an alert is made visible.
</blockquote></td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-alerTDialog">
<a href="https://www.w3.org/TR/wai-aria-1.1/#alertdialog"><code>alertdialog</code></a>
</td>
<td>
A type of dialog that contains an alert message, where initial focus goes to an element within the dialog. See related <code>alert</code> and <code>dialog</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#alertdialog">alertdialog test</a></p>
<p><a href="http://heydonworks.com/practical_aria_examples/#warning-dialog"><code>alertdialog</code> example</a></p>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-application">
<a href="http://www.w3.org/TR/wai-aria-1.1/#application"><code>application</code></a>
</td>
<td>
A structure containing one or more focusable elements requiring user input, such as keyboard or gesture events, that do not follow a standard interaction pattern supported by a widget role. - <span class="changed-feature">(changed)</span>
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#application">application test</a></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-article">
<a href="http://www.w3.org/TR/wai-aria-1.1/#article"><code>article</code></a>
</td>
<td>
A section of a page that consists of a composition that forms an independent part of a document, page, or site.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#article">article test</a></td>
<td>
<ul>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14)
<kbd>R</kbd> (JAWS 15+)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14)
<kbd>SHIFT+R</kbd> (JAWS 15+)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14)
<kbd>INSERT+CTRL+R</kbd> (JAWS 15+)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-banner">
<a href="http://www.w3.org/TR/wai-aria-1.1/#banner"><code>banner</code></a>
</td>
<td>
A region that contains mostly site-oriented content, rather than page-specific content.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#banner">banner test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/banner.html"><code>banner</code> example</a></p>
</td>
<td>
<ul>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14)
<kbd>R</kbd> (JAWS 15+)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14)
<kbd>SHIFT+R</kbd> (JAWS 15+)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14)
<kbd>INSERT+CTRL+R</kbd> (JAWS 15+)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr id="jaws-el-aside" tabindex="-1">
<td tabindex="-1" id="index-aria-button">
<a href="http://www.w3.org/TR/wai-aria-1.1/#button"><code>button</code></a>
</td>
<td>
An input that allows for user-triggered actions when clicked or pressed. See related <code>link</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#button">button test</a></p>
<p><a href="http://w3c.github.io/aria-practices/examples/button/button.html"><code>button</code> examples</a></p>
</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="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-checkbox">
<a href="http://www.w3.org/TR/wai-aria-1.1/#checkbox"><code>checkbox</code></a>
</td>
<td>
A checkable input that has three possible values: true, false, or mixed.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#checkbox">checkbox test</a></p>
<p><a href="http://w3c.github.io/aria-practices/examples/checkbox/checkbox-1/checkbox-1.html"><code>checkbox</code> example</a></p>
</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="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-cell">
<a href="http://www.w3.org/TR/wai-aria-1.1/#cell"><code>cell</code></a>
<span class="new-feature"></span>
</td>
<td>
A cell in a tabular container.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#cell">cell test</a></p> <p><a href="http://test-cases.tink.uk/aria-tables">test-cases.tink.uk/aria-tables</a></p></td>
<td><ul>
<li>Jump to Table Cell (from within a table) <kbd>CTRL+WINDOWS Key+J</kbd></li>
<li>Return to Previous Cell <kbd>CTRL+SHIFT+WINDOWS Key+J</kbd></li>
<li>Read current cell <kbd>CTRL+ALT+NUM PAD 5</kbd></li>
<li>Move to and Read Next Cell <kbd>CTRL+ALT+RIGHT ARROW</kbd></li>
<li>Move to and Read Prior Cell <kbd>CTRL+ALT+LEFT ARROW</kbd></li>
<li>Move to and Read Cell Above <kbd>CTRL+ALT+UP ARROW</kbd></li>
<li>Move to and Read Cell Below <kbd>CTRL+ALT+DOWN ARROW</kbd></li>
</ul></td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-columnheader">
<a href="http://www.w3.org/TR/waiaria-1.1/#columnheader"><code>columnheader</code></a>
</td>
<td>
A cell containing header information for a column.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#columnheader">columnheader test</a></p>
<p><a href="http://test-cases.tink.uk/aria-tables">test-cases.tink.uk/aria-tables</a></p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-combobox">
<a href="http://www.w3.org/TR/wai-aria-1.1/#combobox"><code>combobox</code></a>
</td>
<td>
A presentation of a select; usually similar to a textbox where users can type ahead to select an option, or type to enter arbitrary text as a new item in the list. See related <code>listbox</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#combobox">combobox test</a></p>
<p><a href="http://juicystudio.com/tpg/rbc/wrappedcombo/combo.html"><code>combobox</code> example</a></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><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-complementary">
<a href="http://www.w3.org/TR/wai-aria-1.1/#complementary"><code>complementary</code></a>
</td>
<td>
A supporting section of the document, designed to be complementary to the main content at a similar level in the DOM hierarchy, but remains meaningful when separated from the main content.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#complementary">complementary test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/complementary.html"><code>complementary</code> examples</a></p>
</td>
<td>
<ul>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14)
<kbd>R</kbd> (JAWS 15+)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14)
<kbd>SHIFT+R</kbd> (JAWS 15+)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14)
<kbd>INSERT+CTRL+R</kbd> (JAWS 15+)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-contentinfo">
<a href="http://www.w3.org/TR/wai-aria-1.1/#contentinfo"><code>contentinfo</code></a>
</td>
<td>
A large perceivable region that contains information about the parent document.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#contentinfo">contentinfo test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/contentinfo.html"><code>contentinfo</code> example</a></p>
</td>
<td>
<ul>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14)
<kbd>R</kbd> (JAWS 15+)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14)
<kbd>SHIFT+R</kbd> (JAWS 15+)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14)
<kbd>INSERT+CTRL+R</kbd> (JAWS 15+)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-definition">
<a href="http://www.w3.org/TR/wai-aria-1.1/#definition"><code>definition</code></a>
</td>
<td>A definition of a term or concept.</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#definition">definition test</a></td>
<td> </td>
<td><img src="./assets/images/cross.png" class="status-icon" alt="no"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-dialog">
<a href="http://www.w3.org/TR/wai-aria-1.1/#dialog"><code>dialog</code></a>
</td>
<td>
A dialog is an application window that is designed to interrupt the current processing of an application in order to prompt the user to enter information or require a response. See related <code>alerTDialog</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#dialog">dialog test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/dialog-modal/dialog.html"><code>dialog</code> example</a></p>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td>
<p><strong>Note (Aug 31, 2017):</strong> When tested with JAWS 18 & IE 11, dialog not announced when opened. Additionally, field names/labels shared across all input fields. JAWS 18 & FF 55 worked as expected.
</p>
<blockquote>
<p>This role will be announced only when a child of the dialog gets focus, and will not appear in the virtual buffer.</p>
</blockquote></td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-directory">
<a href="http://www.w3.org/TR/wai-aria-1.1/#directory"><code>directory</code></a>
</td>
<td>
A list of references to members of a group, such as a static table of contents.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#directory">directory test</a></p>
<p><a href="http://w3c.github.io/html-aria/#toc"><code>directory</code> example</a>
</p>
<p><em>See Table of Contents</em></p>
</td>
<td> </td>
<td><img src="./assets/images/cross.png" class="status-icon" alt="no"></td>
<td><strong>Note (Sept 19, 2017):</strong> tested with JAWS 18 and FF, expected list commands to navigate to role=directory, does not occur.</td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-document">
<a href="http://www.w3.org/TR/wai-aria-1.1/#document"><code>document</code></a>
</td>
<td>
A region containing related information that is declared as document content, as opposed to a web application.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#document">document test</a></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td><blockquote>
<p>This role may not be explicitly announced by JAWS, but it indicates that the area it occupies is meant to be read as a Web page. This is the default role of the topmost object in a Web page (i.e., the <code>body</code> element).</p>
</blockquote></td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-feed">
<a href="https://www.w3.org/TR/wai-aria-1.1/#feed"><code>feed</code></a>
<span class="new-feature"></span></td>
<td>
A scrollable list of articles where scrolling may cause articles to be added to or removed from either end of the list.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#feed">feed test</a></td>
<td> </td>
<td><img src="./assets/images/cross.png" class="status-icon" alt="no"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-figure">
<a href="https://www.w3.org/TR/wai-aria-1.1/#figure"><code>figure</code></a> <span class="new-feature"></span>
</td>
<td>
A perceivable section of content that typically contains a graphical document, images, code snippets, or example text.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#figure">figure test</a></td>
<td> </td>
<td><img src="./assets/images/cross.png" class="status-icon" alt="no"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-form">
<a href="http://www.w3.org/TR/wai-aria-1.1/#form"><code>form</code></a>
</td>
<td>
A landmark region that contains a collection of items and objects that, as a whole, combine to create a form. See related <code>search</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#form">form test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/form.html"><code>form</code> example</a></p>
</td>
<td>
<ul>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14)
<kbd>R</kbd> (JAWS 15)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14)
<kbd>SHIFT+R</kbd> (JAWS 15)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14)
<kbd>INSERT+CTRL+R</kbd> (JAWS 15)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td>
Need to check whether it needs an accessible name to be announced/navigable
</td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-grid">
<a href="http://www.w3.org/TR/wai-aria-1.1/#grid"><code>grid</code></a>
</td>
<td>
A <code>grid</code> is an interactive control which contains cells of tabular data arranged in rows and columns, like a table.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#grid">grid test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/grid/dataGrids.html"><code>grid</code> example</a></p>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-gridcell">
<a href="http://www.w3.org/TR/wai-aria-1.1/#gridcell"><code>gridcell</code></a>
</td>
<td>
A cell in a <code>grid</code> or <code>treegrid</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#gridcell">gridcell test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/grid/dataGrids.html"><code>grid</code> example</a></p>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-group">
<a href="http://www.w3.org/TR/wai-aria-1.1/#group"><code>group</code></a>
</td>
<td>
A set of user interface objects which are not intended to be included in a page summary or table of contents by assistive technologies.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#group">group test</a></p>
<p><a href="http://mars.dequecloud.com/demo/form-markup.htm#tech6"><code>group</code> example</a></p>
</td>
<td> </td>
<td><strong class="question">?</strong></td>
<td><blockquote>
<p>Like document, this role may not be explicitly announced by JAWS. However, when it surrounds a group of form controls, JAWS should announce its name and description when entering the group.</p>
</blockquote></td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-heading">
<a href="http://www.w3.org/TR/wai-aria-1.1/#heading"><code>heading</code></a>
</td>
<td>
A <code>heading</code> for a section of the page.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#heading">heading test</a></p>
<p><a href="https://patrickhlauke.github.io/aria/demos/structure/role-heading.html"><code>heading</code> example</a></p>
</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="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td>
Requires <code>aria-level</code> attribute with a valid value to announce level.
</td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-img">
<a href="http://www.w3.org/TR/wai-aria-1.1/#img"><code>img</code></a>
</td>
<td>
A container for a collection of elements that form an image.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#img">img test</a></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="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-link">
<a href="http://www.w3.org/TR/wai-aria-1.1/#link"><code>link</code></a>
</td>
<td>
An interactive reference to an internal or external resource that, when activated, causes the user agent to navigate to that resource. See related <code>button</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#link">link test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/link/link.html"><code>link</code> example</a></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><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td>Need to check if visited/unvisited state exposed, expect not as this comes from native link implementation.</td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-list">
<a href="http://www.w3.org/TR/wai-aria-1.1/#list"><code>list</code></a>
</td>
<td>
A group of non-interactive list items. See related <code>listbox</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#list">list test</a></p>
<p><a href="https://patrickhlauke.github.io/aria/demos/structure/role-list.html"><code>list</code> example</a></p>
</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="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-listbox">
<a href="https://www.w3.org/TR/wai-aria-1.1/#listbox"><code>listbox</code></a>
</td>
<td>
A widget that allows the user to select one or more items from a list of choices. See related <code>combobox</code> and <code>list</code>.
</td>
<td>
<p><a href="https://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#listbox">listbox test</a></p>
<ul>
<li>
<a href="https://www.w3.org/TR/wai-aria-practices-1.1/examples/listbox/listbox-scrollable.html">
Scrollable <code>listbox</code> example
</a>
</li>
<li>
<a href="https://www.w3.org/TR/wai-aria-practices-1.1/examples/listbox/listbox-collapsible.html">
Collapsible Dropdown <code>listbox</code> example
</a>
</li>
<li>
<a href="https://www.w3.org/TR/wai-aria-practices-1.1/examples/listbox/listbox-rearrangeable.html">
<code>listbox</code> with rearrangeable options example
</a>
</li>
</ul>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-listitem">
<a href="https://www.w3.org/TR/wai-aria-1.1/#listitem"><code>listitem</code></a>
</td>
<td>
A single item in a <code>list</code> or <code>directory</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#listitem">listitem test</a></p>
<p><a href="https://patrickhlauke.github.io/aria/demos/structure/role-list.html"><code>listitem</code> example</a></p>
</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="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-log">
<a href="https://www.w3.org/TR/wai-aria-1.1/#log"><code>log</code></a>
</td>
<td>
A type of live region where new information is added in meaningful order and old information may disappear. See related <code>marquee</code>.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#log">log test</a></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td><blockquote>
<p>Worls with JAWS 2020 and latest versions of Chrome, Edge and Firefox, and it functions as a type of live region. JAWS inserts start and end strings into the virtual buffer to indicate the log.</p>
</blockquote></td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-main">
<a href="http://www.w3.org/TR/wai-aria-1.1/#main"><code>main</code></a>
</td>
<td>
The main content of a document.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#main">main test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/main.html"><code>main</code> example</a></p>
</td>
<td>
<ul>
<li>
Move to Main Region <kbd>Q</kbd>
</li>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14) <kbd>R</kbd> (JAWS 15+)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14) <kbd>SHIFT+R</kbd> (JAWS 15+)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14) <kbd>INSERT+CTRL+R</kbd> (JAWS 15+)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-marquee">
<a href="http://www.w3.org/TR/wai-aria-1.1/#marquee"><code>marquee</code></a>
</td>
<td>
A type of live region where non-essential information changes frequently. See related <code>log</code>.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#marquee">marquee test</a></p>
<p><a href="https://s.codepen.io/stevef/debug/OxyxxG">marquee example</a></p></td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-math">
<a href="http://www.w3.org/TR/wai-aria-1.1/#math"><code>math</code></a>
</td>
<td>
Content that represents a mathematical expression.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#math">math test</a></p>
<p><a href="https://s.codepen.io/stevef/debug/BwowZE">math example</a></p></td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-menu">
<a href="http://www.w3.org/TR/wai-aria-1.1/#menu"><code>menu</code></a>
</td>
<td>
A type of widget that offers a list of choices to the user.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#menu">menu test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/menubar/menubar-1/menubar-1.html"><code>menu</code> example</a> (see sub-menu in example)
</p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-menubar">
<a href="http://www.w3.org/TR/wai-aria-1.1/#menubar"><code>menubar</code></a>
</td>
<td>
A presentation of <code>menu</code> that usually remains visible and is usually presented horizontally.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#menunbar">menubar test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/menubar/menubar-1/menubar-1.html"><code>menubar</code> example</a></p>
</td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-menuitem">
<a href="http://www.w3.org/TR/wai-aria-1.1/#menuitem"><code>menuitem</code></a>
</td>
<td>
An option in a group of choices contained by a
<code>menu</code> or <code>menubar</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#menuitem">menuitem test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/menubar/menubar-1/menubar-1.html"><code>menuitem</code> example</a> (included in <code>menubar</code> example)
</p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-menuitemcheckbox">
<a href="http://www.w3.org/TR/wai-aria-1.1/#menuitemcheckbox"><code>menuitemcheckbox</code></a>
</td>
<td>
A checkable <code>menuitem</code> that has three possible values:
<code>true</code>, <code>false</code>, or <code>mixed</code>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#menuitemcheckbox">menuitemcheckbox test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/menubar/menubar-2/menubar-2.html"><code>menuitemcheckbox</code> example</a></p>
</td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-menuitemradio">
<a href="http://www.w3.org/TR/wai-aria-1.1/#menuitemradio"><code>menuitemradio</code></a>
</td>
<td>
A checkable <code>menuitem</code> in a group of
<code>menuitemradio</code> roles, only one of which
can be checked at a time.</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#menuitemradio">menuitemradio test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/menubar/menubar-2/menubar-2.html"><code>menuitemradio</code> example</a></p>
</td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-navigation">
<a href="http://www.w3.org/TR/wai-aria-1.1/#navigation"><code>navigation</code></a>
</td>
<td>
A collection of navigational elements (usually links) for navigating the document or related documents.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#navigation">navigation test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/navigation.html"><code>navigation</code> example</a></p>
</td>
<td>
<ul>
<li>Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14) <kbd>R</kbd> (JAWS 15+) </li>
<li>Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14) <kbd>SHIFT+R</kbd> (JAWS 15+) </li>
<li>Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14) <kbd>INSERT+CTRL+R</kbd> (JAWS 15+)</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-none">
<a href="https://www.w3.org/TR/wai-aria-1.1/#none"><code>none</code></a>
<span class="new-feature"></span>
</td>
<td>
An element whose implicit native role semantics will
not be mapped to the accessibility
<abbr title="Application Programing Interfaces">API</abbr>.
See synonym <a href="#index-aria-presentation">presentation</a>.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#none">none test</a></p></td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-note">
<a href="http://www.w3.org/TR/wai-aria-1.1/#note"><code>note</code></a>
</td>
<td>
A section whose content is parenthetic or ancillary to the main content of the resource.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#note">note test</a></p>
<p><a href="http://thepaciellogroup.github.io/w3c-footnote/"><code>note</code> example</a>
(the footer of the blockquote)
</p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td><blockquote>
<p>JAWS inserts start and end strings into the virtual buffer to indicate notes.</p>
</blockquote></td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-option">
<a href="http://www.w3.org/TR/wai-aria-1.1/#option"><code>option</code></a>
</td>
<td>
A selectable item in a select list.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#option">option test</a></p>
<p><a href="https://www.w3.org/TR/wai-aria-practices/examples/listbox/listbox.html"><code>option</code> example</a></p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-presentation">
<a href="http://www.w3.org/TR/wai-aria-1.1/#presentation"><code>presentation</code></a>
</td>
<td>
An element whose implicit native role semantics will not be mapped to the accessibility API.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#presentation">presentation test</a></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-progressbar">
<a href="http://www.w3.org/TR/wai-aria-1.1/#progressbar"><code>progressbar</code></a>
</td>
<td>
An element that displays the progress status for tasks that take a long time.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#progressbar">progressbar test</a></p>
<p><a href="http://hanshillen.github.io/jqtest/#goto_progressbar">progressbar example</a></p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-radio">
<a href="http://www.w3.org/TR/wai-aria-1.1/#radio"><code>radio</code></a>
</td>
<td>
A checkable input in a group of <code>radio</code> roles, only one of which can be checked at a time.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#radio">radio test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/radio/radio-1/radio-1.html"><code>radio</code> example</a>
</p>
<p>"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.</p>
</td>
<td>
<ul>
<li>List Radio Buttons <kbd>CTRL+INSERT+R</kbd> (JAWS <15) <kbd>CTRL+INSERT+A</kbd> (JAWS 15+)</li>
<li>Move To Next Radio Button <kbd>R</kbd> (JAWS <15) <kbd>A</kbd> (JAWS 15+)</li>
<li>Move to Prior Radio Button <kbd>SHIFT+R</kbd> (JAWS <15) <kbd>SHIFT+A</kbd> (JAWS 15+)</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-radiogroup">
<a href="http://www.w3.org/TR/wai-aria-1.1/#radiogroup"><code>radiogroup</code></a>
</td>
<td>A group of radio buttons.</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#radiogroup">radiogroup test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/radio/radio-1/radio-1.html"><code>radiogroup</code> example</a></p>
</td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-region">
<a href="http://www.w3.org/TR/wai-aria-1.1/#region"><code>region</code></a>
</td>
<td>
A large perceivable section of a web page or document, that the author feels is important enough to be included in a page summary or table of contents, for example, an area of the page containing live sporting event statistics.
</td>
<td>
<p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#region">region test</a></p>
<p><a href="https://w3c.github.io/aria-practices/examples/landmarks/region.html"><code>region</code> example</a></p>
</td>
<td>
<p>If the region has an accessible name then:</p>
<ul>
<li>
Move to Next Region <kbd>SEMICOLON</kbd> (JAWS 14) <kbd>R</kbd> (JAWS 15+)
</li>
<li>
Move to Previous Region <kbd>SHIFT+SEMICOLON</kbd> (JAWS 14) <kbd>SHIFT+R</kbd> (JAWS 15+)
</li>
<li>
Select a Region <kbd>INSERT+CTRL+SEMICOLON</kbd> (JAWS 14) <kbd>INSERT+CTRL+R</kbd> (JAWS 15+)
</li>
</ul>
</td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-row">
<a href="http://www.w3.org/TR/wai-aria-1.1/#row"><code>row</code></a>
</td>
<td>
A row of cells in a tabular container.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#row">row test</a></p>
<p><a href="http://test-cases.tink.uk/aria-tables">row example</a></p></td>
<td><ul>
<li>Read Next Row <kbd>WINDOWS Key+ALT+DOWN ARROW</kbd></li>
<li>Read Prior Row <kbd>WINDOWS Key+ALT+UP ARROW </kbd></li>
<li>Read Current Row <kbd>ALT+WINDOWS Key+COMMA</kbd></li>
<li> Read from Beginning of Row to Current Cell <kbd>INSERT+SHIFT+HOME</kbd></li>
<li>Read from Current Cell to End of Row <kbd>INSERT+SHIFT+PAGE UP</kbd></li>
</ul></td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-rowgroup">
<a href="http://www.w3.org/TR/wai-aria-1.1/#rowgroup"><code>rowgroup</code></a>
</td>
<td>
A group containing one or more row elements in a grid.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#rowgroup">rowgroup test</a></td>
<td> </td>
<td><img src="./assets/images/cross.png" class="status-icon" alt="no"></td>
<td>Need to test with rowgroup+accessible name</td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-rowheader">
<a href="http://www.w3.org/TR/wai-aria-1.1/#rowheader"><code>rowheader</code></a>
</td>
<td>
A cell containing header information for a row in a grid.
</td>
<td><p><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#rowheader">rowheader test</a></p>
<p><a href="http://test-cases.tink.uk/aria-tables">rowheader example</a></p></td>
<td> </td>
<td><img src="./assets/images/tick.png" class="status-icon" alt="yes"></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-scrollbar">
<a href="http://www.w3.org/TR/wai-aria-1.1/#scrollbar"><code>scrollbar</code></a>
</td>
<td>
A graphical object that controls the scrolling of content within a viewing area, regardless of whether the content is fully displayed within the viewing area.
</td>
<td><a href="http://stevefaulkner.github.io/HTML5accessibility/tests/ARIA-tests/#scrollbar">scrollbar test</a></td>
<td> </td>
<td><strong class="question">?</strong></td>
<td> </td>
</tr>
<tr>
<td tabindex="-1" id="index-aria-search">
<a href="http://www.w3.org/TR/wai-aria-1.1/#search"><code>search</code></a>
</td>
<td>