testilo 44.0.0 → 44.1.1
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/tic.js +10 -0
- package/script.js +7 -1
package/package.json
CHANGED
package/procs/score/tic.js
CHANGED
|
@@ -8641,6 +8641,11 @@ exports.issues = {
|
|
|
8641
8641
|
variable: false,
|
|
8642
8642
|
quality: 1,
|
|
8643
8643
|
what: 'Page includes more than 1 visible main element'
|
|
8644
|
+
},
|
|
8645
|
+
'A document should not include more than one visible element with role=main.': {
|
|
8646
|
+
variable: false,
|
|
8647
|
+
quality: 1,
|
|
8648
|
+
what: 'Page includes more than 1 visible element with a main role'
|
|
8644
8649
|
}
|
|
8645
8650
|
},
|
|
8646
8651
|
nuVnu: {
|
|
@@ -8648,6 +8653,11 @@ exports.issues = {
|
|
|
8648
8653
|
variable: false,
|
|
8649
8654
|
quality: 1,
|
|
8650
8655
|
what: 'Page includes more than 1 visible main element'
|
|
8656
|
+
},
|
|
8657
|
+
'A document should not include more than one visible element with role=main.': {
|
|
8658
|
+
variable: false,
|
|
8659
|
+
quality: 1,
|
|
8660
|
+
what: 'Page includes more than 1 visible element with a main role'
|
|
8651
8661
|
}
|
|
8652
8662
|
},
|
|
8653
8663
|
wax: {
|
package/script.js
CHANGED
|
@@ -219,7 +219,13 @@ exports.script = (id, what, deviceID, options = {}) => {
|
|
|
219
219
|
}
|
|
220
220
|
else if (toolID === 'ibm') {
|
|
221
221
|
toolAct.withItems = true;
|
|
222
|
-
toolAct.withNewContent =
|
|
222
|
+
toolAct.withNewContent = false;
|
|
223
|
+
}
|
|
224
|
+
else if (toolID === 'nuVal') {
|
|
225
|
+
toolAct.withSource = false;
|
|
226
|
+
}
|
|
227
|
+
else if (toolID === 'nuVnu') {
|
|
228
|
+
toolAct.withSource = false;
|
|
223
229
|
}
|
|
224
230
|
else if (toolID === 'qualWeb') {
|
|
225
231
|
toolAct.withNewContent = false;
|