-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata-original.json
1979 lines (1979 loc) · 66.3 KB
/
data-original.json
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
[
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Text that is styled as headings uses heading markup.",
"tags":"",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Only text that heads up content has been coded as headings.",
"tags":"headings, heading, content, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Heading levels have been applied in a logical sequence.\n",
"tags":"headings, heading, content, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"H1 identifies the main content heading, and is positioned immediately before the unique page content.",
"tags":"headings, heading, content, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Heading markup precedes, rather than encloses, subordinate content.",
"tags":"headings, heading, content, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"2.4.6",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-descriptive.html"
}],
"criteria":"Headings are descriptive and accurate.",
"tags":"headings, heading, content, structure",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"2.4.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-title.html"
}],
"criteria":"All pages (including those within frames) have page titles.",
"tags":"headings, heading, content, titles, structure",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"2.4.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-title.html"
}],
"criteria":"Each page title is unique, unless it is the result of a user search.",
"tags":"headings, heading, content, titles, structure",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"2.4.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-title.html"
}],
"criteria":"Page titles describe the topic or purpose of the page.",
"tags":"headings, heading, content, titles, structure",
"departments":["Editorial"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"Where possible, the document title should match the page title",
"tags":"headings, heading, content, titles, structure",
"departments":["Front-end","Back-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Where tabular layout is required to understand data, data tables are used correctly.",
"tags":"data, tables, tabular data, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Data tables have separate cells for individual data items. ",
"tags":"data, tables, tabular data, structure",
"departments":["Front-end", "Back-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Simple data table headers are correctly marked up using TH elements.",
"tags":"data, tables, tabular data, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Complex data tables have appropriate SCOPE, ID and HEADERS markup.",
"tags":"data, tables, tabular data, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"SUMMARY attributes and/or CAPTION elements are used correctly.",
"tags":"data, tables, tabular data, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"List elements OL, UL and DL are used only for appropriate lists.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Where items are presented in a visual list, list markup is used.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"BLOCKQUOTE and CITE elements are used for quotations only.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Where quotations are cited, BLOCKQUOTE elements are used.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"AAA",
"levels":["AAA"],
"refs":[{
"number":"3.1.4",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/meaning-located.html"
}],
"criteria":"Abbreviations are expanded in either text or markup, but not both for the same instance.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"EM or STRONG elements are used for emphasis.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"Important emphasis conveyed by EM or STRONG elements is also conveyed by text.",
"tags":"Lists, blockquotes, structure, strong, emphasis, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"2.4.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-skip.html"
}],
"criteria":"Blocks of repeated content can be bypassed by skip links or provided structure.",
"tags":"Navigation, skip links, links, structure",
"departments":["UX"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"Where skip links are used, they function correctly and are visible, or become visible on tab focus.",
"tags":"Navigation, skip links, links, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"2.4.5",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-mult-loc.html"
}],
"criteria":"More than one way to navigate between web pages is provided.",
"tags":"Navigation, skip links, links, structure",
"departments":["UX"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"3.2.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Navigational segments repeated on multiple Web pages occur in the same relative order each time they are used, unless the user initiates the change.",
"tags":"Navigation, skip links, links, structure",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html"
}],
"criteria":"Contrast ratios achieve the minimum threshold or a style switch option with good contrast is provided.",
"tags":"Foreground, background, colour, color, color contrast, design",
"departments":["Design"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html"
}],
"criteria":"Colour is defined for both background and text, or for neither.",
"tags":"Foreground, background, colour, color, color contrast, design",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html"
}],
"criteria":"Colour for text and background is defined in the same way, (both in CSS or both in HTML).",
"tags":"Foreground, background, colour, color, color contrast, design",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html"
}],
"criteria":"Images of text have a solid background colour.",
"tags":"Foreground, background, colour, color, color contrast, design",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html"
}],
"criteria":"Background images provide good contrast for foreground text.",
"tags":"Foreground, background, colour, color, color contrast, design",
"departments":["Design"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.4",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-scale.html"
}],
"criteria":"Resizing up to 200% is possible, either natively from browser controls or with the aid of application or site tools.",
"tags":"Text, text sizing, resizing, design",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.4",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-scale.html"
}],
"criteria":"Text can be resized up to 200% without any cropping, truncating, overlapping, or loss of any information.",
"tags":"Text, text sizing, resizing, design",
"departments":["Front-end","Design"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.4.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-without-color.html"
}],
"criteria":"Link text is distinguished from plain text by underline or other styling in addition to any colour difference. ",
"tags":"Navigation, skip links, links, design",
"departments":["Front-end","Design"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"2.4.7",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-focus-visible.html"
}],
"criteria":"Links all have visible keyboard focus indicators.",
"tags":"Navigation, skip links, links, design",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"2.4.7",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-focus-visible.html"
}],
"criteria":"Form controls all have visible keyboard focus indicators.",
"tags":"Navigation, skip links, links, design",
"departments":["Front-end"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"The clickable area of a link has been made as large as possible within the design i.e, padding has been put on the a-tag rather than a margin when spacing out the navigation.",
"tags":"Navigation, skip links, links, design",
"departments":["Design","Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-sequence.html"
}],
"criteria":"CSS styling can be removed, without making the reading order or relationship sequence of content illogical. ",
"tags":"Layout, mark up, order, ordering, reading order, design",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-sequence.html"
}],
"criteria":"Layout tables can be linearised, without making the reading order or relationship sequence of content illogical.",
"tags":"Layout, mark up, order, ordering, reading order, design",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Layout tables are free of data table elements and attributes. ",
"tags":"Layout, mark up, order, ordering, reading order, design",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"4.1.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/ensure-compat-rsv.html"
}],
"criteria":"Frames have descriptive title attributes.",
"tags":"Iframes, frames, design",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"4.1.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/ensure-compat-rsv.html"
}],
"criteria":"IFRAME elements have descriptive title attributes.",
"tags":"Iframes, frames, design",
"departments":["Front-end"],
"url":""
},
{
"level":"SRBP",
"levels":["SRBP"],
"refs":[{
"number":"4.1.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/ensure-compat-rsv.html"
}],
"criteria":"IFRAME elements have alternative content providing a descriptive link to the page or information presented within the IFRAME.",
"tags":"Iframes, frames, design",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Linked images have alternative text concisely and accurately identifying the destination of the link. ",
"tags":"Non-text content, non-text, images, media",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Informative images have alternative text accurately conveying equivalent information.",
"tags":"Non-text content, non-text, images, media",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Images of text have alternative text accurately replicating visible text. ",
"tags":"Non-text content, non-text, images, media",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Decorative, formatting or invisible images have empty ALT attributes.",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Complex images, such as graphs and diagrams have alternative text concisely identifying the image and the location of its long description.",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Complex images have long descriptions that convey the same information that is conveyed by the image.",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"LONGDESC attributes are used appropriately and accurately. ",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Groups of images conveying a single piece of information, such as ranking stars, or stage progression images, have appropriate ALT attributes. ",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Background images are only used as decoration OR replicate information that is present in text.",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.5",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-text-presentation.html"
}],
"criteria":"Images of text are only used where the same presentation couldn't be achieved using text and styling.",
"tags":"Non-text content, non-text, images, media",
"departments":["Design"],
"url":""
},
{
"level":"AA",
"levels":["AA","AAA"],
"refs":[{
"number":"1.4.5",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-text-presentation.html"
}],
"criteria":"Images of text can be replaced or restyled using style switching functionality.",
"tags":"Non-text content, non-text, images, media",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Image map images all have alternative text providing an accurate context for the map's AREA elements.",
"tags":"Non-text content, non-text, images, media, image maps",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Image map AREA elements have alternative text accurately describing the destination of links.",
"tags":"Non-text content, non-text, images, media, image maps",
"departments":["Front-end"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"Redundant text links are provided for image map hotspots.",
"tags":"Non-text content, non-text, images, media, image maps",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.4.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-dis-audio.html"
}],
"criteria":"Audio or video with sound that lasts for more than 3 seconds, is static on page load, or has a pause mechanism available at the top of the page.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Audio only has a text alternative that at least provides descriptive identification of the audio. ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-av-only-alt.html"
}],
"criteria":"Informative audio has a text alternative that is equivalent to the audible information.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-captions.html"
}],
"criteria":"Audio used as an alternative to text content is clearly identified as such, and contains only information available in the primary content.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Design"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"2.2.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/time-limits-pause.html"
}],
"criteria":"Auto-starting silent video that lasts for more than 5 seconds, in web pages that include other content, can be paused, stopped or hidden by the user. ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.1.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/text-equiv-all.html"
}],
"criteria":"Silent video has a text alternative that at least provides descriptive identification of the video. ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-av-only-alt.html"
}],
"criteria":"Informative silent video has a text alternative equivalent to the visible information. ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-captions.html"
}],
"criteria":"Multimedia has synchronised captions for audio content.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-captions.html"
}],
"criteria":"Captions are complete, missing no dialogue or important sound effects.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-audio-desc.html"
}],
"criteria":"Multimedia has synchronised audio description of visual information, or a full text transcription.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-audio-desc.html"
}],
"criteria":"Audio description or text alternatives are complete, missing no visual information evident in the video. ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end","Editorial"],
"url":""
},
{
"level":"AAA",
"levels":["AAA"],
"refs":[{
"number":"1.2.8",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-text-doc.html"
}],
"criteria":"Multimedia has full text transcription, conveying both audible and visual information. ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-audio-desc.html"
},{
"number":"1.2.8",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-text-doc.html"
}],
"criteria":"Links to media alternatives are clearly labelled as such, positioned immediately next to the media (before embedded media, or adjacent to links that activate media players). ",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.2.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/media-equiv-audio-desc.html"
}],
"criteria":"Multimedia used as an alternative to text content is clearly identified as such, and contains only information available in the primary content.",
"tags":"Non-text content, non-text, images, media, audio, video",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"2.4.6",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/navigation-mechanisms-descriptive.html"
},{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Label text is accurate and makes the control purpose or required input clear. ",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Labels are correctly positioned.",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
}],
"criteria":"Form labels are explicitly associated with their related form fields.",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Groups of controls that are visually related, have labels that identify the required input for each field. ",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"1.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/content-structure-separation-programmatic.html"
},{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"The context or relationship between groups of form controls is identified effectively. ",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"Links leading to help or additional information are positioned before, rather than within, explicit labels. ",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Instructions for completing forms are clear and complete. ",
"tags":"forms, labels, inputs, groups, links",
"departments":["Editorial"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Instructions for completing or correcting forms and form fields are positioned before the first, or related, field.",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.2",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-cues.html"
}],
"criteria":"Suggestions for correct format are made when input must be in a specific format. ",
"tags":"forms, labels, inputs, groups, links",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-identified.html"
}],
"criteria":"Error notification is clearly associated with the relevant field or fields in error. ",
"tags":"forms, labels, inputs, groups, links, errors, validation",
"departments":["Front-end"],
"url":""
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-identified.html"
},{
"number":"3.3.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-suggestions.html"
}],
"criteria":"Mandatory fields without input are identified and described in text. ",
"tags":" forms, labels, inputs, groups, links, errors, validation",
"departments":["Front-end"],
"url":""
},
{
"level":"Zone",
"levels":["Zone"],
"refs":[],
"criteria":"Mandatory fields should use both the html5 required attribute and the Aria-required attribute to ensure the in-built browser validation is accessible. The latter should be set to \"true\"",
"tags":"forms, labels, inputs, groups, links, errors, validation",
"departments":["Front-end"],
"url":"http://john.foliot.ca/required-inputs/"
},
{
"level":"A",
"levels":["A","AA","AAA"],
"refs":[{
"number":"3.3.1",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-identified.html"
},{
"number":"3.3.3",
"url":"http://www.w3.org/TR/UNDERSTANDING-WCAG20/minimize-error-suggestions.html"
}],
"criteria":"Fields with incorrect data formats are identified in text and suggestion for correct format is made",
"tags":"forms, labels, inputs, groups, links, errors, validation",
"departments":["Front-end"],
"url":""
},