-
-
Notifications
You must be signed in to change notification settings - Fork 555
/
Copy pathchecklists.json
562 lines (562 loc) · 33 KB
/
checklists.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
{
"content": {
"preface": "Content is the most important part of your site.",
"tasks": [
{
"title": "Use plain language and avoid figures of speech, idioms, and complicated metaphors.",
"checkboxId": "use-plain-language",
"wcag": "3.1.5 Reading Level",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/reading-level.html",
"description": "Write content at <a href='https://datayze.com/readability-analyzer.php'>an 8th grade reading level</a>."
},
{
"title": "Make sure that <code>button</code>, <code>a</code>, and <code>label</code> element content is unique and descriptive. ",
"checkboxId": "make-sure-interactive-content-is-unique",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "Terms like “click here” and “read more” do not provide any context. Some people navigate using a list of all buttons or links on a page or view. When using this mode, the terms indicate what will happen if navigated to or activated."
},
{
"title": "Use left-aligned text for left-to-right (<abbr>LTR</abbr>) languages, and right-aligned text for right-to-left (<abbr>RTL</abbr>) languages.",
"checkboxId": "use-ltr-rtl",
"wcag": "1.4.8 Visual Presentation",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/visual-presentation.html",
"description": "Centered-aligned or justified text is difficult to read."
}
]
},
"global code": {
"preface": "Global code is code that affects your entire website or web app.",
"tasks": [
{
"title": "Validate your HTML.",
"checkboxId": "validate-html",
"wcag": "4.1.1 Parsing",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/parsing.html",
"description": "<a href='https://validator.w3.org/nu/'>Valid HTML</a> helps to provide a consistent, expected experience across all browsers and assistive technology."
},
{
"title": "Use a <code>lang</code> attribute on the <code>html</code> element.",
"checkboxId": "use-lang-attribute",
"wcag": "3.1.1 Language of Page",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/language-of-page.html",
"description": "This helps assistive technology such as screen readers to <a href='https://github.com/FreedomScientific/VFO-standards-support/issues/188'>pronounce content correctly</a>."
},
{
"title": "Provide a unique <code>title</code> for each page or view.",
"checkboxId": "provide-unique-page-title",
"wcag": "2.4.2 Page Titled",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/page-titled.html",
"description": "The <code>title</code> element, contained in the document's <code>head</code> element, is often the first piece of information announced by assistive technology. This helps tell people what page or view they are going to start navigating."
},
{
"title": "Ensure that viewport zoom is not disabled.",
"checkboxId": "dont-disable-zoom",
"wcag": "1.4.4 Resize text",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/resize-text.html",
"description": "Some people need to increase the size of text to a point where they can read it. Do not stop them from doing this, even for web apps with a native app-like experience. Even native apps should respect Operating System settings for resizing text."
},
{
"title": "Use landmark elements to indicate important content regions.",
"checkboxId": "use-landmark-elements",
"wcag": "4.1.2 Name, Role, Value",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/name-role-value.html",
"description": "<a href='https://www.w3.org/TR/wai-aria-practices/examples/landmarks/HTML5.html'>Landmark regions</a> help communicate the layout and important areas of a page or view, and can allow quick access to these regions. For example, use the <code>nav</code> element to wrap a site's navigation, and the <code>main</code> element to contain the primary content of a page."
},
{
"title": "Ensure a linear content flow.",
"checkboxId": "linear-content-flow",
"wcag": "2.4.3 Focus Order",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/focus-order.html",
"description": "Remove <code>tabindex</code> attribute values that aren't either <code>0</code> or <code>-1</code>. Elements that are inherently focusable, such as links or <code>button</code> elements, do not require a <code>tabindex</code>. Elements that are not inherently focusable should not have a <code>tabindex</code> applied to them outside of very specific use cases."
},
{
"title": "Avoid using the <code>autofocus</code> attribute.",
"checkboxId": "avoid-autofocus",
"wcag": "2.4.3 Focus Order",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/focus-order.html",
"description": " People who are blind or who have low vision may be disoriented when focus is moved without their permission. Additionally, <code>autofocus</code> can be problematic for people with motor control disabilities, as it may create extra work for them to navigate out from the autofocused area and to other locations on the page/view."
},
{
"title": "Allow extending session timeouts.",
"checkboxId": "extend-timeouts",
"wcag": "2.2.1 Timing Adjustable",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/timing-adjustable.html",
"description": "If you cannot remove session timeouts altogether, then let the person using your site easily turn off, adjust, or extend their session well before it ends."
},
{
"title": "Remove <code>title</code> attribute tooltips.",
"checkboxId": "remove-title-attribute",
"wcag": "4.1.2 Name, Role, Value",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/name-role-value.html",
"description": "<a href='https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title#Accessibility_concerns'>The <code>title</code> attribute has numerous issues</a>, and should not be used if the information provided is important for all people to access. An acceptable use for the <code>title</code> attribute would be labeling an <code>iframe</code> element to indicate what content it contains."
}
]
},
"keyboard": {
"preface": "It is important that your interface and content can be operated, and navigated by use of a keyboard. Some people cannot use a mouse, or may be using other assistive technologies that may not allow for hovering or precise clicking.",
"tasks": [
{
"title": "Make sure there is a visible focus style for interactive elements that are navigated to via keyboard input.",
"checkboxId": "visible-focus-style",
"wcag": "2.4.7 Focus Visible",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/focus-visible.html",
"description": "Can a person navigating with a keyboard, <a href='https://axesslab.com/switches/'>switch</a>, voice control, or screen reader see where they currently are on the page?"
},
{
"title": "Check to see that keyboard focus order matches the visual layout.",
"checkboxId": "focus-matches-layout",
"wcag": "1.3.2 Meaningful Sequence",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/meaningful-sequence.html",
"description": "Can a person navigating with a keyboard or screen reader move around the page in a predictable way?"
},
{
"title": "Remove invisible focusable elements.",
"checkboxId": "remove-invisible-focusable-elements",
"wcag": "2.4.3 Focus Order",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/focus-order.html",
"description": "Remove the ability to focus on elements that are not presently meant to be discoverable. This includes things like inactive drop down menus, off screen navigations, or modals."
}
]
},
"images": {
"preface": "Images are a very common part of most websites. Help make sure they can be enjoyed by all.",
"tasks": [
{
"title": "Make sure that all <code>img</code> elements have an <code>alt</code> attribute.",
"checkboxId": "use-alt-attributes",
"wcag": "1.1.1 Non-text Content",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-content.html",
"description": "<code>alt</code> attributes (alt text) give a description of an image for people who may not be able to view them. When an <code>alt</code> attribute isn't present on an image, a screen reader may announce the image's file name and path instead. This fails to communicate the image’s content."
},
{
"title": "Make sure that decorative images use null <code>alt</code> (empty) attribute values.",
"checkboxId": "null-decorative-images",
"wcag": "1.1.1 Non-text Content",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-content.html",
"description": "Null <code>alt</code> attributes are also sometimes known as empty <code>alt</code> attributes. They are made by including no information between the opening and closing quotes of an <code>alt</code> attribute. Decorative images do not communicate information that is required to understand the website's overall meaning. Historically they were used for flourishes and <a href='https://en.wikipedia.org/wiki/Spacer_GIF'>spacer gif</a> images, but tend to be less relevant for modern websites and web apps."
},
{
"title": "Provide a text alternative for complex images such as charts, graphs, and maps.",
"checkboxId": "text-alternatives",
"wcag": "1.1.1 Non-text Content",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-content.html",
"description": "Is there a plain text which lists points on the map or sections of a flowchart? Describe all visible information. This includes graph axes, data points and labels, and the overall point the graphic is communicating."
},
{
"title": "For images containing text, make sure the alt description includes the image's text.",
"checkboxId": "images-containing-text",
"wcag": "1.1.1 Non-text Content",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-content.html",
"description": "For example, the FedEx logo should have an alt value of “FedEx.”"
}
]
},
"svg": {
"tasks": [
{
"title": "Make sure that <code>svg</code> elements include the code <code>focusable=\"false\"</code> when they are the child element of a focusable element.",
"checkboxId": "svg-focusable-false-child-element",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "This prevents Internet Explorer from allowing focus to navigate through the child elements of a SVG that is meant to be decorative."
},
{
"title": "Add <code>aria-hidden=\"true\"</code> to SVG that is decorative.",
"checkboxId": "decorative-svg",
"wcag": "4.1.2 Name, Role, Value",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/name-role-value.html",
"description": "This is equivalent to an empty/null <code>alt</code> value on a non-svg image."
},
{
"title": "Make sure that SVG utilizing the <code>use</code> element has whitespace between the <code>svg</code> and <code>use</code> elements.",
"checkboxId": "svg-use-whitespace",
"wcag": "2.1.2 No Keyboard Trap",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/no-keyboard-trap.html",
"description": "This solves a bug in Safari which sometimes creates hidden, unanticipated tab-stops when navigating."
},
{
"title": "It's recommended that <code>img</code> elements with an <code>svg</code> source include the <code>role=\"img\"</code> attribute.",
"checkboxId": "svg-image-src",
"wcag": "4.1.2 Name, Role, Value",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/name-role-value.html",
"description": "VoiceOver on macOS and iOS may not correctly convey the element as an image if <code>role=\"img\"</code> is not present."
}
]
},
"headings": {
"preface": "Heading elements (h1, h2, h3, etc.) help break up the content of the page into related “chunks” of information. They are incredibly important for helping people who use assistive technology to understand the meaning of a page or view.",
"tasks": [
{
"title": "Use heading elements to introduce content.",
"checkboxId": "use-heading-elements",
"wcag": "2.4.6 Headings or Labels",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/headings-and-labels.html",
"description": "Heading elements construct a document outline, and should not be used for purely visual design."
},
{
"title": "Use only one <code>h1</code> element per page or view.",
"checkboxId": "use-only-one-h1",
"wcag": "2.4.6 Headings or Labels",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/headings-and-labels.html",
"description": "The <code>h1</code> element should be used to communicate the high-level purpose of the page or view. Do not use the <code>h1</code> element for a heading that does not change between pages or views (for example, the site's name)."
},
{
"title": "Heading elements should be written in a logical sequence.",
"checkboxId": "logical-heading-sequence",
"wcag": "2.4.6 Headings or Labels",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/headings-and-labels.html",
"description": "<a href='https://webdesign.tutsplus.com/articles/the-importance-of-heading-levels-for-assistive-technology--cms-31753'>The order of heading elements</a> should descend, based on the “depth” of the content. For example, a <code>h4</code> element should not appear on a page before the first <code>h3</code> element declaration. A tool such as <a href='/resources/#headingsmap'>headingsMap</a> can help you evaluate this."
},
{
"title": "Don't skip heading levels.",
"checkboxId": "dont-skip-heading-levels",
"wcag": "2.4.6 Headings or Labels",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/headings-and-labels.html",
"description": "For example, don't jump from a <code>h2</code> to a <code>h4</code>, skipping a <code>h3</code> element. If heading levels are being skipped for a specific visual treatment, use CSS classes instead."
}
]
},
"lists": {
"preface": "Lists elements let people know a collection of items are related and if they are sequential, and how many items are present in the list grouping.",
"tasks": [
{
"title": "Use list elements (<code>ol</code>, <code>ul</code>, and <code>dl</code> elements) for list content.",
"checkboxId": "use-list-elements",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "This may include sections of related content, items visually displayed in a grid-like layout, or sibling a elements."
}
]
},
"controls": {
"preface": "Controls are interactive elements such as links and buttons that let a person navigate to a destination or perform an action.",
"tasks": [
{
"title": "Use the <code>a</code> element for links.",
"checkboxId": "use-links",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "Links should always have a <code>href</code> attribute, even when used in Single Page Applications (<abbr>SPA</abbr>s). Without a <code>href</code> attribute, the link will not be properly exposed to assistive technology. An example of this would be a link that uses an <code>onclick</code> event, in place of a <code>href</code> attribute. "
},
{
"title": "Ensure that links are recognizable as links.",
"checkboxId": "recognizable-links",
"wcag": "1.4.1 Use of Color",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/use-of-color.html",
"description": "Color alone is not sufficient to indicate the presence of a link. Underlines are a popular and commonly-understood way to communicate the presence of link content."
},
{
"title": "Ensure that controls have <code>:focus</code> states.",
"checkboxId": "form-focus-states",
"wcag": "2.4.7 Focus Visible",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/focus-visible.html",
"description": "Visible focus styles help people determine which interactive element has keyboard focus. This lets them know that they can perform actions like activating a button or navigating to a link's destination."
},
{
"title": "Use the <code>button</code> element for buttons.",
"checkboxId": "use-button-element",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "Buttons are used to submit data or perform an on-screen action which does not shift keyboard focus. You can add <code>type=\"button\"</code> to a <code>button</code> element to prevent the browser from attempting to submit form information when activated."
},
{
"title": "Provide a skip link and make sure that it is visible when focused.",
"checkboxId": "provide-skip-link",
"wcag": "2.4.1 Bypass Blocks",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/bypass-blocks.html",
"description": "A <a href='/posts/skip-nav-links/'>skip link</a> can be used to provide quick access to the main content of a page or view. This allows a person to easily bypass globally repeated content such as a website's primary navigation, or persistent search widget."
},
{
"title": "Identify links that open in a new tab or window.",
"checkboxId": "identify-new-window",
"wcag": "G201: Giving users advanced warning when opening a new window",
"url": "https://www.w3.org/WAI/WCAG22/Techniques/general/G201",
"description": "Ideally, avoid links that open in a new tab or window. If a link does, ensure the link's behavior will be communicated in a way that is apparent to all users. Doing this will help people understand what will happen before activating the link. While this technique is technically not required for compliance, it is an often-cited area of frustration for many different kinds of assistive technology users."
}
]
},
"tables": {
"preface": "Tables are a structured set of data that help people understand the relationships between different types of information.",
"tasks": [
{
"title": "Use the <code>table</code> element to describe tabular data.",
"checkboxId": "use-table-elements",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "Do you need to display data in rows and columns? Use the <code>table</code> element."
},
{
"title": "Use the <code>th</code> element for table headers (with appropriate <code>scope</code> attributes).",
"checkboxId": "use-th-element",
"wcag": "4.1.1 Parsing",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/parsing.html",
"description": "Depending on <a href='https://www.w3.org/WAI/tutorials/tables/'>how complex your table is</a>, you may also consider using <code>scope=\"col\"</code> for column headers, and <code>scope=\"row\"</code> for row headers. Many different kinds of assistive technology still use the <code>scope</code> attribute to help them understand and describe the structure of a table."
},
{
"title": "Use the <code>caption</code> element to provide a title for the table.",
"checkboxId": "use-caption-element",
"wcag": "2.4.6 Headings or Labels",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/headings-and-labels.html",
"description": "The table's <code>caption</code> should describe what kind of information the table contains."
}
]
},
"forms": {
"preface": "Forms allow people to enter information into a site for processing and manipulation. This includes things like sending messages and placing orders.",
"tasks": [
{
"title": "All inputs in a form are associated with a corresponding <code>label</code> element.",
"checkboxId": "associate-inputs-with-labels",
"wcag": "3.2.2 On Input",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/on-input.html",
"description": "Use a <code>for</code>/<code>id</code> pairing to guarantee the highest level of browser/assistive technology support. "
},
{
"title": "Use <code>fieldset</code> and <code>legend</code> elements where appropriate.",
"checkboxId": "use-fieldset-and-legend",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "Does your form contain multiple sections of related inputs? Use <code>fieldset</code> to group them, and <code>legend</code> to provide a label for what this section is for. "
},
{
"title": "Inputs use <code>autocomplete</code> where appropriate.",
"checkboxId": "use-autocomplete",
"wcag": "1.3.5 Identify Input Purpose",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/identify-input-purpose.html",
"description": "<a href='https://www.w3.org/TR/html52/sec-forms.html#sec-autofill'>Providing a mechanism</a> to help people more quickly, easily, and accurately fill in form fields that ask for common information (for example, name, address, phone number)."
},
{
"title": "Make sure that form input errors are displayed in list above the form after submission.",
"checkboxId": "display-form-errors",
"wcag": "3.3.1 Error Identification",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/error-identification.html",
"description": "This provides a way for assistive technology users to quickly have a high-level understanding of what issues are present in the form. This is especially important for larger forms with many inputs. Make sure that each reported error also has a link to the corresponding field with invalid input."
},
{
"title": "Associate input error messaging with the input it corresponds to.",
"checkboxId": "associate-error-messages",
"wcag": "3.3.1 Error Identification",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/error-identification.html",
"description": "Techniques such as <a href='https://developer.paciellogroup.com/blog/2018/09/describing-aria-describedby/'>using <code>aria-describedby</code></a> allow people who use assistive technology to more easily understand the difference between the input and the error message associated with it."
},
{
"title": "Make sure that error, warning, and success states are not visually communicated by just color.",
"checkboxId": "dont-use-just-color-for-states",
"wcag": "1.4.1 Use of Color",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/use-of-color.html",
"description": "People who are color blind, who have other low vision conditions, or different cultural understandings for color may not see the state change, or understand what kind of feedback the state represents if color is the only indicator. "
}
]
},
"media": {
"preface": "Media includes content such as pre-recorded and live audio and video.",
"tasks": [
{
"title": "Make sure that media does not autoplay.",
"checkboxId": "avoid-autoplay",
"wcag": "1.4.2 Audio Control",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/audio-control.html",
"description": "Unexpected video and audio can be distracting and disruptive, especially for certain kinds of cognitive disability such as ADHD. Certain kinds of autoplaying video and animation can be a trigger for vestibular and seizure disorders."
},
{
"title": "Ensure that media controls use appropriate markup.",
"checkboxId": "media-controls-use-appropriate-markup",
"wcag": "1.3.1 Info and Relationships",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/info-and-relationships.html",
"description": "Examples include making sure an audio mute button has <a href='https://www.w3.org/WAI/PF/aria/states_and_properties#aria-pressed'>a pressed toggle state</a> when active, or that a volume slider uses <code><input type=\"range\"></code>."
},
{
"title": "Check to see that all media can be paused.",
"checkboxId": "pause-media",
"wcag": "2.1.1 Keyboard",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/keyboard.html",
"description": "Provide a global pause function on any media element. If the device has a keyboard, ensure that pressing the <kbd>Space</kbd> key can pause playback. Make sure you also don't interfere with the <kbd>Space</kbd> key's ability to scroll the page/view when not focusing on a form control."
}
]
},
"video": {
"preface": "Video-specific checks.",
"tasks": [
{
"title": "Confirm the presence of captions.",
"checkboxId": "use-captions",
"wcag": "1.2.2 Captions",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/captions-prerecorded.html",
"description": "Captions allow a person who cannot hear the audio content of a video to still understand its content."
},
{
"title": " Remove seizure triggers.",
"checkboxId": "remove-seizure-triggers",
"wcag": "2.3.1 Three Flashes or Below Threshold",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/three-flashes-or-below-threshold.html",
"description": " Certain kinds of strobing or flashing animations will trigger seizures."
}
]
},
"audio": {
"preface": "Audio-specific checks.",
"tasks": [
{
"title": "Confirm that transcripts are available.",
"checkboxId": "confirm-transcripts",
"wcag": "1.1.1 Non-text Content",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-content.html",
"description": " Transcripts allow people who cannot hear to still understand the audio content. It also allows people to digest audio content at a pace that is comfortable to them."
}
]
},
"appearance": {
"preface": "How your website app content looks in any given situation.",
"tasks": [
{
"title": "Check your content in specialized browsing modes.",
"checkboxId": "check-specialized-modes",
"wcag": "1.4.1 Use of Color",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/use-of-color.html",
"description": "Activate <a href='/posts/operating-system-and-browser-accessibility-display-modes/'>modes such as Windows High Contrast or Inverted Colors</a>. Is your content still legible? Are your icons, borders, links, form fields, and other content still present? Can you distinguish foreground content from the background?"
},
{
"title": "Increase text size to 200%.",
"checkboxId": "increase-text-size",
"wcag": "1.4.4 Resize text",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/resize-text.html",
"description": "Is the content still readable? Does increasing the text size cause content to overlap?"
},
{
"title": "Double-check that good proximity between content is maintained.",
"checkboxId": "good-proximity-of-content",
"wcag": "1.3.3 Sensory Characteristics",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/sensory-characteristics.html",
"description": "Use <a href='https://scottvinkle.me/blogs/work/proximity-and-zoom'>the straw test</a> to ensure people who depend on screen zoom software can still easily discover all content. "
},
{
"title": "Make sure color isn't the only way information is conveyed.",
"checkboxId": "no-color-alone",
"wcag": "1.4.1 Use of Color",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/use-of-color.html",
"description": "Can you still see where links are among body content if everything is grayscale?"
},
{
"title": "Make sure instructions are not visual or audio-only.",
"checkboxId": "sensory-characteristics",
"wcag": "1.3.3 Sensory Characteristics",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/sensory-characteristics.html",
"description": "Use a combination of characteristics to write cues, particularly the actual names of sections and elements, rather than just descriptions like location (“on the right”) or audio (“after the tone”)."
},
{
"title": " Use a simple, straightforward, and consistent layout.",
"checkboxId": "consistent-layout",
"wcag": "1.4.10 Reflow",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/reflow.html",
"description": "A complicated layout can be confusing to understand and use."
}
]
},
"animation": {
"preface": "Content that moves, either on its own, or when triggered by a person activating a control.",
"tasks": [
{
"title": "Ensure animations are subtle and do not flash too much.",
"checkboxId": "avoid-flashes",
"wcag": "2.3.1 Three Flashes or Below Threshold",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/three-flashes-or-below-threshold.html",
"description": "Certain kinds of strobing or flashing animations will trigger seizures. Others may be distracting and disruptive, especially for certain kinds of cognitive disability such as ADHD."
},
{
"title": "Provide a mechanism to pause background video.",
"checkboxId": "pause-background-video",
"wcag": "2.2.2 Pause, Stop, Hide",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/pause-stop-hide.html",
"description": "Background video can be distracting, especially if content is placed over it."
},
{
"title": "Make sure all animation obeys the <code>prefers-reduced-motion</code> media query.",
"checkboxId": "prefers-reduced-motion",
"wcag": "2.3.3 Animation from Interactions",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/animation-from-interactions.html",
"description": "Remove animations when the “reduce motion” setting is activated. If an animation is necessary to communicate meaning for a concept, slow its duration down."
}
]
},
"color contrast": {
"preface": "<a href=\"{{ '/posts/what-is-color-contrast/' | url }}\">Color contrast</a> is how legible colors are when placed next to, and on top of each other.",
"tasks": [
{
"title": "Check the contrast for all normal-sized text.",
"checkboxId": "normal-text-contrast",
"wcag": "1.4.3 Contrast",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/contrast-minimum.html",
"description": "Level AA compliance requires a contrast ratio of 4.5:1."
},
{
"title": "Check the contrast for all large-sized text.",
"checkboxId": "large-text-contrast",
"wcag": "1.4.3 Contrast",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/contrast-minimum.html",
"description": "Level AA compliance requires a contrast ratio of 3:1."
},
{
"title": "Check the contrast for all icons.",
"checkboxId": "icon-contrast",
"wcag": "1.4.11 Non-text Contrast",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-contrast.html",
"description": "Level AA compliance requires a contrast ratio of 3.0:1."
},
{
"title": "Check the contrast of borders for input elements (text input, radio buttons, checkboxes, etc.).",
"checkboxId": "input-contrast",
"wcag": "1.4.11 Non-text Contrast",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/non-text-contrast.html",
"description": "Level AA compliance requires a contrast ratio of 3.0:1."
},
{
"title": "Check text that overlaps images or video.",
"checkboxId": "overlap-contrast",
"wcag": "1.4.3 Contrast",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/contrast-minimum.html",
"description": "Is text still legible?"
},
{
"title": "Check custom <code>::selection</code> colors.",
"checkboxId": "selection-contrast",
"wcag": "1.4.3 Contrast",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/contrast-minimum.html",
"description": " Is the color contrast you set in your <a href='https://developer.mozilla.org/en-US/docs/Web/CSS/::selection'><code>::selection</code> CSS declaration</a> sufficient? Otherwise someone may not be able read it if they highlight it. "
}
]
},
"mobile and touch": {
"preface": "Things to check mobile experiences for.",
"tasks": [
{
"title": "Check that the site can be rotated to any orientation.",
"checkboxId": "device-rotation",
"wcag": "1.3.4 Orientation",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/orientation.html",
"description": "Does the site only allow portrait orientation?"
},
{
"title": "Remove horizontal scrolling.",
"checkboxId": "remove-horizontal-scrolling",
"wcag": "1.4.10 Reflow",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/reflow.html",
"description": "Requiring someone to scroll horizontally can be difficult for some, irritating for all."
},
{
"title": "Ensure that button and link icons can be activated with ease.",
"checkboxId": "easy-activation",
"wcag": "2.5.5 Target Size",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/target-size-enhanced.html",
"description": "It's good to make sure things like hamburger menus, social icons, gallery viewers, and other touch controls are usable by a wide range of hand and stylus sizes."
},
{
"title": "Ensure sufficient space between interactive items in order to provide a scroll area.",
"checkboxId": "space-between-clickable-items",
"wcag": "2.4.1 Bypass Blocks",
"url": "https://www.w3.org/WAI/WCAG22/Understanding/bypass-blocks.html",
"description": "Some people who experience motor control issues such as <a href='https://axesslab.com/hand-tremors/'>hand tremors</a> may have a very difficult time scrolling past interactive items which feature zero spacing."
}
]
}
}