testilo 19.2.5 → 19.2.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/tic37.js +48 -72
package/package.json
CHANGED
package/procs/score/tic37.js
CHANGED
|
@@ -21,32 +21,56 @@
|
|
|
21
21
|
exports.issues = {
|
|
22
22
|
ignorable: {
|
|
23
23
|
summary: 'ignorable',
|
|
24
|
-
why: 'No known impact',
|
|
24
|
+
why: 'No known impact, because the test is unreliable or invalid',
|
|
25
25
|
wcag: '',
|
|
26
26
|
weight: 0,
|
|
27
27
|
tools: {
|
|
28
28
|
aslint: {
|
|
29
|
-
|
|
29
|
+
color_contrast_aa: {
|
|
30
30
|
variable: false,
|
|
31
31
|
quality: 0,
|
|
32
|
-
what: '
|
|
32
|
+
what: 'Text has contrast less than 4.5:1 [speculative]'
|
|
33
33
|
},
|
|
34
34
|
flickering: {
|
|
35
35
|
variable: false,
|
|
36
36
|
quality: 0,
|
|
37
|
-
what: 'Excessive flashing may exist'
|
|
37
|
+
what: 'Excessive flashing may exist [speculative]'
|
|
38
|
+
},
|
|
39
|
+
meaningful_content_sequence: {
|
|
40
|
+
variable: false,
|
|
41
|
+
quality: 0,
|
|
42
|
+
what: 'The content sequence may fail to be meaningful [speculative]'
|
|
43
|
+
},
|
|
44
|
+
motion_actuation: {
|
|
45
|
+
variable: false,
|
|
46
|
+
quality: 0,
|
|
47
|
+
what: 'Document listens for device motion or rotation [speculative]'
|
|
48
|
+
},
|
|
49
|
+
overlay: {
|
|
50
|
+
variable: false,
|
|
51
|
+
quality: 0,
|
|
52
|
+
what: 'Document contains a commercial overlay modifier that may fail or invalidate test results [unreliable]'
|
|
38
53
|
},
|
|
39
54
|
reflow: {
|
|
40
55
|
variable: false,
|
|
41
56
|
quality: 0,
|
|
42
|
-
what: 'Page may require horizontal scrolling'
|
|
57
|
+
what: 'Page may require horizontal scrolling [speculative]'
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
axe: {
|
|
61
|
+
axe: {
|
|
62
|
+
'css-orientation-lock': {
|
|
63
|
+
variable: false,
|
|
64
|
+
quality: 0,
|
|
65
|
+
what: 'CSS media query locks display orientation [unreliable]'
|
|
66
|
+
}
|
|
43
67
|
}
|
|
44
68
|
},
|
|
45
69
|
nuVal: {
|
|
46
70
|
'Element mediaelementwrapper not allowed as child of element div in this context. (Suppressing further errors from this subtree.)': {
|
|
47
71
|
variable: false,
|
|
48
72
|
quality: 0,
|
|
49
|
-
what: '
|
|
73
|
+
what: 'Element contains a prohibited mediaelementwrapper element [invalid]'
|
|
50
74
|
}
|
|
51
75
|
},
|
|
52
76
|
qualWeb: {
|
|
@@ -60,20 +84,35 @@ exports.issues = {
|
|
|
60
84
|
quality: 0,
|
|
61
85
|
what: 'video element visual content has no description track (description tracks and this ACT rule have been deprecated)'
|
|
62
86
|
},
|
|
87
|
+
'QW-ACT-R62': {
|
|
88
|
+
variable: false,
|
|
89
|
+
quality: 0,
|
|
90
|
+
what: 'Element in the sequential focus order may have no visible focus [speculative]'
|
|
91
|
+
},
|
|
92
|
+
'QW-ACT-R63': {
|
|
93
|
+
variable: false,
|
|
94
|
+
quality: 0,
|
|
95
|
+
what: 'Document has no landmark with non-repeated content [invalid]'
|
|
96
|
+
},
|
|
63
97
|
'QW-WCAG-T4': {
|
|
64
98
|
variable: false,
|
|
65
99
|
quality: 0,
|
|
66
|
-
what: 'summary attribute is not used to give an overview of a data table'
|
|
100
|
+
what: 'summary attribute is not used to give an overview of a data table [invalid]'
|
|
101
|
+
},
|
|
102
|
+
'QW-WCAG-T9': {
|
|
103
|
+
variable: false,
|
|
104
|
+
quality: 0,
|
|
105
|
+
what: 'Page may fail to be organized using headings [speculative]'
|
|
67
106
|
},
|
|
68
107
|
'QW-WCAG-T15': {
|
|
69
108
|
variable: false,
|
|
70
109
|
quality: 0,
|
|
71
|
-
what: 'link element may be used for navigation but not in the head'
|
|
110
|
+
what: 'link element may be used for navigation but not in the head [invalid]'
|
|
72
111
|
},
|
|
73
112
|
'QW-WCAG-T20': {
|
|
74
113
|
variable: false,
|
|
75
114
|
quality: 0,
|
|
76
|
-
what: 'Link text is not supplemented with a title attribute'
|
|
115
|
+
what: 'Link text is not supplemented with a title attribute [invalid]'
|
|
77
116
|
}
|
|
78
117
|
}
|
|
79
118
|
}
|
|
@@ -2393,13 +2432,6 @@ exports.issues = {
|
|
|
2393
2432
|
what: 'CSS media query specifies an orientation'
|
|
2394
2433
|
}
|
|
2395
2434
|
},
|
|
2396
|
-
axe: {
|
|
2397
|
-
'css-orientation-lock': {
|
|
2398
|
-
variable: false,
|
|
2399
|
-
quality: 1,
|
|
2400
|
-
what: 'CSS media query locks display orientation'
|
|
2401
|
-
}
|
|
2402
|
-
},
|
|
2403
2435
|
qualWeb: {
|
|
2404
2436
|
'QW-ACT-R7': {
|
|
2405
2437
|
variable: false,
|
|
@@ -2472,21 +2504,6 @@ exports.issues = {
|
|
|
2472
2504
|
}
|
|
2473
2505
|
}
|
|
2474
2506
|
},
|
|
2475
|
-
deviceRisk: {
|
|
2476
|
-
summary: 'motion or orientation dependence possibly faulty',
|
|
2477
|
-
why: 'User may be unable to produce required device movement',
|
|
2478
|
-
wcag: '2.5.4',
|
|
2479
|
-
weight: 1,
|
|
2480
|
-
tools: {
|
|
2481
|
-
aslint: {
|
|
2482
|
-
motion_actuation: {
|
|
2483
|
-
variable: false,
|
|
2484
|
-
quality: 1,
|
|
2485
|
-
what: 'Document listens for device motion or rotation'
|
|
2486
|
-
}
|
|
2487
|
-
}
|
|
2488
|
-
}
|
|
2489
|
-
},
|
|
2490
2507
|
fontSizeAbsolute: {
|
|
2491
2508
|
summary: 'font size absolute',
|
|
2492
2509
|
why: 'User cannot adjust the document size for readability',
|
|
@@ -3636,11 +3653,6 @@ exports.issues = {
|
|
|
3636
3653
|
}
|
|
3637
3654
|
},
|
|
3638
3655
|
aslint: {
|
|
3639
|
-
color_contrast_aa: {
|
|
3640
|
-
variable: false,
|
|
3641
|
-
quality: 1,
|
|
3642
|
-
what: 'Text has contrast less than 4.5:1'
|
|
3643
|
-
},
|
|
3644
3656
|
'color_contrast_state_pseudo_classes_abstract3': {
|
|
3645
3657
|
variable: false,
|
|
3646
3658
|
quality: 1,
|
|
@@ -4493,13 +4505,6 @@ exports.issues = {
|
|
|
4493
4505
|
quality: 1,
|
|
4494
4506
|
what: 'section has no heading'
|
|
4495
4507
|
}
|
|
4496
|
-
},
|
|
4497
|
-
qualWeb: {
|
|
4498
|
-
'QW-WCAG-T9': {
|
|
4499
|
-
variable: false,
|
|
4500
|
-
quality: 1,
|
|
4501
|
-
what: 'Page is not organized using headings'
|
|
4502
|
-
}
|
|
4503
4508
|
}
|
|
4504
4509
|
}
|
|
4505
4510
|
},
|
|
@@ -5834,13 +5839,6 @@ exports.issues = {
|
|
|
5834
5839
|
what: 'Element may get invisibly focused because its outline has no thickness'
|
|
5835
5840
|
}
|
|
5836
5841
|
},
|
|
5837
|
-
qualWeb: {
|
|
5838
|
-
'QW-ACT-R62': {
|
|
5839
|
-
variable: false,
|
|
5840
|
-
quality: 1,
|
|
5841
|
-
what: 'Element in the sequential focus order has no visible focus'
|
|
5842
|
-
}
|
|
5843
|
-
},
|
|
5844
5842
|
testaro: {
|
|
5845
5843
|
focInd: {
|
|
5846
5844
|
variable: false,
|
|
@@ -6085,13 +6083,6 @@ exports.issues = {
|
|
|
6085
6083
|
quality: 1,
|
|
6086
6084
|
what: 'page has no main landmark'
|
|
6087
6085
|
}
|
|
6088
|
-
},
|
|
6089
|
-
qualWeb: {
|
|
6090
|
-
'QW-ACT-R63': {
|
|
6091
|
-
variable: false,
|
|
6092
|
-
quality: 1,
|
|
6093
|
-
what: 'Document has no landmark with non-repeated content'
|
|
6094
|
-
}
|
|
6095
6086
|
}
|
|
6096
6087
|
}
|
|
6097
6088
|
},
|
|
@@ -8512,21 +8503,6 @@ exports.issues = {
|
|
|
8512
8503
|
}
|
|
8513
8504
|
}
|
|
8514
8505
|
},
|
|
8515
|
-
overlay: {
|
|
8516
|
-
summary: 'overlay',
|
|
8517
|
-
why: 'Help for the user may be complex, inconsistent, and ineffective',
|
|
8518
|
-
wcag: '4.1',
|
|
8519
|
-
weight: 1,
|
|
8520
|
-
tools: {
|
|
8521
|
-
aslint: {
|
|
8522
|
-
overlay: {
|
|
8523
|
-
variable: false,
|
|
8524
|
-
quality: 1,
|
|
8525
|
-
what: 'Document contains a commercial overlay modifier that may fail or invalidate test results'
|
|
8526
|
-
}
|
|
8527
|
-
}
|
|
8528
|
-
}
|
|
8529
|
-
},
|
|
8530
8506
|
fatalError: {
|
|
8531
8507
|
summary: 'fatal error',
|
|
8532
8508
|
why: 'Document prevents testing for accessibility',
|