testilo 19.2.6 → 19.2.8
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 +16 -16
package/package.json
CHANGED
package/procs/score/tic37.js
CHANGED
|
@@ -2,20 +2,20 @@
|
|
|
2
2
|
tic37
|
|
3
3
|
Testilo issue classification 37
|
|
4
4
|
|
|
5
|
-
Classifies about
|
|
5
|
+
Classifies about 980 rules of the tools of Testaro into about 300 issues.
|
|
6
6
|
|
|
7
7
|
Issue properties:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
weight: weight of the issue in score computation
|
|
12
|
-
tools: tools (including Testaro) providing tests
|
|
8
|
+
summary: minimal description
|
|
9
|
+
why: expected impact on a user
|
|
10
|
+
wcag: most relevant WCAG Principle, Guideline, Success Criterion, or Technique
|
|
11
|
+
weight: weight of the issue in score computation
|
|
12
|
+
tools: tools (including Testaro) providing tests for the issue
|
|
13
13
|
|
|
14
14
|
Each property of tools specifies a rule of that tool. The key is the identifier of the rule.
|
|
15
15
|
The value is an object with these properties:
|
|
16
|
-
- variable: whether the
|
|
17
|
-
- quality: the estimated quality of the test for the rule (normally 1)
|
|
18
|
-
- what: description of a
|
|
16
|
+
- variable: whether the key is a regular expression
|
|
17
|
+
- quality: the estimated quality of the test for the rule (normally 1)
|
|
18
|
+
- what: description of a rule violation
|
|
19
19
|
*/
|
|
20
20
|
|
|
21
21
|
exports.issues = {
|
|
@@ -28,7 +28,7 @@ exports.issues = {
|
|
|
28
28
|
aslint: {
|
|
29
29
|
color_contrast_aa: {
|
|
30
30
|
variable: false,
|
|
31
|
-
quality:
|
|
31
|
+
quality: 0,
|
|
32
32
|
what: 'Text has contrast less than 4.5:1 [speculative]'
|
|
33
33
|
},
|
|
34
34
|
flickering: {
|
|
@@ -43,12 +43,12 @@ exports.issues = {
|
|
|
43
43
|
},
|
|
44
44
|
motion_actuation: {
|
|
45
45
|
variable: false,
|
|
46
|
-
quality:
|
|
46
|
+
quality: 0,
|
|
47
47
|
what: 'Document listens for device motion or rotation [speculative]'
|
|
48
48
|
},
|
|
49
49
|
overlay: {
|
|
50
50
|
variable: false,
|
|
51
|
-
quality:
|
|
51
|
+
quality: 0,
|
|
52
52
|
what: 'Document contains a commercial overlay modifier that may fail or invalidate test results [unreliable]'
|
|
53
53
|
},
|
|
54
54
|
reflow: {
|
|
@@ -61,7 +61,7 @@ exports.issues = {
|
|
|
61
61
|
axe: {
|
|
62
62
|
'css-orientation-lock': {
|
|
63
63
|
variable: false,
|
|
64
|
-
quality:
|
|
64
|
+
quality: 0,
|
|
65
65
|
what: 'CSS media query locks display orientation [unreliable]'
|
|
66
66
|
}
|
|
67
67
|
}
|
|
@@ -86,12 +86,12 @@ exports.issues = {
|
|
|
86
86
|
},
|
|
87
87
|
'QW-ACT-R62': {
|
|
88
88
|
variable: false,
|
|
89
|
-
quality:
|
|
89
|
+
quality: 0,
|
|
90
90
|
what: 'Element in the sequential focus order may have no visible focus [speculative]'
|
|
91
91
|
},
|
|
92
92
|
'QW-ACT-R63': {
|
|
93
93
|
variable: false,
|
|
94
|
-
quality:
|
|
94
|
+
quality: 0,
|
|
95
95
|
what: 'Document has no landmark with non-repeated content [invalid]'
|
|
96
96
|
},
|
|
97
97
|
'QW-WCAG-T4': {
|
|
@@ -101,7 +101,7 @@ exports.issues = {
|
|
|
101
101
|
},
|
|
102
102
|
'QW-WCAG-T9': {
|
|
103
103
|
variable: false,
|
|
104
|
-
quality:
|
|
104
|
+
quality: 0,
|
|
105
105
|
what: 'Page may fail to be organized using headings [speculative]'
|
|
106
106
|
},
|
|
107
107
|
'QW-WCAG-T15': {
|