testilo 51.2.0 → 51.2.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 +32 -0
package/package.json
CHANGED
package/procs/score/tic.js
CHANGED
|
@@ -3655,6 +3655,28 @@ exports.issues = {
|
|
|
3655
3655
|
}
|
|
3656
3656
|
}
|
|
3657
3657
|
},
|
|
3658
|
+
baseElementMissing: {
|
|
3659
|
+
summary: 'base element missing where required',
|
|
3660
|
+
why: 'Browser cannot find a needed external resource',
|
|
3661
|
+
wcag: '1.3.1',
|
|
3662
|
+
weight: 4,
|
|
3663
|
+
tools: {
|
|
3664
|
+
nuVal: {
|
|
3665
|
+
'The base element must come before any link or script elements in the document.': {
|
|
3666
|
+
variable: false,
|
|
3667
|
+
quality: 1,
|
|
3668
|
+
what: 'Element is a link or script element requiring a preceding base element but has none'
|
|
3669
|
+
}
|
|
3670
|
+
},
|
|
3671
|
+
nuVnu: {
|
|
3672
|
+
'The base element must come before any link or script elements in the document.': {
|
|
3673
|
+
variable: false,
|
|
3674
|
+
quality: 1,
|
|
3675
|
+
what: 'Element is a link or script element requiring a preceding base element but has none'
|
|
3676
|
+
}
|
|
3677
|
+
}
|
|
3678
|
+
}
|
|
3679
|
+
},
|
|
3658
3680
|
linkElementMisplaced: {
|
|
3659
3681
|
summary: 'link element invalid',
|
|
3660
3682
|
why: 'Document fails to get a needed external resource',
|
|
@@ -4265,6 +4287,11 @@ exports.issues = {
|
|
|
4265
4287
|
variable: false,
|
|
4266
4288
|
quality: 1,
|
|
4267
4289
|
what: 'element is li in a listbox or list but has no group or option role'
|
|
4290
|
+
},
|
|
4291
|
+
'An element with role=group must not be a descendant of an element with role=list.': {
|
|
4292
|
+
variable: false,
|
|
4293
|
+
quality: 1,
|
|
4294
|
+
what: 'element has a group role but has an ancestor with a list role'
|
|
4268
4295
|
}
|
|
4269
4296
|
},
|
|
4270
4297
|
nuVnu: {
|
|
@@ -4287,6 +4314,11 @@ exports.issues = {
|
|
|
4287
4314
|
variable: false,
|
|
4288
4315
|
quality: 1,
|
|
4289
4316
|
what: 'element is li in a listbox or list but has no group or option role'
|
|
4317
|
+
},
|
|
4318
|
+
'An element with role=group must not be a descendant of an element with role=list.': {
|
|
4319
|
+
variable: false,
|
|
4320
|
+
quality: 1,
|
|
4321
|
+
what: 'element has a group role but has an ancestor with a list role'
|
|
4290
4322
|
}
|
|
4291
4323
|
}
|
|
4292
4324
|
}
|