@qualweb/earl-reporter 0.4.0 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +14 -14
- package/README.md +68 -68
- package/dist/constants.d.ts +941 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +945 -0
- package/dist/constants.js.map +1 -0
- package/dist/index.d.ts +6 -10
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +155 -141
- package/dist/index.js.map +1 -1
- package/package.json +63 -63
- package/CHANGELOG.md +0 -111
|
@@ -0,0 +1,945 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WCAG2 = exports.SC = void 0;
|
|
4
|
+
const SC = {
|
|
5
|
+
'1.1.1': {
|
|
6
|
+
num: '1.1.1',
|
|
7
|
+
url: 'https://www.w3.org/TR/WCAG21/#non-text-content',
|
|
8
|
+
scId: 'WCAG2:non-text-content',
|
|
9
|
+
scAltId: ['text-equiv-all'],
|
|
10
|
+
test: 'WCAG2:text-equiv-all',
|
|
11
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#non-text-content',
|
|
12
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/non-text-content.html',
|
|
13
|
+
handle: 'Non-text Content',
|
|
14
|
+
level: 'A',
|
|
15
|
+
wcagType: '2.0'
|
|
16
|
+
},
|
|
17
|
+
'1.2.1': {
|
|
18
|
+
num: '1.2.1',
|
|
19
|
+
url: 'https://www.w3.org/TR/WCAG21/#audio-only-and-video-only-prerecorded',
|
|
20
|
+
scId: 'WCAG2:audio-only-and-video-only-prerecorded',
|
|
21
|
+
scAltId: ['media-equiv-av-only-alt'],
|
|
22
|
+
test: 'WCAG2:media-equiv-av-only-alt',
|
|
23
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#audio-only-and-video-only-prerecorded',
|
|
24
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/audio-only-and-video-only-prerecorded.html',
|
|
25
|
+
handle: 'Audio-only and Video-only (Prerecorded)',
|
|
26
|
+
level: 'A',
|
|
27
|
+
wcagType: '2.0'
|
|
28
|
+
},
|
|
29
|
+
'1.2.2': {
|
|
30
|
+
num: '1.2.2',
|
|
31
|
+
url: 'https://www.w3.org/TR/WCAG21/#captions-prerecorded',
|
|
32
|
+
scId: 'WCAG2:captions-prerecorded',
|
|
33
|
+
scAltId: ['media-equiv-captions'],
|
|
34
|
+
test: 'WCAG2:media-equiv-captions',
|
|
35
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#captions-prerecorded',
|
|
36
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/captions-prerecorded.html',
|
|
37
|
+
handle: 'Captions (Prerecorded)',
|
|
38
|
+
level: 'A',
|
|
39
|
+
wcagType: '2.0'
|
|
40
|
+
},
|
|
41
|
+
'1.2.3': {
|
|
42
|
+
num: '1.2.3',
|
|
43
|
+
url: 'https://www.w3.org/TR/WCAG21/#audio-description-or-media-alternative-prerecorded',
|
|
44
|
+
scId: 'WCAG2:audio-description-or-media-alternative-prerecorded',
|
|
45
|
+
scAltId: ['media-equiv-audio-desc'],
|
|
46
|
+
test: 'WCAG2:media-equiv-audio-desc',
|
|
47
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#audio-description-or-media-alternative-prerecorded',
|
|
48
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/audio-description-or-media-alternative-prerecorded.html',
|
|
49
|
+
handle: 'Audio Description or Media Alternative (Prerecorded)',
|
|
50
|
+
level: 'A',
|
|
51
|
+
wcagType: '2.0'
|
|
52
|
+
},
|
|
53
|
+
'1.2.4': {
|
|
54
|
+
num: '1.2.4',
|
|
55
|
+
url: 'https://www.w3.org/TR/WCAG21/#captions-live',
|
|
56
|
+
scId: 'WCAG2:captions-live',
|
|
57
|
+
scAltId: ['media-equiv-real-time-captions'],
|
|
58
|
+
test: 'WCAG2:media-equiv-real-time-captions',
|
|
59
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#captions-live',
|
|
60
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/captions-live.html',
|
|
61
|
+
handle: 'Captions (Live)',
|
|
62
|
+
level: 'AA',
|
|
63
|
+
wcagType: '2.0'
|
|
64
|
+
},
|
|
65
|
+
'1.2.5': {
|
|
66
|
+
num: '1.2.5',
|
|
67
|
+
url: 'https://www.w3.org/TR/WCAG21/#audio-description-prerecorded',
|
|
68
|
+
scId: 'WCAG2:audio-description-prerecorded',
|
|
69
|
+
scAltId: ['media-equiv-audio-desc-only'],
|
|
70
|
+
test: 'WCAG2:media-equiv-audio-desc-only',
|
|
71
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#audio-description-prerecorded',
|
|
72
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/audio-description-prerecorded.html',
|
|
73
|
+
handle: 'Audio Description (Prerecorded)',
|
|
74
|
+
level: 'AA',
|
|
75
|
+
wcagType: '2.0'
|
|
76
|
+
},
|
|
77
|
+
'1.2.6': {
|
|
78
|
+
num: '1.2.6',
|
|
79
|
+
url: 'https://www.w3.org/TR/WCAG21/#sign-language-prerecorded',
|
|
80
|
+
scId: 'WCAG2:sign-language-prerecorded',
|
|
81
|
+
scAltId: ['media-equiv-sign'],
|
|
82
|
+
test: 'WCAG2:media-equiv-sign',
|
|
83
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#sign-language-prerecorded',
|
|
84
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/sign-language-prerecorded.html',
|
|
85
|
+
handle: 'Sign Language (Prerecorded)',
|
|
86
|
+
level: 'AAA',
|
|
87
|
+
wcagType: '2.0'
|
|
88
|
+
},
|
|
89
|
+
'1.2.7': {
|
|
90
|
+
num: '1.2.7',
|
|
91
|
+
url: 'https://www.w3.org/TR/WCAG21/#extended-audio-description-prerecorded',
|
|
92
|
+
scId: 'WCAG2:extended-audio-description-prerecorded',
|
|
93
|
+
scAltId: ['media-equiv-extended-ad'],
|
|
94
|
+
test: 'WCAG2:media-equiv-extended-ad',
|
|
95
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#extended-audio-description-prerecorded',
|
|
96
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/extended-audio-description-prerecorded.html',
|
|
97
|
+
handle: 'Extended Audio Description (Prerecorded)',
|
|
98
|
+
level: 'AAA',
|
|
99
|
+
wcagType: '2.0'
|
|
100
|
+
},
|
|
101
|
+
'1.2.8': {
|
|
102
|
+
num: '1.2.8',
|
|
103
|
+
url: 'https://www.w3.org/TR/WCAG21/#media-alternative-prerecorded',
|
|
104
|
+
scId: 'WCAG2:media-alternative-prerecorded',
|
|
105
|
+
scAltId: ['media-equiv-text-doc'],
|
|
106
|
+
test: 'WCAG2:media-equiv-text-doc',
|
|
107
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#media-alternative-prerecorded',
|
|
108
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/media-alternative-prerecorded.html',
|
|
109
|
+
handle: 'Media Alternative (Prerecorded)',
|
|
110
|
+
level: 'AAA',
|
|
111
|
+
wcagType: '2.0'
|
|
112
|
+
},
|
|
113
|
+
'1.2.9': {
|
|
114
|
+
num: '1.2.9',
|
|
115
|
+
url: 'https://www.w3.org/TR/WCAG21/#audio-only-live',
|
|
116
|
+
scId: 'WCAG2:audio-only-live',
|
|
117
|
+
scAltId: ['media-equiv-live-audio-only'],
|
|
118
|
+
test: 'WCAG2:media-equiv-live-audio-only',
|
|
119
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#audio-only-live',
|
|
120
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/audio-only-live.html',
|
|
121
|
+
handle: 'Audio-only (Live)',
|
|
122
|
+
level: 'AAA',
|
|
123
|
+
wcagType: '2.0'
|
|
124
|
+
},
|
|
125
|
+
'1.3.1': {
|
|
126
|
+
num: '1.3.1',
|
|
127
|
+
url: 'https://www.w3.org/TR/WCAG21/#info-and-relationships',
|
|
128
|
+
scId: 'WCAG2:info-and-relationships',
|
|
129
|
+
scAltId: ['content-structure-separation-programmatic'],
|
|
130
|
+
test: 'WCAG2:content-structure-separation-programmatic',
|
|
131
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#info-and-relationships',
|
|
132
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/info-and-relationships.html',
|
|
133
|
+
handle: 'Info and Relationships',
|
|
134
|
+
level: 'A',
|
|
135
|
+
wcagType: '2.0'
|
|
136
|
+
},
|
|
137
|
+
'1.3.2': {
|
|
138
|
+
num: '1.3.2',
|
|
139
|
+
url: 'https://www.w3.org/TR/WCAG21/#meaningful-sequence',
|
|
140
|
+
scId: 'WCAG2:meaningful-sequence',
|
|
141
|
+
scAltId: ['content-structure-separation-sequence'],
|
|
142
|
+
test: 'WCAG2:content-structure-separation-sequence',
|
|
143
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#meaningful-sequence',
|
|
144
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/meaningful-sequence.html',
|
|
145
|
+
handle: 'Meaningful Sequence',
|
|
146
|
+
level: 'A',
|
|
147
|
+
wcagType: '2.0'
|
|
148
|
+
},
|
|
149
|
+
'1.3.3': {
|
|
150
|
+
num: '1.3.3',
|
|
151
|
+
url: 'https://www.w3.org/TR/WCAG21/#sensory-characteristics',
|
|
152
|
+
scId: 'WCAG2:sensory-characteristics',
|
|
153
|
+
scAltId: ['content-structure-separation-understanding'],
|
|
154
|
+
test: 'WCAG2:content-structure-separation-understanding',
|
|
155
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#sensory-characteristics',
|
|
156
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/sensory-characteristics.html',
|
|
157
|
+
handle: 'Sensory Characteristics',
|
|
158
|
+
level: 'A',
|
|
159
|
+
wcagType: '2.0'
|
|
160
|
+
},
|
|
161
|
+
'1.3.4': {
|
|
162
|
+
num: '1.3.4',
|
|
163
|
+
url: 'https://www.w3.org/TR/WCAG21/#orientation',
|
|
164
|
+
scId: 'WCAG2:orientation',
|
|
165
|
+
scAltId: [],
|
|
166
|
+
test: 'WCAG2:WCAG2:orientation',
|
|
167
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#orientation',
|
|
168
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/orientation.html',
|
|
169
|
+
handle: 'Orientation',
|
|
170
|
+
level: 'AA',
|
|
171
|
+
wcagType: '2.1'
|
|
172
|
+
},
|
|
173
|
+
'1.3.5': {
|
|
174
|
+
num: '1.3.5',
|
|
175
|
+
url: 'https://www.w3.org/TR/WCAG21/#identify-input-purpose',
|
|
176
|
+
scId: 'WCAG2:identify-input-purpose',
|
|
177
|
+
scAltId: [],
|
|
178
|
+
test: 'WCAG2:WCAG2:identify-input-purpose',
|
|
179
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#identify-input-purpose',
|
|
180
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/identify-input-purpose.html',
|
|
181
|
+
handle: 'Identify Input Purpose',
|
|
182
|
+
level: 'AA',
|
|
183
|
+
wcagType: '2.1'
|
|
184
|
+
},
|
|
185
|
+
'1.3.6': {
|
|
186
|
+
num: '1.3.6',
|
|
187
|
+
url: 'https://www.w3.org/TR/WCAG21/#identify-purpose',
|
|
188
|
+
scId: 'WCAG2:identify-purpose',
|
|
189
|
+
scAltId: [],
|
|
190
|
+
test: 'WCAG2:WCAG2:identify-purpose',
|
|
191
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#identify-purpose',
|
|
192
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/identify-purpose.html',
|
|
193
|
+
handle: 'Identify Purpose',
|
|
194
|
+
level: 'AAA',
|
|
195
|
+
wcagType: '2.1'
|
|
196
|
+
},
|
|
197
|
+
'1.4.1': {
|
|
198
|
+
num: '1.4.1',
|
|
199
|
+
url: 'https://www.w3.org/TR/WCAG21/#use-of-color',
|
|
200
|
+
scId: 'WCAG2:use-of-color',
|
|
201
|
+
scAltId: ['visual-audio-contrast-without-color'],
|
|
202
|
+
test: 'WCAG2:visual-audio-contrast-without-color',
|
|
203
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#use-of-color',
|
|
204
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/use-of-color.html',
|
|
205
|
+
handle: 'Use of Color',
|
|
206
|
+
level: 'A',
|
|
207
|
+
wcagType: '2.0'
|
|
208
|
+
},
|
|
209
|
+
'1.4.2': {
|
|
210
|
+
num: '1.4.2',
|
|
211
|
+
url: 'https://www.w3.org/TR/WCAG21/#audio-control',
|
|
212
|
+
scId: 'WCAG2:audio-control',
|
|
213
|
+
scAltId: ['visual-audio-contrast-dis-audio'],
|
|
214
|
+
test: 'WCAG2:visual-audio-contrast-dis-audio',
|
|
215
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#audio-control',
|
|
216
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/audio-control.html',
|
|
217
|
+
handle: 'Audio Control',
|
|
218
|
+
level: 'A',
|
|
219
|
+
wcagType: '2.0'
|
|
220
|
+
},
|
|
221
|
+
'1.4.3': {
|
|
222
|
+
num: '1.4.3',
|
|
223
|
+
url: 'https://www.w3.org/TR/WCAG21/#contrast-minimum',
|
|
224
|
+
scId: 'WCAG2:contrast-minimum',
|
|
225
|
+
scAltId: ['visual-audio-contrast-contrast'],
|
|
226
|
+
test: 'WCAG2:visual-audio-contrast-contrast',
|
|
227
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#contrast-minimum',
|
|
228
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/contrast-minimum.html',
|
|
229
|
+
handle: 'Contrast (Minimum)',
|
|
230
|
+
level: 'AA',
|
|
231
|
+
wcagType: '2.0'
|
|
232
|
+
},
|
|
233
|
+
'1.4.4': {
|
|
234
|
+
num: '1.4.4',
|
|
235
|
+
url: 'https://www.w3.org/TR/WCAG21/#resize-text',
|
|
236
|
+
scId: 'WCAG2:resize-text',
|
|
237
|
+
scAltId: ['visual-audio-contrast-scale'],
|
|
238
|
+
test: 'WCAG2:visual-audio-contrast-scale',
|
|
239
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#resize-text',
|
|
240
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/resize-text.html',
|
|
241
|
+
handle: 'Resize text',
|
|
242
|
+
level: 'AA',
|
|
243
|
+
wcagType: '2.0'
|
|
244
|
+
},
|
|
245
|
+
'1.4.5': {
|
|
246
|
+
num: '1.4.5',
|
|
247
|
+
url: 'https://www.w3.org/TR/WCAG21/#images-of-text',
|
|
248
|
+
scId: 'WCAG2:images-of-text',
|
|
249
|
+
scAltId: ['visual-audio-contrast-text-presentation'],
|
|
250
|
+
test: 'WCAG2:visual-audio-contrast-text-presentation',
|
|
251
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#images-of-text',
|
|
252
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/images-of-text.html',
|
|
253
|
+
handle: 'Images of Text',
|
|
254
|
+
level: 'AA',
|
|
255
|
+
wcagType: '2.0'
|
|
256
|
+
},
|
|
257
|
+
'1.4.6': {
|
|
258
|
+
num: '1.4.6',
|
|
259
|
+
url: 'https://www.w3.org/TR/WCAG21/#contrast-enhanced',
|
|
260
|
+
scId: 'WCAG2:contrast-enhanced',
|
|
261
|
+
scAltId: ['visual-audio-contrast7'],
|
|
262
|
+
test: 'WCAG2:visual-audio-contrast7',
|
|
263
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#contrast-enhanced',
|
|
264
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/contrast-enhanced.html',
|
|
265
|
+
handle: 'Contrast (Enhanced)',
|
|
266
|
+
level: 'AAA',
|
|
267
|
+
wcagType: '2.0'
|
|
268
|
+
},
|
|
269
|
+
'1.4.7': {
|
|
270
|
+
num: '1.4.7',
|
|
271
|
+
url: 'https://www.w3.org/TR/WCAG21/#low-or-no-background-audio',
|
|
272
|
+
scId: 'WCAG2:low-or-no-background-audio',
|
|
273
|
+
scAltId: ['visual-audio-contrast-noaudio'],
|
|
274
|
+
test: 'WCAG2:visual-audio-contrast-noaudio',
|
|
275
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#low-or-no-background-audio',
|
|
276
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/low-or-no-background-audio.html',
|
|
277
|
+
handle: 'Low or No Background Audio',
|
|
278
|
+
level: 'AAA',
|
|
279
|
+
wcagType: '2.0'
|
|
280
|
+
},
|
|
281
|
+
'1.4.8': {
|
|
282
|
+
num: '1.4.8',
|
|
283
|
+
url: 'https://www.w3.org/TR/WCAG21/#visual-presentation',
|
|
284
|
+
scId: 'WCAG2:visual-presentation',
|
|
285
|
+
scAltId: ['visual-audio-contrast-visual-presentation'],
|
|
286
|
+
test: 'WCAG2:visual-audio-contrast-visual-presentation',
|
|
287
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#visual-presentation',
|
|
288
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/visual-presentation.html',
|
|
289
|
+
handle: 'Visual Presentation',
|
|
290
|
+
level: 'AAA',
|
|
291
|
+
wcagType: '2.0'
|
|
292
|
+
},
|
|
293
|
+
'1.4.9': {
|
|
294
|
+
num: '1.4.9',
|
|
295
|
+
url: 'https://www.w3.org/TR/WCAG21/#images-of-text-no-exception',
|
|
296
|
+
scId: 'WCAG2:images-of-text-no-exception',
|
|
297
|
+
scAltId: ['visual-audio-contrast-text-images'],
|
|
298
|
+
test: 'WCAG2:visual-audio-contrast-text-images',
|
|
299
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#images-of-text-no-exception',
|
|
300
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/images-of-text-no-exception.html',
|
|
301
|
+
handle: 'Images of Text (No Exception)',
|
|
302
|
+
level: 'AAA',
|
|
303
|
+
wcagType: '2.0'
|
|
304
|
+
},
|
|
305
|
+
'1.4.10': {
|
|
306
|
+
num: '1.4.10',
|
|
307
|
+
url: 'https://www.w3.org/TR/WCAG21/#reflow',
|
|
308
|
+
scId: 'WCAG2:reflow',
|
|
309
|
+
scAltId: [],
|
|
310
|
+
test: 'WCAG2:WCAG2:reflow',
|
|
311
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#reflow',
|
|
312
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/reflow.html',
|
|
313
|
+
handle: 'Reflow',
|
|
314
|
+
level: 'AA',
|
|
315
|
+
wcagType: '2.1'
|
|
316
|
+
},
|
|
317
|
+
'1.4.11': {
|
|
318
|
+
num: '1.4.11',
|
|
319
|
+
url: 'https://www.w3.org/TR/WCAG21/#non-text-contrast',
|
|
320
|
+
scId: 'WCAG2:non-text-contrast',
|
|
321
|
+
scAltId: [],
|
|
322
|
+
test: 'WCAG2:WCAG2:non-text-contrast',
|
|
323
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#non-text-contrast',
|
|
324
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/non-text-contrast.html',
|
|
325
|
+
handle: 'Non-text Contrast',
|
|
326
|
+
level: 'AA',
|
|
327
|
+
wcagType: '2.1'
|
|
328
|
+
},
|
|
329
|
+
'1.4.12': {
|
|
330
|
+
num: '1.4.12',
|
|
331
|
+
url: 'https://www.w3.org/TR/WCAG21/#text-spacing',
|
|
332
|
+
scId: 'WCAG2:text-spacing',
|
|
333
|
+
scAltId: [],
|
|
334
|
+
test: 'WCAG2:WCAG2:text-spacing',
|
|
335
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#text-spacing',
|
|
336
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/text-spacing.html',
|
|
337
|
+
handle: 'Text Spacing',
|
|
338
|
+
level: 'AA',
|
|
339
|
+
wcagType: '2.1'
|
|
340
|
+
},
|
|
341
|
+
'1.4.13': {
|
|
342
|
+
num: '1.4.13',
|
|
343
|
+
url: 'https://www.w3.org/TR/WCAG21/#content-on-hover-or-focus',
|
|
344
|
+
scId: 'WCAG2:content-on-hover-or-focus',
|
|
345
|
+
scAltId: [],
|
|
346
|
+
test: 'WCAG2:WCAG2:content-on-hover-or-focus',
|
|
347
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#content-on-hover-or-focus',
|
|
348
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/content-on-hover-or-focus.html',
|
|
349
|
+
handle: 'Content on Hover or Focus',
|
|
350
|
+
level: 'AA',
|
|
351
|
+
wcagType: '2.1'
|
|
352
|
+
},
|
|
353
|
+
'2.1.1': {
|
|
354
|
+
num: '2.1.1',
|
|
355
|
+
url: 'https://www.w3.org/TR/WCAG21/#keyboard',
|
|
356
|
+
scId: 'WCAG2:keyboard',
|
|
357
|
+
scAltId: ['keyboard-operation-keyboard-operable'],
|
|
358
|
+
test: 'WCAG2:keyboard-operation-keyboard-operable',
|
|
359
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#keyboard',
|
|
360
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/keyboard.html',
|
|
361
|
+
handle: 'Keyboard',
|
|
362
|
+
level: 'A',
|
|
363
|
+
wcagType: '2.0'
|
|
364
|
+
},
|
|
365
|
+
'2.1.2': {
|
|
366
|
+
num: '2.1.2',
|
|
367
|
+
url: 'https://www.w3.org/TR/WCAG21/#no-keyboard-trap',
|
|
368
|
+
scId: 'WCAG2:no-keyboard-trap',
|
|
369
|
+
scAltId: ['keyboard-operation-trapping'],
|
|
370
|
+
test: 'WCAG2:keyboard-operation-trapping',
|
|
371
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#no-keyboard-trap',
|
|
372
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/no-keyboard-trap.html',
|
|
373
|
+
handle: 'No Keyboard Trap',
|
|
374
|
+
level: 'A',
|
|
375
|
+
wcagType: '2.0'
|
|
376
|
+
},
|
|
377
|
+
'2.1.3': {
|
|
378
|
+
num: '2.1.3',
|
|
379
|
+
url: 'https://www.w3.org/TR/WCAG21/#keyboard-no-exception',
|
|
380
|
+
scId: 'WCAG2:keyboard-no-exception',
|
|
381
|
+
scAltId: ['keyboard-operation-all-funcs'],
|
|
382
|
+
test: 'WCAG2:keyboard-operation-all-funcs',
|
|
383
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#keyboard-no-exception',
|
|
384
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/keyboard-no-exception.html',
|
|
385
|
+
handle: 'Keyboard (No Exception)',
|
|
386
|
+
level: 'AAA',
|
|
387
|
+
wcagType: '2.0'
|
|
388
|
+
},
|
|
389
|
+
'2.1.4': {
|
|
390
|
+
num: '2.1.4',
|
|
391
|
+
url: 'https://www.w3.org/TR/WCAG21/#character-key-shortcuts',
|
|
392
|
+
scId: 'WCAG2:character-key-shortcuts',
|
|
393
|
+
scAltId: [],
|
|
394
|
+
test: 'WCAG2:WCAG2:character-key-shortcuts',
|
|
395
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#character-key-shortcuts',
|
|
396
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/character-key-shortcuts.html',
|
|
397
|
+
handle: 'Character Key Shortcuts',
|
|
398
|
+
level: 'A',
|
|
399
|
+
wcagType: '2.1'
|
|
400
|
+
},
|
|
401
|
+
'2.2.1': {
|
|
402
|
+
num: '2.2.1',
|
|
403
|
+
url: 'https://www.w3.org/TR/WCAG21/#timing-adjustable',
|
|
404
|
+
scId: 'WCAG2:timing-adjustable',
|
|
405
|
+
scAltId: ['time-limits-required-behaviors'],
|
|
406
|
+
test: 'WCAG2:time-limits-required-behaviors',
|
|
407
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#timing-adjustable',
|
|
408
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/timing-adjustable.html',
|
|
409
|
+
handle: 'Timing Adjustable',
|
|
410
|
+
level: 'A',
|
|
411
|
+
wcagType: '2.0'
|
|
412
|
+
},
|
|
413
|
+
'2.2.2': {
|
|
414
|
+
num: '2.2.2',
|
|
415
|
+
url: 'https://www.w3.org/TR/WCAG21/#pause-stop-hide',
|
|
416
|
+
scId: 'WCAG2:pause-stop-hide',
|
|
417
|
+
scAltId: ['time-limits-pause'],
|
|
418
|
+
test: 'WCAG2:time-limits-pause',
|
|
419
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#pause-stop-hide',
|
|
420
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/pause-stop-hide.html',
|
|
421
|
+
handle: 'Pause, Stop, Hide',
|
|
422
|
+
level: 'A',
|
|
423
|
+
wcagType: '2.0'
|
|
424
|
+
},
|
|
425
|
+
'2.2.3': {
|
|
426
|
+
num: '2.2.3',
|
|
427
|
+
url: 'https://www.w3.org/TR/WCAG21/#no-timing',
|
|
428
|
+
scId: 'WCAG2:no-timing',
|
|
429
|
+
scAltId: ['time-limits-no-exceptions'],
|
|
430
|
+
test: 'WCAG2:time-limits-no-exceptions',
|
|
431
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#no-timing',
|
|
432
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/no-timing.html',
|
|
433
|
+
handle: 'No Timing',
|
|
434
|
+
level: 'AAA',
|
|
435
|
+
wcagType: '2.0'
|
|
436
|
+
},
|
|
437
|
+
'2.2.4': {
|
|
438
|
+
num: '2.2.4',
|
|
439
|
+
url: 'https://www.w3.org/TR/WCAG21/#interruptions',
|
|
440
|
+
scId: 'WCAG2:interruptions',
|
|
441
|
+
scAltId: ['time-limits-postponed'],
|
|
442
|
+
test: 'WCAG2:time-limits-postponed',
|
|
443
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#interruptions',
|
|
444
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/interruptions.html',
|
|
445
|
+
handle: 'Interruptions',
|
|
446
|
+
level: 'AAA',
|
|
447
|
+
wcagType: '2.0'
|
|
448
|
+
},
|
|
449
|
+
'2.2.5': {
|
|
450
|
+
num: '2.2.5',
|
|
451
|
+
url: 'https://www.w3.org/TR/WCAG21/#re-authenticating',
|
|
452
|
+
scId: 'WCAG2:re-authenticating',
|
|
453
|
+
scAltId: ['time-limits-server-timeout'],
|
|
454
|
+
test: 'WCAG2:time-limits-server-timeout',
|
|
455
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#re-authenticating',
|
|
456
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/re-authenticating.html',
|
|
457
|
+
handle: 'Re-authenticating',
|
|
458
|
+
level: 'AAA',
|
|
459
|
+
wcagType: '2.0'
|
|
460
|
+
},
|
|
461
|
+
'2.2.6': {
|
|
462
|
+
num: '2.2.6',
|
|
463
|
+
url: 'https://www.w3.org/TR/WCAG21/#timeouts',
|
|
464
|
+
scId: 'WCAG2:timeouts',
|
|
465
|
+
scAltId: [],
|
|
466
|
+
test: 'WCAG2:WCAG2:timeouts',
|
|
467
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#timeouts',
|
|
468
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/timeouts.html',
|
|
469
|
+
handle: 'Timeouts',
|
|
470
|
+
level: 'AAA',
|
|
471
|
+
wcagType: '2.1'
|
|
472
|
+
},
|
|
473
|
+
'2.3.1': {
|
|
474
|
+
num: '2.3.1',
|
|
475
|
+
url: 'https://www.w3.org/TR/WCAG21/#three-flashes-or-below-threshold',
|
|
476
|
+
scId: 'WCAG2:three-flashes-or-below-threshold',
|
|
477
|
+
scAltId: ['seizure-does-not-violate'],
|
|
478
|
+
test: 'WCAG2:seizure-does-not-violate',
|
|
479
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#three-flashes-or-below-threshold',
|
|
480
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/three-flashes-or-below-threshold.html',
|
|
481
|
+
handle: 'Three Flashes or Below Threshold',
|
|
482
|
+
level: 'A',
|
|
483
|
+
wcagType: '2.0'
|
|
484
|
+
},
|
|
485
|
+
'2.3.2': {
|
|
486
|
+
num: '2.3.2',
|
|
487
|
+
url: 'https://www.w3.org/TR/WCAG21/#three-flashes',
|
|
488
|
+
scId: 'WCAG2:three-flashes',
|
|
489
|
+
scAltId: ['seizure-three-times'],
|
|
490
|
+
test: 'WCAG2:seizure-three-times',
|
|
491
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#three-flashes',
|
|
492
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/three-flashes.html',
|
|
493
|
+
handle: 'Three Flashes',
|
|
494
|
+
level: 'AAA',
|
|
495
|
+
wcagType: '2.0'
|
|
496
|
+
},
|
|
497
|
+
'2.3.3': {
|
|
498
|
+
num: '2.3.3',
|
|
499
|
+
url: 'https://www.w3.org/TR/WCAG21/#animation-from-interactions',
|
|
500
|
+
scId: 'WCAG2:animation-from-interactions',
|
|
501
|
+
scAltId: [],
|
|
502
|
+
test: 'WCAG2:WCAG2:animation-from-interactions',
|
|
503
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#animation-from-interactions',
|
|
504
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/animation-from-interactions.html',
|
|
505
|
+
handle: 'Animation from Interactions',
|
|
506
|
+
level: 'AAA',
|
|
507
|
+
wcagType: '2.1'
|
|
508
|
+
},
|
|
509
|
+
'2.4.1': {
|
|
510
|
+
num: '2.4.1',
|
|
511
|
+
url: 'https://www.w3.org/TR/WCAG21/#bypass-blocks',
|
|
512
|
+
scId: 'WCAG2:bypass-blocks',
|
|
513
|
+
scAltId: ['navigation-mechanisms-skip'],
|
|
514
|
+
test: 'WCAG2:navigation-mechanisms-skip',
|
|
515
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#bypass-blocks',
|
|
516
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/bypass-blocks.html',
|
|
517
|
+
handle: 'Bypass Blocks',
|
|
518
|
+
level: 'A',
|
|
519
|
+
wcagType: '2.0'
|
|
520
|
+
},
|
|
521
|
+
'2.4.2': {
|
|
522
|
+
num: '2.4.2',
|
|
523
|
+
url: 'https://www.w3.org/TR/WCAG21/#page-titled',
|
|
524
|
+
scId: 'WCAG2:page-titled',
|
|
525
|
+
scAltId: ['navigation-mechanisms-title'],
|
|
526
|
+
test: 'WCAG2:navigation-mechanisms-title',
|
|
527
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#page-titled',
|
|
528
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/page-titled.html',
|
|
529
|
+
handle: 'Page Titled',
|
|
530
|
+
level: 'A',
|
|
531
|
+
wcagType: '2.0'
|
|
532
|
+
},
|
|
533
|
+
'2.4.3': {
|
|
534
|
+
num: '2.4.3',
|
|
535
|
+
url: 'https://www.w3.org/TR/WCAG21/#focus-order',
|
|
536
|
+
scId: 'WCAG2:focus-order',
|
|
537
|
+
scAltId: ['navigation-mechanisms-focus-order'],
|
|
538
|
+
test: 'WCAG2:navigation-mechanisms-focus-order',
|
|
539
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#focus-order',
|
|
540
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/focus-order.html',
|
|
541
|
+
handle: 'Focus Order',
|
|
542
|
+
level: 'A',
|
|
543
|
+
wcagType: '2.0'
|
|
544
|
+
},
|
|
545
|
+
'2.4.4': {
|
|
546
|
+
num: '2.4.4',
|
|
547
|
+
url: 'https://www.w3.org/TR/WCAG21/#link-purpose-in-context',
|
|
548
|
+
scId: 'WCAG2:link-purpose-in-context',
|
|
549
|
+
scAltId: ['navigation-mechanisms-refs'],
|
|
550
|
+
test: 'WCAG2:navigation-mechanisms-refs',
|
|
551
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#link-purpose-in-context',
|
|
552
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/link-purpose-in-context.html',
|
|
553
|
+
handle: 'Link Purpose (In Context)',
|
|
554
|
+
level: 'A',
|
|
555
|
+
wcagType: '2.0'
|
|
556
|
+
},
|
|
557
|
+
'2.4.5': {
|
|
558
|
+
num: '2.4.5',
|
|
559
|
+
url: 'https://www.w3.org/TR/WCAG21/#multiple-ways',
|
|
560
|
+
scId: 'WCAG2:multiple-ways',
|
|
561
|
+
scAltId: ['navigation-mechanisms-mult-loc'],
|
|
562
|
+
test: 'WCAG2:navigation-mechanisms-mult-loc',
|
|
563
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#multiple-ways',
|
|
564
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/multiple-ways.html',
|
|
565
|
+
handle: 'Multiple Ways',
|
|
566
|
+
level: 'AA',
|
|
567
|
+
wcagType: '2.0'
|
|
568
|
+
},
|
|
569
|
+
'2.4.6': {
|
|
570
|
+
num: '2.4.6',
|
|
571
|
+
url: 'https://www.w3.org/TR/WCAG21/#headings-and-labels',
|
|
572
|
+
scId: 'WCAG2:headings-and-labels',
|
|
573
|
+
scAltId: ['navigation-mechanisms-descriptive'],
|
|
574
|
+
test: 'WCAG2:navigation-mechanisms-descriptive',
|
|
575
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#headings-and-labels',
|
|
576
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/headings-and-labels.html',
|
|
577
|
+
handle: 'Headings and Labels',
|
|
578
|
+
level: 'AA',
|
|
579
|
+
wcagType: '2.0'
|
|
580
|
+
},
|
|
581
|
+
'2.4.7': {
|
|
582
|
+
num: '2.4.7',
|
|
583
|
+
url: 'https://www.w3.org/TR/WCAG21/#focus-visible',
|
|
584
|
+
scId: 'WCAG2:focus-visible',
|
|
585
|
+
scAltId: ['navigation-mechanisms-focus-visible'],
|
|
586
|
+
test: 'WCAG2:navigation-mechanisms-focus-visible',
|
|
587
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#focus-visible',
|
|
588
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/focus-visible.html',
|
|
589
|
+
handle: 'Focus Visible',
|
|
590
|
+
level: 'AA',
|
|
591
|
+
wcagType: '2.0'
|
|
592
|
+
},
|
|
593
|
+
'2.4.8': {
|
|
594
|
+
num: '2.4.8',
|
|
595
|
+
url: 'https://www.w3.org/TR/WCAG21/#location',
|
|
596
|
+
scId: 'WCAG2:location',
|
|
597
|
+
scAltId: ['navigation-mechanisms-location'],
|
|
598
|
+
test: 'WCAG2:navigation-mechanisms-location',
|
|
599
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#location',
|
|
600
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/location.html',
|
|
601
|
+
handle: 'Location',
|
|
602
|
+
level: 'AAA',
|
|
603
|
+
wcagType: '2.0'
|
|
604
|
+
},
|
|
605
|
+
'2.4.9': {
|
|
606
|
+
num: '2.4.9',
|
|
607
|
+
url: 'https://www.w3.org/TR/WCAG21/#link-purpose-link-only',
|
|
608
|
+
scId: 'WCAG2:link-purpose-link-only',
|
|
609
|
+
scAltId: ['navigation-mechanisms-link'],
|
|
610
|
+
test: 'WCAG2:navigation-mechanisms-link',
|
|
611
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#link-purpose-link-only',
|
|
612
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/link-purpose-link-only.html',
|
|
613
|
+
handle: 'Link Purpose (Link Only)',
|
|
614
|
+
level: 'AAA',
|
|
615
|
+
wcagType: '2.0'
|
|
616
|
+
},
|
|
617
|
+
'2.4.10': {
|
|
618
|
+
num: '2.4.10',
|
|
619
|
+
url: 'https://www.w3.org/TR/WCAG21/#section-headings',
|
|
620
|
+
scId: 'WCAG2:section-headings',
|
|
621
|
+
scAltId: ['navigation-mechanisms-headings'],
|
|
622
|
+
test: 'WCAG2:navigation-mechanisms-headings',
|
|
623
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#section-headings',
|
|
624
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/section-headings.html',
|
|
625
|
+
handle: 'Section Headings',
|
|
626
|
+
level: 'AAA',
|
|
627
|
+
wcagType: '2.0'
|
|
628
|
+
},
|
|
629
|
+
'2.5.1': {
|
|
630
|
+
num: '2.5.1',
|
|
631
|
+
url: 'https://www.w3.org/TR/WCAG21/#pointer-gestures',
|
|
632
|
+
scId: 'WCAG2:pointer-gestures',
|
|
633
|
+
scAltId: [],
|
|
634
|
+
test: 'WCAG2:WCAG2:pointer-gestures',
|
|
635
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#pointer-gestures',
|
|
636
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/pointer-gestures.html',
|
|
637
|
+
handle: 'Pointer Gestures',
|
|
638
|
+
level: 'A',
|
|
639
|
+
wcagType: '2.1'
|
|
640
|
+
},
|
|
641
|
+
'2.5.2': {
|
|
642
|
+
num: '2.5.2',
|
|
643
|
+
url: 'https://www.w3.org/TR/WCAG21/#pointer-cancellation',
|
|
644
|
+
scId: 'WCAG2:pointer-cancellation',
|
|
645
|
+
scAltId: [],
|
|
646
|
+
test: 'WCAG2:WCAG2:pointer-cancellation',
|
|
647
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#pointer-cancellation',
|
|
648
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/pointer-cancellation.html',
|
|
649
|
+
handle: 'Pointer Cancellation',
|
|
650
|
+
level: 'A',
|
|
651
|
+
wcagType: '2.1'
|
|
652
|
+
},
|
|
653
|
+
'2.5.3': {
|
|
654
|
+
num: '2.5.3',
|
|
655
|
+
url: 'https://www.w3.org/TR/WCAG21/#label-in-name',
|
|
656
|
+
scId: 'WCAG2:label-in-name',
|
|
657
|
+
scAltId: [],
|
|
658
|
+
test: 'WCAG2:WCAG2:label-in-name',
|
|
659
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#label-in-name',
|
|
660
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/label-in-name.html',
|
|
661
|
+
handle: 'Label in Name',
|
|
662
|
+
level: 'A',
|
|
663
|
+
wcagType: '2.1'
|
|
664
|
+
},
|
|
665
|
+
'2.5.4': {
|
|
666
|
+
num: '2.5.4',
|
|
667
|
+
url: 'https://www.w3.org/TR/WCAG21/#motion-actuation',
|
|
668
|
+
scId: 'WCAG2:motion-actuation',
|
|
669
|
+
scAltId: [],
|
|
670
|
+
test: 'WCAG2:WCAG2:motion-actuation',
|
|
671
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#motion-actuation',
|
|
672
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/motion-actuation.html',
|
|
673
|
+
handle: 'Motion Actuation',
|
|
674
|
+
level: 'A',
|
|
675
|
+
wcagType: '2.1'
|
|
676
|
+
},
|
|
677
|
+
'2.5.5': {
|
|
678
|
+
num: '2.5.5',
|
|
679
|
+
url: 'https://www.w3.org/TR/WCAG21/#target-size',
|
|
680
|
+
scId: 'WCAG2:target-size',
|
|
681
|
+
scAltId: [],
|
|
682
|
+
test: 'WCAG2:WCAG2:target-size',
|
|
683
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#target-size',
|
|
684
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/target-size.html',
|
|
685
|
+
handle: 'Target Size',
|
|
686
|
+
level: 'AAA',
|
|
687
|
+
wcagType: '2.1'
|
|
688
|
+
},
|
|
689
|
+
'2.5.6': {
|
|
690
|
+
num: '2.5.6',
|
|
691
|
+
url: 'https://www.w3.org/TR/WCAG21/#concurrent-input-mechanisms',
|
|
692
|
+
scId: 'WCAG2:concurrent-input-mechanisms',
|
|
693
|
+
scAltId: [],
|
|
694
|
+
test: 'WCAG2:WCAG2:concurrent-input-mechanisms',
|
|
695
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#concurrent-input-mechanisms',
|
|
696
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/concurrent-input-mechanisms.html',
|
|
697
|
+
handle: 'Concurrent Input Mechanisms',
|
|
698
|
+
level: 'AAA',
|
|
699
|
+
wcagType: '2.1'
|
|
700
|
+
},
|
|
701
|
+
'3.1.1': {
|
|
702
|
+
num: '3.1.1',
|
|
703
|
+
url: 'https://www.w3.org/TR/WCAG21/#language-of-page',
|
|
704
|
+
scId: 'WCAG2:language-of-page',
|
|
705
|
+
scAltId: ['meaning-doc-lang-id'],
|
|
706
|
+
test: 'WCAG2:meaning-doc-lang-id',
|
|
707
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#language-of-page',
|
|
708
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/language-of-page.html',
|
|
709
|
+
handle: 'Language of Page',
|
|
710
|
+
level: 'A',
|
|
711
|
+
wcagType: '2.0'
|
|
712
|
+
},
|
|
713
|
+
'3.1.2': {
|
|
714
|
+
num: '3.1.2',
|
|
715
|
+
url: 'https://www.w3.org/TR/WCAG21/#language-of-parts',
|
|
716
|
+
scId: 'WCAG2:language-of-parts',
|
|
717
|
+
scAltId: ['meaning-other-lang-id'],
|
|
718
|
+
test: 'WCAG2:meaning-other-lang-id',
|
|
719
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#language-of-parts',
|
|
720
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/language-of-parts.html',
|
|
721
|
+
handle: 'Language of Parts',
|
|
722
|
+
level: 'AA',
|
|
723
|
+
wcagType: '2.0'
|
|
724
|
+
},
|
|
725
|
+
'3.1.3': {
|
|
726
|
+
num: '3.1.3',
|
|
727
|
+
url: 'https://www.w3.org/TR/WCAG21/#unusual-words',
|
|
728
|
+
scId: 'WCAG2:unusual-words',
|
|
729
|
+
scAltId: ['meaning-idioms'],
|
|
730
|
+
test: 'WCAG2:meaning-idioms',
|
|
731
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#unusual-words',
|
|
732
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/unusual-words.html',
|
|
733
|
+
handle: 'Unusual Words',
|
|
734
|
+
level: 'AAA',
|
|
735
|
+
wcagType: '2.0'
|
|
736
|
+
},
|
|
737
|
+
'3.1.4': {
|
|
738
|
+
num: '3.1.4',
|
|
739
|
+
url: 'https://www.w3.org/TR/WCAG21/#abbreviations',
|
|
740
|
+
scId: 'WCAG2:abbreviations',
|
|
741
|
+
scAltId: ['meaning-located'],
|
|
742
|
+
test: 'WCAG2:meaning-located',
|
|
743
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#abbreviations',
|
|
744
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/abbreviations.html',
|
|
745
|
+
handle: 'Abbreviations',
|
|
746
|
+
level: 'AAA',
|
|
747
|
+
wcagType: '2.0'
|
|
748
|
+
},
|
|
749
|
+
'3.1.5': {
|
|
750
|
+
num: '3.1.5',
|
|
751
|
+
url: 'https://www.w3.org/TR/WCAG21/#reading-level',
|
|
752
|
+
scId: 'WCAG2:reading-level',
|
|
753
|
+
scAltId: ['meaning-supplements'],
|
|
754
|
+
test: 'WCAG2:meaning-supplements',
|
|
755
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#reading-level',
|
|
756
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/reading-level.html',
|
|
757
|
+
handle: 'Reading Level',
|
|
758
|
+
level: 'AAA',
|
|
759
|
+
wcagType: '2.0'
|
|
760
|
+
},
|
|
761
|
+
'3.1.6': {
|
|
762
|
+
num: '3.1.6',
|
|
763
|
+
url: 'https://www.w3.org/TR/WCAG21/#pronunciation',
|
|
764
|
+
scId: 'WCAG2:pronunciation',
|
|
765
|
+
scAltId: ['meaning-pronunciation'],
|
|
766
|
+
test: 'WCAG2:meaning-pronunciation',
|
|
767
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#pronunciation',
|
|
768
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/pronunciation.html',
|
|
769
|
+
handle: 'Pronunciation',
|
|
770
|
+
level: 'AAA',
|
|
771
|
+
wcagType: '2.0'
|
|
772
|
+
},
|
|
773
|
+
'3.2.1': {
|
|
774
|
+
num: '3.2.1',
|
|
775
|
+
url: 'https://www.w3.org/TR/WCAG21/#on-focus',
|
|
776
|
+
scId: 'WCAG2:on-focus',
|
|
777
|
+
scAltId: ['consistent-behavior-receive-focus'],
|
|
778
|
+
test: 'WCAG2:consistent-behavior-receive-focus',
|
|
779
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#on-focus',
|
|
780
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/on-focus.html',
|
|
781
|
+
handle: 'On Focus',
|
|
782
|
+
level: 'A',
|
|
783
|
+
wcagType: '2.0'
|
|
784
|
+
},
|
|
785
|
+
'3.2.2': {
|
|
786
|
+
num: '3.2.2',
|
|
787
|
+
url: 'https://www.w3.org/TR/WCAG21/#on-input',
|
|
788
|
+
scId: 'WCAG2:on-input',
|
|
789
|
+
scAltId: ['consistent-behavior-unpredictable-change'],
|
|
790
|
+
test: 'WCAG2:consistent-behavior-unpredictable-change',
|
|
791
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#on-input',
|
|
792
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/on-input.html',
|
|
793
|
+
handle: 'On Input',
|
|
794
|
+
level: 'A',
|
|
795
|
+
wcagType: '2.0'
|
|
796
|
+
},
|
|
797
|
+
'3.2.3': {
|
|
798
|
+
num: '3.2.3',
|
|
799
|
+
url: 'https://www.w3.org/TR/WCAG21/#consistent-navigation',
|
|
800
|
+
scId: 'WCAG2:consistent-navigation',
|
|
801
|
+
scAltId: ['consistent-behavior-consistent-locations'],
|
|
802
|
+
test: 'WCAG2:consistent-behavior-consistent-locations',
|
|
803
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#consistent-navigation',
|
|
804
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/consistent-navigation.html',
|
|
805
|
+
handle: 'Consistent Navigation',
|
|
806
|
+
level: 'AA',
|
|
807
|
+
wcagType: '2.0'
|
|
808
|
+
},
|
|
809
|
+
'3.2.4': {
|
|
810
|
+
num: '3.2.4',
|
|
811
|
+
url: 'https://www.w3.org/TR/WCAG21/#consistent-identification',
|
|
812
|
+
scId: 'WCAG2:consistent-identification',
|
|
813
|
+
scAltId: ['consistent-behavior-consistent-functionality'],
|
|
814
|
+
test: 'WCAG2:consistent-behavior-consistent-functionality',
|
|
815
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#consistent-identification',
|
|
816
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/consistent-identification.html',
|
|
817
|
+
handle: 'Consistent Identification',
|
|
818
|
+
level: 'AA',
|
|
819
|
+
wcagType: '2.0'
|
|
820
|
+
},
|
|
821
|
+
'3.2.5': {
|
|
822
|
+
num: '3.2.5',
|
|
823
|
+
url: 'https://www.w3.org/TR/WCAG21/#change-on-request',
|
|
824
|
+
scId: 'WCAG2:change-on-request',
|
|
825
|
+
scAltId: ['consistent-behavior-no-extreme-changes-context'],
|
|
826
|
+
test: 'WCAG2:consistent-behavior-no-extreme-changes-context',
|
|
827
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#change-on-request',
|
|
828
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/change-on-request.html',
|
|
829
|
+
handle: 'Change on Request',
|
|
830
|
+
level: 'AAA',
|
|
831
|
+
wcagType: '2.0'
|
|
832
|
+
},
|
|
833
|
+
'3.3.1': {
|
|
834
|
+
num: '3.3.1',
|
|
835
|
+
url: 'https://www.w3.org/TR/WCAG21/#error-identification',
|
|
836
|
+
scId: 'WCAG2:error-identification',
|
|
837
|
+
scAltId: ['minimize-error-identified'],
|
|
838
|
+
test: 'WCAG2:minimize-error-identified',
|
|
839
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#error-identification',
|
|
840
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/error-identification.html',
|
|
841
|
+
handle: 'Error Identification',
|
|
842
|
+
level: 'A',
|
|
843
|
+
wcagType: '2.0'
|
|
844
|
+
},
|
|
845
|
+
'3.3.2': {
|
|
846
|
+
num: '3.3.2',
|
|
847
|
+
url: 'https://www.w3.org/TR/WCAG21/#labels-or-instructions',
|
|
848
|
+
scId: 'WCAG2:labels-or-instructions',
|
|
849
|
+
scAltId: ['minimize-error-cues'],
|
|
850
|
+
test: 'WCAG2:minimize-error-cues',
|
|
851
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#labels-or-instructions',
|
|
852
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/labels-or-instructions.html',
|
|
853
|
+
handle: 'Labels or Instructions',
|
|
854
|
+
level: 'A',
|
|
855
|
+
wcagType: '2.0'
|
|
856
|
+
},
|
|
857
|
+
'3.3.3': {
|
|
858
|
+
num: '3.3.3',
|
|
859
|
+
url: 'https://www.w3.org/TR/WCAG21/#error-suggestion',
|
|
860
|
+
scId: 'WCAG2:error-suggestion',
|
|
861
|
+
scAltId: ['minimize-error-suggestions'],
|
|
862
|
+
test: 'WCAG2:minimize-error-suggestions',
|
|
863
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#error-suggestion',
|
|
864
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/error-suggestion.html',
|
|
865
|
+
handle: 'Error Suggestion',
|
|
866
|
+
level: 'AA',
|
|
867
|
+
wcagType: '2.0'
|
|
868
|
+
},
|
|
869
|
+
'3.3.4': {
|
|
870
|
+
num: '3.3.4',
|
|
871
|
+
url: 'https://www.w3.org/TR/WCAG21/#error-prevention-legal-financial-data',
|
|
872
|
+
scId: 'WCAG2:error-prevention-legal-financial-data',
|
|
873
|
+
scAltId: ['minimize-error-reversible'],
|
|
874
|
+
test: 'WCAG2:minimize-error-reversible',
|
|
875
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#error-prevention-legal-financial-data',
|
|
876
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/error-prevention-legal-financial-data.html',
|
|
877
|
+
handle: 'Error Prevention (Legal, Financial, Data)',
|
|
878
|
+
level: 'AA',
|
|
879
|
+
wcagType: '2.0'
|
|
880
|
+
},
|
|
881
|
+
'3.3.5': {
|
|
882
|
+
num: '3.3.5',
|
|
883
|
+
url: 'https://www.w3.org/TR/WCAG21/#help',
|
|
884
|
+
scId: 'WCAG2:help',
|
|
885
|
+
scAltId: ['minimize-error-context-help'],
|
|
886
|
+
test: 'WCAG2:minimize-error-context-help',
|
|
887
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#help',
|
|
888
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/help.html',
|
|
889
|
+
handle: 'Help',
|
|
890
|
+
level: 'AAA',
|
|
891
|
+
wcagType: '2.0'
|
|
892
|
+
},
|
|
893
|
+
'3.3.6': {
|
|
894
|
+
num: '3.3.6',
|
|
895
|
+
url: 'https://www.w3.org/TR/WCAG21/#error-prevention-all',
|
|
896
|
+
scId: 'WCAG2:error-prevention-all',
|
|
897
|
+
scAltId: ['minimize-error-reversible-all'],
|
|
898
|
+
test: 'WCAG2:minimize-error-reversible-all',
|
|
899
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#error-prevention-all',
|
|
900
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/error-prevention-all.html',
|
|
901
|
+
handle: 'Error Prevention (All)',
|
|
902
|
+
level: 'AAA',
|
|
903
|
+
wcagType: '2.0'
|
|
904
|
+
},
|
|
905
|
+
'4.1.1': {
|
|
906
|
+
num: '4.1.1',
|
|
907
|
+
url: 'https://www.w3.org/TR/WCAG21/#parsing',
|
|
908
|
+
scId: 'WCAG2:parsing',
|
|
909
|
+
scAltId: ['ensure-compat-parses'],
|
|
910
|
+
test: 'WCAG2:ensure-compat-parses',
|
|
911
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#parsing',
|
|
912
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/parsing.html',
|
|
913
|
+
handle: 'Parsing',
|
|
914
|
+
level: 'A',
|
|
915
|
+
wcagType: '2.0'
|
|
916
|
+
},
|
|
917
|
+
'4.1.2': {
|
|
918
|
+
num: '4.1.2',
|
|
919
|
+
url: 'https://www.w3.org/TR/WCAG21/#name-role-value',
|
|
920
|
+
scId: 'WCAG2:name-role-value',
|
|
921
|
+
scAltId: ['ensure-compat-rsv'],
|
|
922
|
+
test: 'WCAG2:ensure-compat-rsv',
|
|
923
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#name-role-value',
|
|
924
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/name-role-value.html',
|
|
925
|
+
handle: 'Name, Role, Value',
|
|
926
|
+
level: 'A',
|
|
927
|
+
wcagType: '2.0'
|
|
928
|
+
},
|
|
929
|
+
'4.1.3': {
|
|
930
|
+
num: '4.1.3',
|
|
931
|
+
url: 'https://www.w3.org/TR/WCAG21/#status-messages',
|
|
932
|
+
scId: 'WCAG2:status-messages',
|
|
933
|
+
scAltId: [],
|
|
934
|
+
test: 'WCAG2:WCAG2:status-messages',
|
|
935
|
+
howToMeetUrl: 'https://www.w3.org/WAI/WCAG21/quickref/#status-messages',
|
|
936
|
+
understandingUrl: 'https://www.w3.org/WAI/WCAG21/Understanding/status-messages.html',
|
|
937
|
+
handle: 'Status Messages',
|
|
938
|
+
level: 'AA',
|
|
939
|
+
wcagType: '2.1'
|
|
940
|
+
}
|
|
941
|
+
};
|
|
942
|
+
exports.SC = SC;
|
|
943
|
+
const WCAG2 = 'WCAG2:';
|
|
944
|
+
exports.WCAG2 = WCAG2;
|
|
945
|
+
//# sourceMappingURL=constants.js.map
|