testilo 32.0.2 → 32.2.0
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/README.md +1 -1
- package/package.json +1 -1
- package/procs/score/tic40.js +30 -13
- package/script.js +1 -1
package/README.md
CHANGED
|
@@ -326,7 +326,7 @@ The `call` module will save the script as a JSON file in the `scripts` subdirect
|
|
|
326
326
|
|
|
327
327
|
The `script` module will use the value of the `SEND_REPORT_TO` environment variable as the value of the `sendReportTo` property of the script, if that variable exists, and otherwise will leave that property with an empty-string value.
|
|
328
328
|
|
|
329
|
-
When the `script` module creates a script for you, it does not ask you for all of the other options that the script may require. Instead, it chooses default options. For example, it sets the values of `isolate` and `strict` to `true
|
|
329
|
+
When the `script` module creates a script for you, it does not ask you for all of the other options that the script may require. Instead, it chooses default options. For example, it sets the values of `isolate` and `strict` to `true`, and it sets the `withNewContent` property of the `ibm` tool to `false` to prevent occasional infinite loops or crashes when targets cause HTTP2 protocol errors. After you invoke `script`, you can edit the script that it creates to revise options.
|
|
330
330
|
|
|
331
331
|
### Merge
|
|
332
332
|
|
package/package.json
CHANGED
package/procs/score/tic40.js
CHANGED
|
@@ -28,18 +28,6 @@ exports.issues = {
|
|
|
28
28
|
wcag: '',
|
|
29
29
|
weight: 0,
|
|
30
30
|
tools: {
|
|
31
|
-
alfa: {
|
|
32
|
-
r66: {
|
|
33
|
-
variable: false,
|
|
34
|
-
quality: 1,
|
|
35
|
-
what: 'Text contrast less than AAA requires [invalid]'
|
|
36
|
-
},
|
|
37
|
-
r69: {
|
|
38
|
-
variable: false,
|
|
39
|
-
quality: 1,
|
|
40
|
-
what: 'Text outside widget has subminimum contrast [invalid, reported as issue 1582]'
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
31
|
aslint: {
|
|
44
32
|
color_contrast_aa: {
|
|
45
33
|
variable: false,
|
|
@@ -3793,6 +3781,13 @@ exports.issues = {
|
|
|
3793
3781
|
wcag: '1.4.3',
|
|
3794
3782
|
weight: 4,
|
|
3795
3783
|
tools: {
|
|
3784
|
+
alfa: {
|
|
3785
|
+
r69: {
|
|
3786
|
+
variable: false,
|
|
3787
|
+
quality: 1,
|
|
3788
|
+
what: 'Text outside widget has subminimum contrast'
|
|
3789
|
+
}
|
|
3790
|
+
},
|
|
3796
3791
|
aslint: {
|
|
3797
3792
|
'color_contrast_state_pseudo_classes_abstract3': {
|
|
3798
3793
|
variable: false,
|
|
@@ -3888,6 +3883,13 @@ exports.issues = {
|
|
|
3888
3883
|
wcag: '1.4.6',
|
|
3889
3884
|
weight: 1,
|
|
3890
3885
|
tools: {
|
|
3886
|
+
alfa: {
|
|
3887
|
+
r66: {
|
|
3888
|
+
variable: false,
|
|
3889
|
+
quality: 1,
|
|
3890
|
+
what: 'Text contrast less than AAA requires'
|
|
3891
|
+
}
|
|
3892
|
+
},
|
|
3891
3893
|
aslint: {
|
|
3892
3894
|
'color_contrast_aaa': {
|
|
3893
3895
|
variable: false,
|
|
@@ -8599,8 +8601,23 @@ exports.issues = {
|
|
|
8599
8601
|
}
|
|
8600
8602
|
},
|
|
8601
8603
|
notValidatable: {
|
|
8604
|
+
summary: 'item makes testing inconclusive',
|
|
8605
|
+
why: 'Item prevents a conclusive accessibility test',
|
|
8606
|
+
wcag: '4.1',
|
|
8607
|
+
weight: 1,
|
|
8608
|
+
tools: {
|
|
8609
|
+
alfa: {
|
|
8610
|
+
cantTell: {
|
|
8611
|
+
variable: false,
|
|
8612
|
+
quality: 1,
|
|
8613
|
+
what: 'Test could not give a conclusive result'
|
|
8614
|
+
}
|
|
8615
|
+
}
|
|
8616
|
+
}
|
|
8617
|
+
},
|
|
8618
|
+
svgNotValidatable: {
|
|
8602
8619
|
summary: 'SVG version not 1.1',
|
|
8603
|
-
why: 'Item prevents testing for accessibility',
|
|
8620
|
+
why: 'Item prevents testing image for accessibility',
|
|
8604
8621
|
wcag: '4.1',
|
|
8605
8622
|
weight: 1,
|
|
8606
8623
|
tools: {
|
package/script.js
CHANGED
|
@@ -146,7 +146,7 @@ exports.script = (id, what, options = {}) => {
|
|
|
146
146
|
}
|
|
147
147
|
else if (toolID === 'ibm') {
|
|
148
148
|
toolAct.withItems = true;
|
|
149
|
-
toolAct.withNewContent =
|
|
149
|
+
toolAct.withNewContent = false;
|
|
150
150
|
}
|
|
151
151
|
else if (toolID === 'qualWeb') {
|
|
152
152
|
toolAct.withNewContent = false;
|