testilo 41.5.9 → 41.5.11
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/difgest/tfp40/index.js +1 -1
- package/procs/score/tic49.js +10 -0
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
// Module to keep secrets.
|
|
28
28
|
require('dotenv').config();
|
|
29
29
|
// Module to classify tool rules into issues
|
|
30
|
-
const {issues} = require('../../score/
|
|
30
|
+
const {issues} = require('../../score/tic49');
|
|
31
31
|
// Module to process files.
|
|
32
32
|
const fs = require('fs/promises');
|
|
33
33
|
// Utility module.
|
package/procs/score/tic49.js
CHANGED
|
@@ -3140,6 +3140,11 @@ exports.issues = {
|
|
|
3140
3140
|
variable: false,
|
|
3141
3141
|
quality: 1,
|
|
3142
3142
|
what: 'Element has an as attribute but no rel attribute with preload or modulepreload as its value'
|
|
3143
|
+
},
|
|
3144
|
+
'A link element with a color attribute must have a rel attribute that contains the value mask-icon.': {
|
|
3145
|
+
variable: false,
|
|
3146
|
+
quality: 1,
|
|
3147
|
+
what: 'Element has a color attribute but no rel attribute with mask-icon as its value'
|
|
3143
3148
|
}
|
|
3144
3149
|
}
|
|
3145
3150
|
}
|
|
@@ -5883,6 +5888,11 @@ exports.issues = {
|
|
|
5883
5888
|
variable: false,
|
|
5884
5889
|
quality: 1,
|
|
5885
5890
|
what: 'Complex table is missing headers attributes of cells'
|
|
5891
|
+
},
|
|
5892
|
+
'AAA.1_3_1.H43,H63': {
|
|
5893
|
+
variable: false,
|
|
5894
|
+
quality: 1,
|
|
5895
|
+
what: 'Relationship among td and th elements of the table is not defined'
|
|
5886
5896
|
}
|
|
5887
5897
|
},
|
|
5888
5898
|
ibm: {
|