testilo 41.5.5 → 41.5.7
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/package.json +1 -1
- package/procs/score/tic49.js +62 -58
package/package.json
CHANGED
package/procs/score/tic49.js
CHANGED
|
@@ -66,6 +66,16 @@ exports.issues = {
|
|
|
66
66
|
quality: 1,
|
|
67
67
|
what: 'Background image may be informative [speculative]'
|
|
68
68
|
},
|
|
69
|
+
empty_link_element: {
|
|
70
|
+
variable: false,
|
|
71
|
+
quality: 1,
|
|
72
|
+
what: 'Element has no visible and accessible name [invalid]'
|
|
73
|
+
},
|
|
74
|
+
fieldset_no_legend: {
|
|
75
|
+
variable: false,
|
|
76
|
+
quality: 1,
|
|
77
|
+
what: 'First child element of the element is not a legend [duplicative]'
|
|
78
|
+
},
|
|
69
79
|
flickering: {
|
|
70
80
|
variable: false,
|
|
71
81
|
quality: 0,
|
|
@@ -76,11 +86,21 @@ exports.issues = {
|
|
|
76
86
|
quality: 1,
|
|
77
87
|
what: 'Link destination has a named host and may be in an unexpected language [speculative]'
|
|
78
88
|
},
|
|
89
|
+
links_not_visually_evident_without_color_vision: {
|
|
90
|
+
variable: false,
|
|
91
|
+
quality: 1,
|
|
92
|
+
what: 'Element is a link, but its style properties do not differentiate it from its parent [irrelevant]'
|
|
93
|
+
},
|
|
79
94
|
meaningful_content_sequence: {
|
|
80
95
|
variable: false,
|
|
81
96
|
quality: 0,
|
|
82
97
|
what: 'The content sequence may fail to be meaningful [speculative]'
|
|
83
98
|
},
|
|
99
|
+
missing_alt_attribute: {
|
|
100
|
+
variable: false,
|
|
101
|
+
quality: 1,
|
|
102
|
+
what: 'Image has no alt attribute [invalid]'
|
|
103
|
+
},
|
|
84
104
|
motion_actuation: {
|
|
85
105
|
variable: false,
|
|
86
106
|
quality: 0,
|
|
@@ -161,6 +181,13 @@ exports.issues = {
|
|
|
161
181
|
what: 'Element is a visualization, so may lack a nonvisual equivalent [speculative]'
|
|
162
182
|
}
|
|
163
183
|
},
|
|
184
|
+
ibm: {
|
|
185
|
+
aria_child_valid: {
|
|
186
|
+
variable: false,
|
|
187
|
+
quality: 1,
|
|
188
|
+
what: 'Child element has a role not allowed for the role of the parent [invalid]'
|
|
189
|
+
}
|
|
190
|
+
},
|
|
164
191
|
nuVal: {
|
|
165
192
|
'Element head is missing a required instance of child element title.': {
|
|
166
193
|
variable: false,
|
|
@@ -174,6 +201,11 @@ exports.issues = {
|
|
|
174
201
|
}
|
|
175
202
|
},
|
|
176
203
|
qualWeb: {
|
|
204
|
+
'QW-ACT-R13': {
|
|
205
|
+
variable: false,
|
|
206
|
+
quality: 1,
|
|
207
|
+
what: 'Element with aria-hidden has focusable content [invalid]'
|
|
208
|
+
},
|
|
177
209
|
'QW-ACT-R52': {
|
|
178
210
|
variable: false,
|
|
179
211
|
quality: 0,
|
|
@@ -219,6 +251,11 @@ exports.issues = {
|
|
|
219
251
|
quality: 0,
|
|
220
252
|
what: 'h1-h6 may fail to be used to identify headings [speculative]'
|
|
221
253
|
},
|
|
254
|
+
'QW-BP2': {
|
|
255
|
+
variable: false,
|
|
256
|
+
quality: 1,
|
|
257
|
+
what: 'Image text alternative is not concise'
|
|
258
|
+
},
|
|
222
259
|
'QW-BP17': {
|
|
223
260
|
variable: false,
|
|
224
261
|
quality: 1,
|
|
@@ -288,6 +325,11 @@ exports.issues = {
|
|
|
288
325
|
variable: false,
|
|
289
326
|
quality: 1,
|
|
290
327
|
what: 'ol, ul or dl may fail to be used for a list or group of links [speculative]'
|
|
328
|
+
},
|
|
329
|
+
'QW-WCAG-T35': {
|
|
330
|
+
variable: false,
|
|
331
|
+
quality: 1,
|
|
332
|
+
what: 'Several elements have this id attribute value [invalid]'
|
|
291
333
|
}
|
|
292
334
|
}
|
|
293
335
|
}
|
|
@@ -377,11 +419,6 @@ exports.issues = {
|
|
|
377
419
|
variable: false,
|
|
378
420
|
quality: 1,
|
|
379
421
|
what: 'id attribute value is not unique'
|
|
380
|
-
},
|
|
381
|
-
'QW-WCAG-T35': {
|
|
382
|
-
variable: false,
|
|
383
|
-
quality: 1,
|
|
384
|
-
what: 'Several elements have this id attribute value'
|
|
385
422
|
}
|
|
386
423
|
}
|
|
387
424
|
}
|
|
@@ -610,13 +647,6 @@ exports.issues = {
|
|
|
610
647
|
what: 'Image has no accessible name'
|
|
611
648
|
}
|
|
612
649
|
},
|
|
613
|
-
aslint: {
|
|
614
|
-
missing_alt_attribute: {
|
|
615
|
-
variable: false,
|
|
616
|
-
quality: 1,
|
|
617
|
-
what: 'Image has no alt attribute'
|
|
618
|
-
}
|
|
619
|
-
},
|
|
620
650
|
axe: {
|
|
621
651
|
'image-alt': {
|
|
622
652
|
variable: false,
|
|
@@ -796,14 +826,14 @@ exports.issues = {
|
|
|
796
826
|
'QW-WCAG-T8': {
|
|
797
827
|
variable: false,
|
|
798
828
|
quality: 1,
|
|
799
|
-
what: 'Text alternative is
|
|
829
|
+
what: 'Text alternative is suspect'
|
|
800
830
|
}
|
|
801
831
|
},
|
|
802
832
|
wave: {
|
|
803
833
|
alt_suspicious: {
|
|
804
834
|
variable: false,
|
|
805
835
|
quality: 1,
|
|
806
|
-
what: 'Image text alternative is
|
|
836
|
+
what: 'Image text alternative is suspect'
|
|
807
837
|
}
|
|
808
838
|
}
|
|
809
839
|
}
|
|
@@ -976,13 +1006,6 @@ exports.issues = {
|
|
|
976
1006
|
what: 'Linked img alt value longer than 160 characters'
|
|
977
1007
|
}
|
|
978
1008
|
},
|
|
979
|
-
qualWeb: {
|
|
980
|
-
'QW-BP2': {
|
|
981
|
-
variable: false,
|
|
982
|
-
quality: 1,
|
|
983
|
-
what: 'Image text alternative is not concise'
|
|
984
|
-
}
|
|
985
|
-
},
|
|
986
1009
|
wave: {
|
|
987
1010
|
alt_long: {
|
|
988
1011
|
variable: false,
|
|
@@ -1898,11 +1921,6 @@ exports.issues = {
|
|
|
1898
1921
|
variable: false,
|
|
1899
1922
|
quality: 1,
|
|
1900
1923
|
what: 'Element is an image in a link but has no text alternative'
|
|
1901
|
-
},
|
|
1902
|
-
empty_link_element: {
|
|
1903
|
-
variable: false,
|
|
1904
|
-
quality: 1,
|
|
1905
|
-
what: 'Element has no visible and accessible name'
|
|
1906
1924
|
}
|
|
1907
1925
|
},
|
|
1908
1926
|
axe: {
|
|
@@ -2264,11 +2282,6 @@ exports.issues = {
|
|
|
2264
2282
|
}
|
|
2265
2283
|
},
|
|
2266
2284
|
qualWeb: {
|
|
2267
|
-
'QW-WCAG-T10': {
|
|
2268
|
-
variable: false,
|
|
2269
|
-
quality: 1,
|
|
2270
|
-
what: 'Adjacent image and text links for the same resource are not combined'
|
|
2271
|
-
},
|
|
2272
2285
|
'QW-BP13': {
|
|
2273
2286
|
variable: false,
|
|
2274
2287
|
quality: 1,
|
|
@@ -2299,6 +2312,21 @@ exports.issues = {
|
|
|
2299
2312
|
}
|
|
2300
2313
|
}
|
|
2301
2314
|
},
|
|
2315
|
+
linkNameRisk: {
|
|
2316
|
+
summary: 'image link text suspect',
|
|
2317
|
+
why: 'Keyboard-only user may misunderstand the effect of following a link',
|
|
2318
|
+
wcag: '2.4.4',
|
|
2319
|
+
weight: 1,
|
|
2320
|
+
tools: {
|
|
2321
|
+
qualWeb: {
|
|
2322
|
+
'QW-WCAG-T10': {
|
|
2323
|
+
variable: false,
|
|
2324
|
+
quality: 0.8,
|
|
2325
|
+
what: 'Link name repeats its image name and/or that name is suspect'
|
|
2326
|
+
}
|
|
2327
|
+
}
|
|
2328
|
+
}
|
|
2329
|
+
},
|
|
2302
2330
|
pageNewWindow: {
|
|
2303
2331
|
summary: 'page immediately opens window',
|
|
2304
2332
|
why: 'User promised a document gets another document, too',
|
|
@@ -2837,8 +2865,8 @@ exports.issues = {
|
|
|
2837
2865
|
qualWeb: {
|
|
2838
2866
|
'QW-WCAG-T28': {
|
|
2839
2867
|
variable: false,
|
|
2840
|
-
quality:
|
|
2841
|
-
what: '
|
|
2868
|
+
quality: 0.8,
|
|
2869
|
+
what: 'Font size set to an absolute unit value'
|
|
2842
2870
|
}
|
|
2843
2871
|
}
|
|
2844
2872
|
}
|
|
@@ -3415,11 +3443,6 @@ exports.issues = {
|
|
|
3415
3443
|
weight: 4,
|
|
3416
3444
|
tools: {
|
|
3417
3445
|
ibm: {
|
|
3418
|
-
aria_child_valid: {
|
|
3419
|
-
variable: false,
|
|
3420
|
-
quality: 1,
|
|
3421
|
-
what: 'Child element has a role not allowed for the role of the parent'
|
|
3422
|
-
},
|
|
3423
3446
|
aria_descendant_valid: {
|
|
3424
3447
|
variable: false,
|
|
3425
3448
|
quality: 1,
|
|
@@ -4824,7 +4847,7 @@ exports.issues = {
|
|
|
4824
4847
|
'heading-order': {
|
|
4825
4848
|
variable: false,
|
|
4826
4849
|
quality: 1,
|
|
4827
|
-
what: 'Heading levels do not increase by only one'
|
|
4850
|
+
what: 'Heading levels do not increase by only one or their order is ambiguous'
|
|
4828
4851
|
}
|
|
4829
4852
|
},
|
|
4830
4853
|
ed11y: {
|
|
@@ -5572,11 +5595,6 @@ exports.issues = {
|
|
|
5572
5595
|
weight: 2,
|
|
5573
5596
|
tools: {
|
|
5574
5597
|
aslint: {
|
|
5575
|
-
fieldset_no_legend: {
|
|
5576
|
-
variable: false,
|
|
5577
|
-
quality: 1,
|
|
5578
|
-
what: 'First child element of the element is not a legend'
|
|
5579
|
-
},
|
|
5580
5598
|
legend_first_child_of_fieldset: {
|
|
5581
5599
|
variable: false,
|
|
5582
5600
|
quality: 1,
|
|
@@ -7251,13 +7269,6 @@ exports.issues = {
|
|
|
7251
7269
|
quality: 1,
|
|
7252
7270
|
what: 'Element has an ancestor with a true aria-hidden attribute but is focusable'
|
|
7253
7271
|
}
|
|
7254
|
-
},
|
|
7255
|
-
qualWeb: {
|
|
7256
|
-
'QW-ACT-R13': {
|
|
7257
|
-
variable: false,
|
|
7258
|
-
quality: 1,
|
|
7259
|
-
what: 'Element with aria-hidden has focusable content'
|
|
7260
|
-
}
|
|
7261
7272
|
}
|
|
7262
7273
|
}
|
|
7263
7274
|
},
|
|
@@ -7662,13 +7673,6 @@ exports.issues = {
|
|
|
7662
7673
|
what: 'Inline link is not distinct from the surrounding text except by color'
|
|
7663
7674
|
}
|
|
7664
7675
|
},
|
|
7665
|
-
aslint: {
|
|
7666
|
-
links_not_visually_evident_without_color_vision: {
|
|
7667
|
-
variable: false,
|
|
7668
|
-
quality: 1,
|
|
7669
|
-
what: 'Element is a link, but its style properties do not differentiate it from its parent'
|
|
7670
|
-
}
|
|
7671
|
-
},
|
|
7672
7676
|
axe: {
|
|
7673
7677
|
'link-in-text-block': {
|
|
7674
7678
|
variable: false,
|