-
Notifications
You must be signed in to change notification settings - Fork 382
/
Copy pathindex.html
1084 lines (1073 loc) · 58.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>ARIA Roles, Properties and States Referenced in Guidance and Examples | WAI-ARIA Authoring Practices</title>
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2016/base.css">
<link rel="stylesheet" href="css/core.css">
<script src="js/examples.js"></script>
<script src="js/highlight.pack.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<nav aria-label="ARIA Practices">
<a href="../">WAI-ARIA Authoring Practices</a>
</nav>
<main>
<h1>ARIA Roles, Properties and States Referenced in Guidance and Examples</h1>
<p>
This page includes information on number of guidance and example references in the <a href="../">WAI-ARIA Authoring Practices</a> for each ARIA role, property and state. The guidance column is determined
by either the role, property or state being in the text content of a heading (e.g. <code>h2</code>-<code>h6</code>) or through the use of <code>
data-aria-roles</code> or <code>data-aria-props</code> attributes on any heading within the practices. The <code>data-aria-roles</code> or <code>data-aria-props</code> attributes should contain a space separated list of values. The use of the data attribute overrides the identification of roles, properties or states from the text content of a heading. The suffix <strong>"(D)"</strong> indicates a reference came from a data attribute, otherwise the reference came from the text content of a heading.</p>
<p></p>
<ul>
<li><a href="#csv_files">CSV Files of Role, Properties and States Coverage</a></li>
<li><a href="#roles_with_no_examples">Roles with no Guidance or Examples (<span class="roles_with_no_examples_count">22</span>)</a></li>
<li><a href="#roles_with_one_example">Roles with at Least One Guidance or Example (<span class="roles_with_one_example_count">16</span>)</a></li>
<li><a href="#roles_with_more_than_one_example">Roles with More than One Guidance or Example (<span class="roles_with_more_than_one_examples_count">31</span>)</a></li>
<li><a href="#props_with_no_examples">Properties and States with no Examples (<span class="props_with_no_examples_count">14</span>)</a></li>
<li><a href="#props_with_one_example">Properties and States with One Examples (<span class="props_with_one_example_count">8</span>)</a></li>
<li><a href="#props_with_more_than_one_example">Properties and States with More than One Example (<span class="props_with_more_than_one_examples_count">26</span>)</a></li>
</ul>
<section id="csv_files">
<h2>CSV Files of Role, Properties and States Coverage</h2>
<ul>
<li><a href="role-coverage.csv">CSV file of role coverage</a></li>
<li><a href="prop-coverage.csv">CSV file of properies and states coverage</a></li>
</ul>
</section>
<section id="roles_with_no_examples">
<h2 id="roles_with_no_examples_label">Roles with No Guidance or Examples (<span class="roles_with_no_examples_count">22</span>)</h2>
<ul id="roles_with_no_examples_ul">
<li><code>application</code></li>
<li><code>definition</code></li>
<li><code>directory</code></li>
<li><code>document</code></li>
<li><code>figure</code></li>
<li><code>heading</code></li>
<li><code>img</code></li>
<li><code>list</code></li>
<li><code>listitem</code></li>
<li><code>log</code></li>
<li><code>marquee</code></li>
<li><code>math</code></li>
<li><code>note</code></li>
<li><code>progressbar</code></li>
<li><code>rowheader</code></li>
<li><code>scrollbar</code></li>
<li><code>searchbox</code></li>
<li><code>status</code></li>
<li><code>switch</code></li>
<li><code>term</code></li>
<li><code>textbox</code></li>
<li><code>timer</code></li></ul>
</section>
<section id="roles_with_one_example">
<h2 id="roles_with_one_example_label">Roles with at Least One Guidance or Example (<span class="roles_with_one_example_count">16</span>)</h2>
<table aria-labelledby="roles_with_one_example_label" class="data attributes">
<thead>
<tr>
<th>Role</th>
<th>Guidance</th>
<th>Example</th>
</tr>
</thead>
<tbody id="roles_with_one_example_tbody">
<tr>
<td><code>alertdialog</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/dialog-modal/alertdialog.html">Alert Dialog</a>
</td>
</tr>
<tr>
<td><code>article</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/feed/feed.html">Feed</a>
</td>
</tr>
<tr>
<td><code>banner</code></td>
<td><a href="../aria-practices.html#aria_lh_banner">Banner</a>
</td>
<td><a href="../examples/landmarks/banner.html">Banner Landmark</a>
</td>
</tr>
<tr>
<td><code>columnheader</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/table/table.html">Table</a>
</td>
</tr>
<tr>
<td><code>complementary</code></td>
<td><a href="../aria-practices.html#aria_lh_complemtary">Complementary</a>
</td>
<td><a href="../examples/landmarks/complementary.html">Complementary Landmark</a>
</td>
</tr>
<tr>
<td><code>contentinfo</code></td>
<td><a href="../aria-practices.html#aria_lh_contentinfo">Contentinfo</a>
</td>
<td><a href="../examples/landmarks/contentinfo.html">Contentinfo Landmark</a>
</td>
</tr>
<tr>
<td><code>feed</code></td>
<td><a href="../aria-practices.html#feed">Feed</a>
</td>
<td><a href="../examples/feed/feed.html">Feed</a>
</td>
</tr>
<tr>
<td><code>gridcell</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/grid/LayoutGrids.html">Layout Grid</a>
</td>
</tr>
<tr>
<td><code>link</code></td>
<td><a href="../aria-practices.html#link">Link</a>
</td>
<td><a href="../examples/link/link.html">Link</a>
</td>
</tr>
<tr>
<td><code>main</code></td>
<td><a href="../aria-practices.html#aria_lh_main">Main</a>
</td>
<td><a href="../examples/landmarks/main.html">Main Landmark</a>
</td>
</tr>
<tr>
<td><code>menuitemcheckbox</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a>
</td>
</tr>
<tr>
<td><code>rowgroup</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/table/table.html">Table</a>
</td>
</tr>
<tr>
<td><code>search</code></td>
<td><a href="../aria-practices.html#aria_lh_search">Search</a>
</td>
<td><a href="../examples/landmarks/search.html">Search Landmark</a>
</td>
</tr>
<tr>
<td><code>separator</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a>
</td>
</tr>
<tr>
<td><code>tooltip</code></td>
<td><a href="../aria-practices.html#tooltip">Tooltip Widget</a>
</td>
<td><abbr title="none" style="color: gray">-</abbr></td>
</tr>
<tr>
<td><code>treegrid</code></td>
<td><a href="../aria-practices.html#treegrid">Treegrid</a>
</td>
<td><a href="../examples/treegrid/treegrid-1.html">Treegrid Email Inbox</a>
</td>
</tr></tbody>
</table>
</section>
<section id="roles_with_more_than_one_example">
<h2 id="roles_with_more_than_one_label">Roles with More than One Guidance or Example (<span class="roles_with_more_than_one_examples_count">31</span>)</h2>
<table aria-labelledby="roles_with_more_than_one_label" class="data attributes">
<thead>
<tr>
<th>Role</th>
<th>Guidance</th>
<th>Examples</th>
</tr>
</thead>
<tbody id="roles_with_more_than_one_tbody">
<tr>
<td><code>alert</code></td>
<td><ul>
<li><a href="../aria-practices.html#alert">Alert</a></li>
<li><a href="../aria-practices.html#alertdialog">Alert and Message Dialogs</a></li>
</ul>
</td>
<td><a href="../examples/alert/alert.html">Alert</a>
</td>
</tr>
<tr>
<td><code>button</code></td>
<td><ul>
<li><a href="../aria-practices.html#button">Button</a></li>
<li><a href="../aria-practices.html#menubutton">Menu Button</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/button/button_idl.html">Button (IDL Version)</a></li>
<li><a href="../examples/button/button.html">Button</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>cell</code></td>
<td><ul>
<li><a href="../aria-practices.html#gridAndTableProperties_spans">Defining cell spans using aria-colspan and aria-rowspan </a></li>
<li><a href="../aria-practices.html#gridNav_focus">Whether to Focus on a Cell Or an Element Inside It</a></li>
<li><a href="../aria-practices.html#gridNav_inside">Editing and Navigating Inside a Cell</a></li>
</ul>
</td>
<td><abbr title="none" style="color: gray">-</abbr></td>
</tr>
<tr>
<td><code>checkbox</code></td>
<td><a href="../aria-practices.html#checkbox">Checkbox</a>
</td>
<td><ul>
<li><a href="../examples/checkbox/checkbox-1/checkbox-1.html">Checkbox (Two State)</a></li>
<li><a href="../examples/checkbox/checkbox-2/checkbox-2.html">Checkbox (Mixed-State)</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>combobox</code></td>
<td><ul>
<li><a href="../aria-practices.html#combobox">Combobox</a></li>
<li><a href="../aria-practices.html#combobox">Combobox Keyboard Interaction</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>dialog</code></td>
<td><ul>
<li><a href="../aria-practices.html#dialog_modal">Dialog (Modal)</a></li>
<li><a href="../aria-practices.html#combobox">Dialog Popup Keyboard Interaction</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
<li><a href="../examples/dialog-modal/dialog.html">Modal Dialog</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>form</code></td>
<td><ul>
<li><a href="../aria-practices.html#naming_with_labels">Naming Form Controls with the Label Element</a></li>
<li><a href="../aria-practices.html#aria_lh_form">Form</a></li>
</ul>
</td>
<td><a href="../examples/landmarks/form.html">Form Landmark</a>
</td>
</tr>
<tr>
<td><code>grid</code></td>
<td><ul>
<li><a href="../aria-practices.html#gridAndTableProperties">Grid and Table Properties</a></li>
<li><a href="../aria-practices.html#combobox">Grid Popup Keyboard Interaction</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
<li><a href="../examples/grid/dataGrids.html">Data Grid</a></li>
<li><a href="../examples/grid/LayoutGrids.html">Layout Grid</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>group</code></td>
<td><ul>
<li><a href="../aria-practices.html#radiobutton">Radio Group</a></li>
<li><a href="../aria-practices.html#radiobutton">For Radio Group Contained in a Toolbar</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/carousel/carousel-1.html">Auto-Rotating Image Carousel</a></li>
<li><a href="../examples/checkbox/checkbox-1/checkbox-1.html">Checkbox (Two State)</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/spinbutton/datepicker-spinbuttons.html">Date Picker Spin Button</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2a.html">Navigation Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>listbox</code></td>
<td><ul>
<li><a href="../aria-practices.html#Listbox">Listbox</a></li>
<li><a href="../aria-practices.html#combobox">Listbox Popup Keyboard Interaction</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/listbox/listbox-collapsible.html">Collapsible Dropdown Listbox</a></li>
<li><a href="../examples/listbox/listbox-grouped.html">Listbox with Grouped Options</a></li>
<li><a href="../examples/listbox/listbox-rearrangeable.html">Listboxes with Rearrangeable Options</a></li>
<li><a href="../examples/listbox/listbox-scrollable.html">Scrollable Listbox</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>menu</code></td>
<td><ul>
<li><a href="../aria-practices.html#menu">Menu or Menu bar</a></li>
<li><a href="../aria-practices.html#menubutton">Menu Button</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>menubar</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>menuitem</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>menuitemradio</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>navigation</code></td>
<td><ul>
<li><a href="../aria-practices.html#kbd_generalnav">Fundamental Keyboard Navigation Conventions</a></li>
<li><a href="../aria-practices.html#kbd_general_between">Keyboard Navigation Between Components (The Tab Sequence)</a></li>
<li><a href="../aria-practices.html#kbd_general_within">Keyboard Navigation Inside Components</a></li>
<li><a href="../aria-practices.html#kbd_shortcuts_design_basic">Ensure Basic Access Via Navigation</a></li>
<li><a href="../aria-practices.html#aria_lh_navigation">Navigation</a></li>
</ul>
</td>
<td><a href="../examples/landmarks/navigation.html">Navigation Landmark</a>
</td>
</tr>
<tr>
<td><code>none</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>option</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>presentation</code></td>
<td><ul>
<li><a href="../aria-practices.html#presentation_role">Intentionally Hiding Semantics with the presentation Role</a></li>
<li><a href="../aria-practices.html#presentation_role_effects">Effects of Role presentation </a></li>
<li><a href="../aria-practices.html#presentation_role_ignored">Conditions That Cause Role presentation to be Ignored</a></li>
<li><a href="../aria-practices.html#presentation_role_examples">Example Demonstrating Effects of the presentation Role</a></li>
</ul>
</td>
<td><abbr title="none" style="color: gray">-</abbr></td>
</tr>
<tr>
<td><code>radio</code></td>
<td><ul>
<li><a href="../aria-practices.html#radiobutton">Radio Group</a></li>
<li><a href="../aria-practices.html#radiobutton">For Radio Groups Not Contained in a Toolbar</a></li>
<li><a href="../aria-practices.html#radiobutton">For Radio Group Contained in a Toolbar</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/radio/radio-1/radio-1.html">Radio Group Using Roving tabindex</a></li>
<li><a href="../examples/radio/radio-2/radio-2.html">Radio Group Using aria-activedescendant</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>radiogroup</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/radio/radio-1/radio-1.html">Radio Group Using Roving tabindex</a></li>
<li><a href="../examples/radio/radio-2/radio-2.html">Radio Group Using aria-activedescendant</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>region</code></td>
<td><a href="../aria-practices.html#aria_lh_region">Region</a>
</td>
<td><ul>
<li><a href="../examples/accordion/accordion.html">Accordion</a></li>
<li><a href="../examples/carousel/carousel-1.html">Auto-Rotating Image Carousel</a></li>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/landmarks/region.html">Region Landmark</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>row</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/grid/LayoutGrids.html">Layout Grid</a></li>
<li><a href="../examples/table/table.html">Table</a></li>
<li><a href="../examples/treegrid/treegrid-1.html">Treegrid Email Inbox</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>slider</code></td>
<td><ul>
<li><a href="../aria-practices.html#slider">Slider</a></li>
<li><a href="../aria-practices.html#slidertwothumb">Slider (Multi-Thumb)</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/slider/multithumb-slider.html">Horizontal Multi-Thumb Slider</a></li>
<li><a href="../examples/slider/slider-1.html">Horizontal Slider</a></li>
<li><a href="../examples/slider/slider-2.html">Slider with aria-orientation and aria-valuetext</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>spinbutton</code></td>
<td><a href="../aria-practices.html#spinbutton">Spinbutton</a>
</td>
<td><ul>
<li><a href="../examples/spinbutton/datepicker-spinbuttons.html">Date Picker Spin Button</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>tab</code></td>
<td><a href="../aria-practices.html#kbd_general_between">Keyboard Navigation Between Components (The Tab Sequence)</a>
</td>
<td><ul>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/tabs/tabs-1/tabs.html">Tabs with Automatic Activation</a></li>
<li><a href="../examples/tabs/tabs-2/tabs.html">Tabs with Manual Activation</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>table</code></td>
<td><ul>
<li><a href="../aria-practices.html#gridAndTableProperties">Grid and Table Properties</a></li>
<li><a href="../aria-practices.html#table">Table</a></li>
</ul>
</td>
<td><a href="../examples/table/table.html">Table</a>
</td>
</tr>
<tr>
<td><code>tablist</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/tabs/tabs-1/tabs.html">Tabs with Automatic Activation</a></li>
<li><a href="../examples/tabs/tabs-2/tabs.html">Tabs with Manual Activation</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>tabpanel</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/tabs/tabs-1/tabs.html">Tabs with Automatic Activation</a></li>
<li><a href="../examples/tabs/tabs-2/tabs.html">Tabs with Manual Activation</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>toolbar</code></td>
<td><ul>
<li><a href="../aria-practices.html#toolbar">Toolbar</a></li>
<li><a href="../aria-practices.html#radiobutton">For Radio Groups Not Contained in a Toolbar</a></li>
<li><a href="../aria-practices.html#radiobutton">For Radio Group Contained in a Toolbar</a></li>
</ul>
</td>
<td><a href="../examples/toolbar/toolbar.html">Toolbar</a>
</td>
</tr>
<tr>
<td><code>tree</code></td>
<td><ul>
<li><a href="../aria-practices.html#TreeView">Tree View</a></li>
<li><a href="../aria-practices.html#combobox">Tree Popup Keyboard Interaction</a></li>
</ul>
</td>
<td><ul>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2a.html">Navigation Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>treeitem</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2a.html">Navigation Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr></tbody>
</table>
</section>
<section id="props_with_no_examples">
<h2 id="props_with_no_examples_label">Properties and States with No Guidance or Examples (<span class="props_with_no_examples_count">14</span>)</h2>
<ul id="props_with_no_examples_ul">
<li><code>aria-atomic</code></li>
<li><code>aria-details</code></li>
<li><code>aria-dropeffect</code></li>
<li><code>aria-errormessage</code></li>
<li><code>aria-flowto</code></li>
<li><code>aria-grabbed</code></li>
<li><code>aria-invalid</code></li>
<li><code>aria-keyshortcuts</code></li>
<li><code>aria-multiline</code></li>
<li><code>aria-owns</code></li>
<li><code>aria-placeholder</code></li>
<li><code>aria-readonly</code></li>
<li><code>aria-relevant</code></li>
<li><code>aria-required</code></li></ul>
</section>
<section id="props_with_one_example">
<h2 id="props_with_one_example_label">Properties and States with at Least One Guidance or Example (<span class="props_with_one_example_count">8</span>)</h2>
<table aria-labelledby="props_with_one_example_label" class="data attributes">
<thead>
<tr>
<th>Property or State</th>
<th>Guidance</th>
<th>Example</th>
</tr>
</thead>
<tbody id="props_with_one_example_tbody">
<tr>
<td><code>aria-busy</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/feed/feed.html">Feed</a>
</td>
</tr>
<tr>
<td><code>aria-colcount</code></td>
<td><a href="../aria-practices.html#gridAndTableProperties_cols">Using aria-colcount and aria-colindex </a>
</td>
<td><a href="../examples/grid/dataGrids.html">Data Grid</a>
</td>
</tr>
<tr>
<td><code>aria-colspan</code></td>
<td><a href="../aria-practices.html#gridAndTableProperties_spans">Defining cell spans using aria-colspan and aria-rowspan </a>
</td>
<td><abbr title="none" style="color: gray">-</abbr></td>
</tr>
<tr>
<td><code>aria-current</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/disclosure/disclosure-navigation.html">Disclosure for Navigation Menus</a>
</td>
</tr>
<tr>
<td><code>aria-multiselectable</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/listbox/listbox-rearrangeable.html">Listboxes with Rearrangeable Options</a>
</td>
</tr>
<tr>
<td><code>aria-orientation</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><a href="../examples/slider/slider-2.html">Slider with aria-orientation and aria-valuetext</a>
</td>
</tr>
<tr>
<td><code>aria-rowspan</code></td>
<td><a href="../aria-practices.html#gridAndTableProperties_spans">Defining cell spans using aria-colspan and aria-rowspan </a>
</td>
<td><abbr title="none" style="color: gray">-</abbr></td>
</tr>
<tr>
<td><code>aria-sort</code></td>
<td><a href="../aria-practices.html#gridAndTableProperties_sort">Indicating sort order with aria-sort </a>
</td>
<td><a href="../examples/grid/dataGrids.html">Data Grid</a>
</td>
</tr></tbody>
</table>
</section>
<section id="props_with_more_than_one_example">
<h2 id="props_with_more_than_one_label">Properties and States with More than One Guidance or Example (<span class="props_with_more_than_one_examples_count">26</span>)</h2>
<table aria-labelledby="props_with_more_than_one_label" class="data attributes">
<thead>
<tr>
<th>Property or State</th>
<th>Guidance</th>
<th>Examples</th>
</tr>
</thead>
<tbody id="props_with_more_than_one_tbody">
<tr>
<td><code>aria-activedescendant</code></td>
<td><a href="../aria-practices.html#kbd_focus_activedescendant">Managing Focus in Composites Using aria-activedescendant</a>
</td>
<td><ul>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/listbox/listbox-collapsible.html">Collapsible Dropdown Listbox</a></li>
<li><a href="../examples/listbox/listbox-grouped.html">Listbox with Grouped Options</a></li>
<li><a href="../examples/listbox/listbox-rearrangeable.html">Listboxes with Rearrangeable Options</a></li>
<li><a href="../examples/listbox/listbox-scrollable.html">Scrollable Listbox</a></li>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/radio/radio-2/radio-2.html">Radio Group Using aria-activedescendant</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-autocomplete</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-checked</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/checkbox/checkbox-1/checkbox-1.html">Checkbox (Two State)</a></li>
<li><a href="../examples/checkbox/checkbox-2/checkbox-2.html">Checkbox (Mixed-State)</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/radio/radio-1/radio-1.html">Radio Group Using Roving tabindex</a></li>
<li><a href="../examples/radio/radio-2/radio-2.html">Radio Group Using aria-activedescendant</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-colindex</code></td>
<td><ul>
<li><a href="../aria-practices.html#gridAndTableProperties_cols">Using aria-colcount and aria-colindex </a></li>
<li><a href="../aria-practices.html#gridAndTableProperties_cols_contiguous">Using aria-colindex When Column Indices Are Contiguous</a></li>
<li><a href="../aria-practices.html#gridAndTableProperties_cols_noncontiguous">Using aria-colindex When Column Indices Are Not Contiguous</a></li>
</ul>
</td>
<td><abbr title="none" style="color: gray">-</abbr></td>
</tr>
<tr>
<td><code>aria-controls</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/accordion/accordion.html">Accordion</a></li>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/checkbox/checkbox-2/checkbox-2.html">Checkbox (Mixed-State)</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/disclosure/disclosure-faq.html">Disclosure (Show/Hide) for Answers to Frequently Asked Questions</a></li>
<li><a href="../examples/disclosure/disclosure-img-long-description.html">Disclosure (Show/Hide) for Image Description</a></li>
<li><a href="../examples/disclosure/disclosure-navigation.html">Disclosure for Navigation Menus</a></li>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/tabs/tabs-1/tabs.html">Tabs with Automatic Activation</a></li>
<li><a href="../examples/tabs/tabs-2/tabs.html">Tabs with Manual Activation</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-describedby</code></td>
<td><a href="../aria-practices.html#describing_with_aria-describedby">Describing by referencing content with aria-describedby </a>
</td>
<td><ul>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/dialog-modal/alertdialog.html">Alert Dialog</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
<li><a href="../examples/dialog-modal/dialog.html">Modal Dialog</a></li>
<li><a href="../examples/feed/feed.html">Feed</a></li>
<li><a href="../examples/table/table.html">Table</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-disabled</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/accordion/accordion.html">Accordion</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-expanded</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/accordion/accordion.html">Accordion</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/disclosure/disclosure-faq.html">Disclosure (Show/Hide) for Answers to Frequently Asked Questions</a></li>
<li><a href="../examples/disclosure/disclosure-img-long-description.html">Disclosure (Show/Hide) for Image Description</a></li>
<li><a href="../examples/disclosure/disclosure-navigation.html">Disclosure for Navigation Menus</a></li>
<li><a href="../examples/listbox/listbox-collapsible.html">Collapsible Dropdown Listbox</a></li>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
<li><a href="../examples/treegrid/treegrid-1.html">Treegrid Email Inbox</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2a.html">Navigation Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-haspopup</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/listbox/listbox-collapsible.html">Collapsible Dropdown Listbox</a></li>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-hidden</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/dialog-modal/alertdialog.html">Alert Dialog</a></li>
<li><a href="../examples/spinbutton/datepicker-spinbuttons.html">Date Picker Spin Button</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-label</code></td>
<td><a href="../aria-practices.html#naming_with_aria-label">Naming with a String Attribute Via aria-label </a>
</td>
<td><ul>
<li><a href="../examples/carousel/carousel-1.html">Auto-Rotating Image Carousel</a></li>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/checkbox/checkbox-1/checkbox-1.html">Checkbox (Two State)</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-both.html">Editable Combobox With Both List and Inline Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-list.html">Editable Combobox With List Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-autocomplete-none.html">Editable Combobox without Autocomplete</a></li>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/dialog-modal/alertdialog.html">Alert Dialog</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
<li><a href="../examples/dialog-modal/dialog.html">Modal Dialog</a></li>
<li><a href="../examples/feed/feed.html">Feed</a></li>
<li><a href="../examples/grid/dataGrids.html">Data Grid</a></li>
<li><a href="../examples/grid/LayoutGrids.html">Layout Grid</a></li>
<li><a href="../examples/listbox/listbox-collapsible.html">Collapsible Dropdown Listbox</a></li>
<li><a href="../examples/listbox/listbox-grouped.html">Listbox with Grouped Options</a></li>
<li><a href="../examples/listbox/listbox-rearrangeable.html">Listboxes with Rearrangeable Options</a></li>
<li><a href="../examples/listbox/listbox-scrollable.html">Scrollable Listbox</a></li>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/menubar/menubar-editor.html">Editor Menubar</a></li>
<li><a href="../examples/menubar/menubar-navigation.html">Navigation Menubar</a></li>
<li><a href="../examples/radio/radio-1/radio-1.html">Radio Group Using Roving tabindex</a></li>
<li><a href="../examples/radio/radio-2/radio-2.html">Radio Group Using aria-activedescendant</a></li>
<li><a href="../examples/spinbutton/datepicker-spinbuttons.html">Date Picker Spin Button</a></li>
<li><a href="../examples/table/table.html">Table</a></li>
<li><a href="../examples/tabs/tabs-1/tabs.html">Tabs with Automatic Activation</a></li>
<li><a href="../examples/tabs/tabs-2/tabs.html">Tabs with Manual Activation</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
<li><a href="../examples/treegrid/treegrid-1.html">Treegrid Email Inbox</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2a.html">Navigation Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-labelledby</code></td>
<td><a href="../aria-practices.html#naming_with_aria-labelledby">Naming with Referenced Content Via aria-labelledby </a>
</td>
<td><ul>
<li><a href="../examples/checkbox/checkbox-1/checkbox-1.html">Checkbox (Two State)</a></li>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/combobox/combobox-select-only.html">Select-Only Combobox</a></li>
<li><a href="../examples/combobox/grid-combo.html">Editable Combobox with Grid Popup</a></li>
<li><a href="../examples/dialog-modal/alertdialog.html">Alert Dialog</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
<li><a href="../examples/dialog-modal/dialog.html">Modal Dialog</a></li>
<li><a href="../examples/feed/feed.html">Feed</a></li>
<li><a href="../examples/grid/dataGrids.html">Data Grid</a></li>
<li><a href="../examples/grid/LayoutGrids.html">Layout Grid</a></li>
<li><a href="../examples/listbox/listbox-collapsible.html">Collapsible Dropdown Listbox</a></li>
<li><a href="../examples/listbox/listbox-grouped.html">Listbox with Grouped Options</a></li>
<li><a href="../examples/listbox/listbox-rearrangeable.html">Listboxes with Rearrangeable Options</a></li>
<li><a href="../examples/listbox/listbox-scrollable.html">Scrollable Listbox</a></li>
<li><a href="../examples/menu-button/menu-button-actions-active-descendant.html">Actions Menu Button Using aria-activedescendant</a></li>
<li><a href="../examples/menu-button/menu-button-actions.html">Actions Menu Button Using element.focus()</a></li>
<li><a href="../examples/menu-button/menu-button-links.html">Navigation Menu Button</a></li>
<li><a href="../examples/radio/radio-1/radio-1.html">Radio Group Using Roving tabindex</a></li>
<li><a href="../examples/radio/radio-2/radio-2.html">Radio Group Using aria-activedescendant</a></li>
<li><a href="../examples/spinbutton/datepicker-spinbuttons.html">Date Picker Spin Button</a></li>
<li><a href="../examples/tabs/tabs-1/tabs.html">Tabs with Automatic Activation</a></li>
<li><a href="../examples/tabs/tabs-2/tabs.html">Tabs with Manual Activation</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2a.html">Navigation Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
<li><a href="../examples/landmarks/complementary.html">Complementary Landmark</a></li>
<li><a href="../examples/landmarks/form.html">Form Landmark</a></li>
<li><a href="../examples/landmarks/main.html">Main Landmark</a></li>
<li><a href="../examples/landmarks/navigation.html">Navigation Landmark</a></li>
<li><a href="../examples/landmarks/region.html">Region Landmark</a></li>
<li><a href="../examples/landmarks/search.html">Search Landmark</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-level</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/treegrid/treegrid-1.html">Treegrid Email Inbox</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-live</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/alert/alert.html">Alert</a></li>
<li><a href="../examples/carousel/carousel-1.html">Auto-Rotating Image Carousel</a></li>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-modal</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/combobox/combobox-datepicker.html">Date Picker Combobox</a></li>
<li><a href="../examples/dialog-modal/alertdialog.html">Alert Dialog</a></li>
<li><a href="../examples/dialog-modal/datepicker-dialog.html">Date Picker Dialog</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-posinset</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/feed/feed.html">Feed</a></li>
<li><a href="../examples/treegrid/treegrid-1.html">Treegrid Email Inbox</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1a.html">File Directory Treeview Using Computed Properties</a></li>
<li><a href="../examples/treeview/treeview-1/treeview-1b.html">File Directory Treeview Using Declared Properties</a></li>
<li><a href="../examples/treeview/treeview-2/treeview-2b.html">Navigation Treeview Using Declared Properties</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-pressed</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/button/button_idl.html">Button (IDL Version)</a></li>
<li><a href="../examples/button/button.html">Button</a></li>
<li><a href="../examples/toolbar/toolbar.html">Toolbar</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-roledescription</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>
<li><a href="../examples/carousel/carousel-1.html">Auto-Rotating Image Carousel</a></li>
<li><a href="../examples/carousel/carousel-2-tablist.html">Auto-Rotating Image Carousel with a Tablist</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-rowcount</code></td>
<td><a href="../aria-practices.html#gridAndTableProperties_rows">Using aria-rowcount and aria-rowindex </a>
</td>
<td><ul>
<li><a href="../examples/grid/dataGrids.html">Data Grid</a></li>
<li><a href="../examples/grid/LayoutGrids.html">Layout Grid</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-rowindex</code></td>
<td><a href="../aria-practices.html#gridAndTableProperties_rows">Using aria-rowcount and aria-rowindex </a>
</td>
<td><ul>
<li><a href="../examples/grid/dataGrids.html">Data Grid</a></li>
<li><a href="../examples/grid/LayoutGrids.html">Layout Grid</a></li>
</ul>
</td>
</tr>
<tr>
<td><code>aria-selected</code></td>
<td><abbr title="none" style="color: gray">-</abbr></td>
<td><ul>