-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaccessibility.html
989 lines (989 loc) · 19.4 KB
/
accessibility.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
<html>
<head>
<link rel="stylesheet" href="acc-css/style.css">
</head>
<body>
<h1>Accessibility statement for <a href="https://librarylabs.ed.ac.uk/">Library Labs</a></h1>
<p>Website accessibility statement in line with Public Sector Body (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018</p>
<p><a href="https://librarylabs.ed.ac.uk/">Library Labs</a> <a href="https://librarylabs.ed.ac.uk/">https://librarylabs.ed.ac.uk/</a> is a website hosted by the University of Edinburgh Library on behalf of the University of Edinburgh. It is a virtual laboratory for staff within the University of Edinburgh's Library and University Collections division to experiment with new ideas, technologies and collaborations, which can be used in conjunction with the library’s collections and services.</p>
<p>We want as many people as possible to be able to use our website. For example, this means you should be able to:</p>
<ul>
<li>change colours, contrast levels and fonts.</li>
<li>experience no time limits to content</li>
<li>navigate most of the website using just a keyboard</li>
<li>magnify up to 200%</li>
<li>navigate most of the site using a screen reader</li>
</ul>
<p>We’ve also made the website text as simple as possible to understand.</p>
<h2>Customising the website</h2>
<p>AbilityNet has advice on making your device easier to use if you have a disability.</p>
<p><a href="https://mcmw.abilitynet.org.uk/">AbilityNet - My computer my way</a></p>
<p>With a few simple steps you can customise the appearance of our website to make it easier to read and navigate.</p>
<p><a href="https://www.ed.ac.uk/about/website/accessibility/customising-site">Additional information on how to customise our website appearance</a></p>
<p>If you are a member of the University staff or a student you can use the free Sensus Access accessible document conversion service.</p>
<p><a href="https://www.ed.ac.uk/student-disability-service/staff/supporting-students/accessible-technology">SenusAccess Information</a></p>
<h2>How accessible this website is</h2>
<p>We know some parts of this website are not fully accessible:</p>
<ul>
<li>some non-text content does not have text alternatives</li>
<li>some colour contrasts do not meet recommended guidance</li>
<li>Some font size is quite small</li>
<li>Some link text does not fully describe the nature and topic of the link</li>
</ul>
<h3>Feedback and contact information</h3>
<p>If you need information on this website in a different format like accessible PDF, large print, audio recording or braille please contact the website team by contacting us:</p>
<p>By using the IS Helpline online contact form</p>
<p><a href="https://www.ishelpline.ed.ac.uk/forms/">IS Helpline contact form</a></p>
<p>Or phoning</p>
<p>+44 (0)131 651 5151</p>
<p>Or email</p>
<p><a href="mailto:Information.systems@ed.ac.uk">Information.systems@ed.ac.uk</a></p>
<p>We’ll consider your request and get back to you in 5 working days.</p>
<h2>Reporting accessibility problems with this website</h2>
<p>We’re always looking to improve the accessibility of this website. If you find any problems not listed on this page or think we’re not meeting accessibility requirements please let us know by contacting:</p>
<p>By using the IS Helpline online contact form</p>
<p><a href="https://www.ishelpline.ed.ac.uk/forms/">IS Helpline contact form</a></p>
<p>Or phoning</p>
<p>+44 (0)131 651 5151</p>
<p>Or email</p>
<p><a href="mailto:Information.systems@ed.ac.uk">Information.systems@ed.ac.uk</a></p>
<p>We’ll consider your request and get back to you in 5 working days.</p>
<h2>Enforcement procedure</h2>
<p>The Equality and Human Rights Commission (EHRC) is responsible for enforcing the Public Sector Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018 (the ‘accessibility regulations’). If you’re not happy with how we respond to your complaint please contact the Equality Advisory and Support Service (EASS) directly.</p>
<p><a href="https://www.equalityadvisoryservice.com/">Contact details for the Equality Advisory and Support Service (EASS)</a></p>
<p>The government has produced information on how to report accessibility issues:</p>
<p><a href="https://www.gov.uk/reporting-accessibility-problem-public-sector-website">Reporting an accessibility problem on a public sector website</a></p>
<h2>Contacting us by phone using British Sign Language</h2>
<h3>British Sign Language service</h3>
<p>British Sign Language Scotland runs a service for British Sign Language users and all of Scotland’s public bodies using video relay. This enables sign language users to contact public bodies and vice versa. The service operates from 8am to 12 midnight, 7 days a week. </p>
<p><a href="https://contactscotland-bsl.org/">British Sign Language Scotland service details</a></p>
<h2>Technical information about this website’s accessibility</h2>
<p>The University of Edinburgh is committed to making its websites accessible, in accordance with the Public Sector Bodies (Websites and Mobile Applications) (No. 2) Accessibility Regulations 2018.</p>
<h3>Compliance Status</h3>
<p>This website is partially compliant with the Web Content Accessibility Guidelines 2.1 AA standard, due to the non-compliances listed below</p>
<p>The full guidelines are available at</p>
<p> <a href="https://www.w3.org/TR/WCAG21/">Web Content Accessibility Guidelines version 2.1</a></p>
<h3>Non accessible content</h3>
<p>The content listed below is non-accessible for the following reasons.</p>
<p>The following items to not comply with the WCAG 2.1 AA success criteria</p>
<ul>
<li>Not all our non-text content has alt text.
<ul>
<li><a href="https://www.w3.org/TR/WCAG21/#text-alternatives">1.1.1 Text Alternatives</a></li>
</ul>
</li>
<li>Some colour contrasts do not meet recommended guidance
<ul>
<li><u>1.4.3 - Contrast (Minimum) </u></li>
</ul>
</li>
<li>The purpose of each link is not always clear from the link text
<ul>
<li><u></u><a href="https://www.w3.org/TR/WCAG21/#link-purpose-in-context">2.4.4 Link Purpose in Context</a></li>
</ul>
</li>
</ul>
<p>Unless specified wherever possible a complete solution or significant improvement will be in place by March 2021 where the issues are within our control.</p>
<h3>Disproportionate burden</h3>
<p>We are not currently claiming that any accessibility problems would be a disproportionate burden to fix. </p>
<h3>Content that is not within the Scope of the Accessibility Regulations</h3>
<p>We are not currently claiming that any material is out of scope.</p>
<h2>What we're doing to improve accessibility</h2>
<p>We will continue to work with our in house developers to address these issues and deliver a solution or suitable workaround and correct issues directly where they are under our control.</p>
<p>We will continue to monitor accessibility and will carry out further accessibility testing if significant changes are made to the user interface or if a service user raises an issue. To plan to resolve the issues that are within our control by December 2021. We plan to manual review the accessibility of the site and make improvements and update this statement before December 2021. We will ensure reasonable adjustments are in place to make sure no user is disadvantaged.</p>
<h3>Information Services and accessibility</h3>
<p>Information Services (IS) has further information on accessibility including assistive technology, creating accessible documents, and services IS provides for disabled users.</p>
<p><a href="https://www.ed.ac.uk/information-services/help-consultancy/accessibility">Assistive technology, creating accessible documents, and services IS provides for disabled users</a></p>
<h2>Preparation of this accessibility statement</h2>
<p><strong>This statement was prepared on 7<sup>th</sup> August 2020. It was last reviewed on 15<sup>h</sup> September 2020</strong>.</p>
<p>This website was last tested on 19<sup>th</sup> June 2020. The test was carried out by The University Library and University Collections Digital Library team using the automated LittleForest tool. The website is scheduled for manual testing by December 2021.</p>
<p>We did not use sample pages for testing - all pages were run through LittleForest.</p>
<p>Little Forrest claims it tests the following WCAG criteria either partially or wholly</p>
<table>
<tbody>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.1.1</p>
</td>
<td width="250">
<p>Non-text Content</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.2.1</p>
</td>
<td width="250">
<p>Audio-only and Video-only (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.2.2</p>
</td>
<td width="250">
<p>Captions (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.2.3</p>
</td>
<td width="250">
<p>Audio Description or Media Alternative (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.3.1</p>
</td>
<td width="250">
<p>Info and Relationships</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.3.2</p>
</td>
<td width="250">
<p>Meaningful Sequence</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.3.3</p>
</td>
<td width="250">
<p>Sensory Characteristics</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.4.1</p>
</td>
<td width="250">
<p>Use of Color</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>1.4.2</p>
</td>
<td width="250">
<p>Audio Control</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.1.1</p>
</td>
<td width="250">
<p>Keyboard</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.1.2</p>
</td>
<td width="250">
<p>No Keyboard Trap</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.2.1</p>
</td>
<td width="250">
<p>Timing Adjustable</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.2.2</p>
</td>
<td width="250">
<p>Pause, Stop, Hide</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.3.1</p>
</td>
<td width="250">
<p>Three Flashes or Below Threshold</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.4.1</p>
</td>
<td width="250">
<p>Bypass Blocks</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.4.2</p>
</td>
<td width="250">
<p>Page Titled</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.4.3</p>
</td>
<td width="250">
<p>Focus Order</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>2.4.4</p>
</td>
<td width="250">
<p>Link Purpose (In Context)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>3.1.1</p>
</td>
<td width="250">
<p>Language of Page</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>3.2.1</p>
</td>
<td width="250">
<p>On Focus</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>3.2.2</p>
</td>
<td width="250">
<p>On Input</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>3.3.1</p>
</td>
<td width="250">
<p>Error Identification</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>3.3.2</p>
</td>
<td width="250">
<p>Labels or Instructions</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>4.4.1</p>
</td>
<td width="250">
<p>Parsing</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.0</p>
</td>
<td width="49">
<p>A</p>
</td>
<td width="76">
<p>4.4.2</p>
</td>
<td width="250">
<p>Name, Role, Value</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.2.4</p>
</td>
<td width="250">
<p>Captions (Live)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.2.5</p>
</td>
<td width="250">
<p>Audio Description (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.4.3</p>
</td>
<td width="250">
<p>Contrast (Minimum)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.4.4</p>
</td>
<td width="250">
<p>Resize Text</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.4.5</p>
</td>
<td width="250">
<p>Images of Text</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>2.4.5</p>
</td>
<td width="250">
<p>Multiple Ways</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>2.4.6</p>
</td>
<td width="250">
<p>Headings and Labels</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>2.4.7</p>
</td>
<td width="250">
<p>Focus Visible</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>3.1.2</p>
</td>
<td width="250">
<p>Language of Parts</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>3.2.3</p>
</td>
<td width="250">
<p>Consistent Navigation</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>3.2.4</p>
</td>
<td width="250">
<p>Consistent Identification</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>3.3.3</p>
</td>
<td width="250">
<p>Error Suggestion</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>3.3.4</p>
</td>
<td width="250">
<p>Error Prevention (Legal, Financial, Data)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.2.6</p>
</td>
<td width="250">
<p>Sign Language (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.2.7</p>
</td>
<td width="250">
<p>Extended Audio Description (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.2.8</p>
</td>
<td width="250">
<p>Media Alternative (Prerecorded)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.2.9</p>
</td>
<td width="250">
<p>Audio-only (Live)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.4.6</p>
</td>
<td width="250">
<p>Contrast (Enhanced)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.4.7</p>
</td>
<td width="250">
<p>Low or No Background Audio</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.4.8</p>
</td>
<td width="250">
<p>Visual Presentation</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>1.4.9</p>
</td>
<td width="250">
<p>Images of Text (No Exception)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.1.3</p>
</td>
<td width="250">
<p>Keyboard (No Exception)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.2.3</p>
</td>
<td width="250">
<p>No Timing</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.2.4</p>
</td>
<td width="250">
<p>Interruptions</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.2.5</p>
</td>
<td width="250">
<p>Re-authenticating</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.3.2</p>
</td>
<td width="250">
<p>Three Flashes</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.4.8</p>
</td>
<td width="250">
<p>Location</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.4.9</p>
</td>
<td width="250">
<p>Link Purpose (Link Only)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>2.4.10</p>
</td>
<td width="250">
<p>Section Headings</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.1.3</p>
</td>
<td width="250">
<p>Unusual Words</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.1.4</p>
</td>
<td width="250">
<p>Abbreviations</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.1.5</p>
</td>
<td width="250">
<p>Reading</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.1.6</p>
</td>
<td width="250">
<p>Pronunciation</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.2.5</p>
</td>
<td width="250">
<p>Change on Request</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.3.5</p>
</td>
<td width="250">
<p>Help</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AAA</p>
</td>
<td width="76">
<p>3.3.6</p>
</td>
<td width="250">
<p>Error Prevention (All)</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.3.4</p>
</td>
<td width="250">
<p>Orientation</p>
</td>
</tr>
<tr>
<td width="73">
<p>WCAG 2.1</p>
</td>
<td width="49">
<p>AA</p>
</td>
<td width="76">
<p>1.3.5</p>
</td>
<td width="250">
<p>Identify Input Purpose</p>
</td>
</tr>
</tbody>
</table>
</body>
</html>