-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathwcag-mapping.json
More file actions
4514 lines (4514 loc) · 144 KB
/
wcag-mapping.json
File metadata and controls
4514 lines (4514 loc) · 144 KB
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
{
"act-rules": [
{
"title": "ARIA attribute is defined in WAI-ARIA",
"permalink": "/standards-guidelines/act/rules/5f99a7/",
"successCriteria": [
"info-and-relationships",
"name-role-value"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "5f99a7",
"name": "ARIA attribute is defined in WAI-ARIA",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each `aria-` attribute specified is defined in ARIA 1.2.\n",
"accessibility_requirements": {
"wcag20:1.3.1": {
"secondary": "This success criterion is **less strict** than this rule. This is because the rule does not ignore irrelevant ARIA properties. Some of the failed examples satisfy this success criterion."
},
"wcag20:4.1.2": {
"secondary": "This success criterion is **less strict** than this rule. This is because the rule does not ignore irrelevant ARIA properties. Some of the failed examples satisfy this success criterion."
}
},
"input_aspects": [
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Jey Nandakumar"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "ARIA state or property has valid value",
"permalink": "/standards-guidelines/act/rules/6a7281/",
"successCriteria": [
"info-and-relationships",
"name-role-value"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "6a7281",
"name": "ARIA state or property has valid value",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each ARIA state or property has a valid value type.\n",
"accessibility_requirements": {
"aria12:propcharacteristic_value": {
"title": "ARIA 1.2, 6.2.4 Value (Characteristics of States and Properties)",
"forConformance": true,
"failed": "not satisfied",
"passed": "satisfied",
"inapplicable": "satisfied"
},
"wcag20:1.3.1": {
"secondary": "This success criterion is **less strict** than this rule. This is because the rule does not ignore irrelevant ARIA properties. Some of the failed examples satisfy this success criterion."
},
"wcag20:4.1.2": {
"secondary": "This success criterion is **less strict** than this rule. This is because the rule does not ignore irrelevant ARIA properties. Some of the failed examples satisfy this success criterion."
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Anne Thyme Nørregaard",
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Autocomplete attribute has valid value",
"permalink": "/standards-guidelines/act/rules/73f2c2/",
"successCriteria": [
"identify-input-purpose"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "73f2c2",
"name": "Autocomplete attribute has valid value",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that the HTML `autocomplete` attribute has a correct value.\n",
"accessibility_requirements": {
"wcag21:1.3.5": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"Accessibility Tree",
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Aron Janecki",
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Button has non-empty accessible name",
"permalink": "/standards-guidelines/act/rules/97a4e1/",
"successCriteria": [
"name-role-value"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "97a4e1",
"name": "Button has non-empty accessible name",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each `button` element has a non-empty accessible name.\n",
"accessibility_requirements": {
"wcag20:4.1.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"Accessibility Tree",
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Stein Erik Skotkjerra",
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Element in sequential focus order has visible focus",
"permalink": "/standards-guidelines/act/rules/oj04fd/",
"successCriteria": [
"focus-visible"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "oj04fd",
"name": "Element in sequential focus order has visible focus",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each element in sequential focus order has some visible focus indication.\n",
"accessibility_requirements": {
"wcag20:2.4.7": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"CSS styling",
"DOM tree"
],
"acknowledgments": {
"authors": [
"Jean-Yves Moyen"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Element marked as decorative is not exposed",
"permalink": "/standards-guidelines/act/rules/46ca7f/",
"successCriteria": [
"non-text-content"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "46ca7f",
"name": "Element marked as decorative is not exposed",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that elements marked as decorative either are not included in the accessibility tree, or have a presentational role.\n",
"accessibility_requirements": {
"wcag20:1.1.1": {
"secondary": "This success criterion is **less strict** than this rule. Only when this rule is applied to decorative content does a failure of 1.1.1 occur."
}
},
"input_aspects": [
"Accessibility tree",
"CSS styling",
"DOM tree"
],
"acknowledgments": {
"authors": [
"Jean-Yves Moyen"
],
"funding": [
"WAI-Tools"
]
},
"htmlHintIgnore": [
"alt-require"
]
}
},
{
"title": "Element with aria-hidden has no content in sequential focus navigation",
"permalink": "/standards-guidelines/act/rules/6cfa84/",
"successCriteria": [
"name-role-value"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "6cfa84",
"name": "Element with aria-hidden has no content in sequential focus navigation",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that elements with an `aria-hidden` attribute do not contain elements that are part of the sequential focus navigation and focusable.\n",
"accessibility_requirements": {
"wcag20:4.1.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"using-aria:fourth": {
"title": "Using ARIA, 2.4 Fourth Rule of ARIA Use",
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Element with lang attribute has valid language tag",
"permalink": "/standards-guidelines/act/rules/de46e4/",
"successCriteria": [
"language-of-parts"
],
"wcagTechniques": [
"H58"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "de46e4",
"name": "Element with lang attribute has valid language tag",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that a non-empty `lang` attribute of an element in the page has a language tag with a known primary language subtag.\n",
"accessibility_requirements": {
"wcag20:3.1.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:H58": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"Accessibility Tree",
"CSS Styling",
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Bryn Anderson",
"Jey Nandakumar"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Element with presentational children has no focusable content",
"permalink": "/standards-guidelines/act/rules/307n5z/",
"successCriteria": [
"name-role-value"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "307n5z",
"name": "Element with presentational children has no focusable content",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that elements with a role that makes its children presentational do not contain focusable elements.\n",
"accessibility_requirements": {
"wcag20:4.1.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Element with role attribute has required states and properties",
"permalink": "/standards-guidelines/act/rules/4e8ab6/",
"successCriteria": [
"info-and-relationships",
"name-role-value"
],
"wcagTechniques": [
"ARIA5"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "4e8ab6",
"name": "Element with role attribute has required states and properties",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that elements that have an explicit role also specify all required states and properties.\n",
"accessibility_requirements": {
"wcag-technique:ARIA5": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"aria12:requiredState": {
"title": "ARIA 1.2, 5.2.2 Required States and Properties",
"forConformance": true,
"failed": "not satisfied",
"passed": "satisfied",
"inapplicable": "satisfied"
},
"wcag20:1.3.1": {
"secondary": "This success criterion is **less strict** than this rule. This is because browsers and assistive technologies will often fall back on a non-standard default value, which may be sufficient. Some of the failed examples may satisfy this success criterion."
},
"wcag20:4.1.2": {
"secondary": "This success criterion is **less strict** than this rule. This is because browsers and assistive technologies will often fall back on a non-standard default value, which may be sufficient. Some of the failed examples may satisfy this success criterion."
}
},
"input_aspects": [
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Anne Thyme Nørregaard",
"Tom Brunet"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Form field has non-empty accessible name",
"permalink": "/standards-guidelines/act/rules/e086e5/",
"successCriteria": [
"name-role-value",
"info-and-relationships",
"label-in-name"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "e086e5",
"name": "Form field has non-empty accessible name",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each form field element has a non-empty accessible name.\n",
"accessibility_requirements": {
"wcag20:4.1.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag20:1.3.1": {
"secondary": "This success criterion is **more strict** than this rule. This is because 1.3.1 Info and Relationship requires that information, structure, and relationships conveyed through presentation can be programmatically determined or are available in text, while 4.1.2 Name, Role, Value only requires an accessible name."
},
"wcag20:2.5.3": {
"secondary": "This success criterion is **more strict** than this rule. This is because 2.5.3 Label in Name requires that if a label is visible, the accessible name contains the label that is presented visually, while 4.1.2 Name, Role, Value only requires an accessible name."
}
},
"input_aspects": [
"Accessibility Tree",
"CSS styling",
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Anne Thyme Nørregaard",
"Bryn Anderson"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Headers attribute specified on a cell refers to cells in the same table element",
"permalink": "/standards-guidelines/act/rules/a25f45/",
"successCriteria": [
"info-and-relationships"
],
"wcagTechniques": [
"H43"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "a25f45",
"name": "Headers attribute specified on a cell refers to cells in the same table element",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that the `headers` attribute on a cell refer to other cells in the same `table` element.\n",
"accessibility_requirements": {
"wcag20:1.3.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:H43": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Audrey Maniez",
"Jey Nandakumar"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "HTML images contain no text",
"permalink": "/standards-guidelines/act/rules/0va7u6/",
"successCriteria": [
"images-of-text",
"images-of-text-no-exception"
],
"wcagTechniques": [],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "0va7u6",
"name": "HTML images contain no text",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that images of text are not used\n",
"accessibility_requirements": {
"wcag20:1.4.5": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag20:1.4.9": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling",
"Language"
],
"acknowledgments": {
"authors": [
"Carlos Duarte",
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
],
"assets": [
"Times Square image released into the public domain by (WT-shared) Ypsilonatshared at wts wikivoyage.",
"Book shelf image by Alexandre Boue, licensed under the [Creative Commons Attribution-ShareAlike 4.0 International](https://creativecommons.org/licenses/by-sa/4.0/deed.en) license.",
"Ivanhoe Classic Comics released into the public domain by Malcolm Kildale under the [Creative Commons Attribution-ShareAlike 3.0 Unported](https://creativecommons.org/licenses/by-sa/3.0/deed.en) license"
]
}
}
},
{
"title": "HTML page has lang attribute",
"permalink": "/standards-guidelines/act/rules/b5c3f8/",
"successCriteria": [
"language-of-page"
],
"wcagTechniques": [
"H57"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "b5c3f8",
"name": "HTML page has lang attribute",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that an HTML page has a non-empty `lang` attribute.\n",
"accessibility_requirements": {
"wcag20:3.1.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:H57": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Jey Nandakumar"
],
"previous_authors": [
"Annika Nietzio"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "HTML page has non-empty title",
"permalink": "/standards-guidelines/act/rules/2779a5/",
"successCriteria": [
"page-titled"
],
"wcagTechniques": [
"G88",
"H25"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "2779a5",
"name": "HTML page has non-empty title",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that a non-embedded HTML page has a non-empty title.\n",
"accessibility_requirements": {
"wcag20:2.4.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G88": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:H25": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Anne Thyme Nørregaard",
"Bryn Anderson",
"Jey Nandakumar",
"Stein Erik Skotkjerra",
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
},
"htmlHintIgnore": [
"title-require"
]
}
},
{
"title": "HTML page lang attribute has valid language tag",
"permalink": "/standards-guidelines/act/rules/bf051a/",
"successCriteria": [
"language-of-page"
],
"wcagTechniques": [
"H57"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "bf051a",
"name": "HTML page lang attribute has valid language tag",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that the `lang` attribute of the root element of a non-embedded HTML page has a language tag with a known primary language subtag.\n",
"accessibility_requirements": {
"wcag20:3.1.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:H57": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree"
],
"acknowledgments": {
"authors": [
"Jey Nandakumar"
],
"previous_authors": [
"Annika Nietzio"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "HTML page title is descriptive",
"permalink": "/standards-guidelines/act/rules/c4a8a4/",
"successCriteria": [
"page-titled"
],
"wcagTechniques": [
"G88",
"H25"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "c4a8a4",
"name": "HTML page title is descriptive",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that the first title in an HTML web page describes the topic or purpose of that page.\n",
"accessibility_requirements": {
"wcag20:2.4.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "satisfied",
"inapplicable": "further testing needed"
},
"wcag-technique:G88": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:H25": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"Language"
],
"acknowledgments": {
"authors": [
"Anne Thyme Nørregaard",
"Corbb O'Connor"
],
"funding": [
"WAI-Tools"
]
},
"htmlHintIgnore": [
"title-require"
]
}
},
{
"title": "Iframe with interactive elements is not excluded from tab-order",
"permalink": "/standards-guidelines/act/rules/akn7bn/",
"successCriteria": [
"keyboard",
"keyboard-no-exception"
],
"wcagTechniques": [
"G202"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "akn7bn",
"name": "Iframe with interactive elements is not excluded from tab-order",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that `iframe` elements which contain keyboard focusable elements are not excluded from sequential focus navigation.\n",
"accessibility_requirements": {
"wcag20:2.1.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag20:2.1.3": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G202": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Brian Bors",
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
]
}
}
},
{
"title": "Image accessible name is descriptive",
"permalink": "/standards-guidelines/act/rules/qt1vmo/",
"successCriteria": [
"non-text-content"
],
"wcagTechniques": [
"G94",
"G95"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "qt1vmo",
"name": "Image accessible name is descriptive",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that the accessible names of images serve an equivalent purpose to the image.\n",
"accessibility_requirements": {
"wcag20:1.1.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G94": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G95": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"Accessibility Tree",
"DOM Tree",
"CSS Styling",
"Language"
],
"acknowledgments": {
"authors": [
"Wilco Fiers"
],
"funding": [
"WAI-Tools"
],
"assets": [
"W3C; HTML and W3C logo",
"Wikimedia; Fireworks image",
"Adobe; PDF logo"
]
},
"htmlHintIgnore": [
"alt-require",
"attr-lowercase"
]
}
},
{
"title": "Image button has non-empty accessible name",
"permalink": "/standards-guidelines/act/rules/59796f/",
"successCriteria": [
"non-text-content",
"name-role-value"
],
"wcagTechniques": [
"G94",
"G95"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "59796f",
"name": "Image button has non-empty accessible name",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each image button element has a non-empty accessible name.\n",
"accessibility_requirements": {
"wcag20:1.1.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag20:4.1.2": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G94": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G95": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Anne Thyme Nørregaard"
],
"funding": [
"WAI-Tools"
]
},
"htmlHintIgnore": [
"alt-require"
]
}
},
{
"title": "Image has non-empty accessible name",
"permalink": "/standards-guidelines/act/rules/23a2a8/",
"successCriteria": [
"non-text-content"
],
"wcagTechniques": [
"G94",
"G95"
],
"deprecated": false,
"proposed": false,
"frontmatter": {
"id": "23a2a8",
"name": "Image has non-empty accessible name",
"rules_format": 1.1,
"rule_type": "atomic",
"description": "This rule checks that each image either has a non-empty accessible name or is marked up as decorative.\n",
"accessibility_requirements": {
"wcag20:1.1.1": {
"forConformance": true,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G94": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
},
"wcag-technique:G95": {
"forConformance": false,
"failed": "not satisfied",
"passed": "further testing needed",
"inapplicable": "further testing needed"
}
},
"input_aspects": [
"Accessibility Tree",
"DOM Tree",
"CSS Styling"
],
"acknowledgments": {
"authors": [
"Wilco Fiers"
],
"previous_authors": [
"Anne Thyme Nørregaard",
"Stein Erik Skotkjerra"
],