testilo 42.2.3 → 42.2.5
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/tic50.js +37 -29
package/package.json
CHANGED
package/procs/score/tic50.js
CHANGED
|
@@ -2732,9 +2732,24 @@ exports.issues = {
|
|
|
2732
2732
|
}
|
|
2733
2733
|
}
|
|
2734
2734
|
},
|
|
2735
|
+
buttonNoContent: {
|
|
2736
|
+
summary: 'button name not visible',
|
|
2737
|
+
why: 'User cannot get help explaining a button',
|
|
2738
|
+
wcag: '4.1.2',
|
|
2739
|
+
weight: 1,
|
|
2740
|
+
tools: {
|
|
2741
|
+
aslint: {
|
|
2742
|
+
empty_button_description: {
|
|
2743
|
+
variable: false,
|
|
2744
|
+
quality: 1,
|
|
2745
|
+
what: 'button element has no visible accessible name'
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
}
|
|
2749
|
+
},
|
|
2735
2750
|
buttonNoText: {
|
|
2736
2751
|
summary: 'button not named',
|
|
2737
|
-
why: 'User cannot get help
|
|
2752
|
+
why: 'User cannot get help explaining a button',
|
|
2738
2753
|
wcag: '4.1.2',
|
|
2739
2754
|
weight: 4,
|
|
2740
2755
|
tools: {
|
|
@@ -2745,13 +2760,6 @@ exports.issues = {
|
|
|
2745
2760
|
what: 'button element has no accessible name'
|
|
2746
2761
|
}
|
|
2747
2762
|
},
|
|
2748
|
-
aslint: {
|
|
2749
|
-
empty_button_description: {
|
|
2750
|
-
variable: false,
|
|
2751
|
-
quality: 1,
|
|
2752
|
-
what: 'button element has no visible accessible name'
|
|
2753
|
-
}
|
|
2754
|
-
},
|
|
2755
2763
|
axe: {
|
|
2756
2764
|
'aria-command-name': {
|
|
2757
2765
|
variable: false,
|
|
@@ -4083,20 +4091,6 @@ exports.issues = {
|
|
|
4083
4091
|
wcag: '4.1.2',
|
|
4084
4092
|
weight: 4,
|
|
4085
4093
|
tools: {
|
|
4086
|
-
axe: {
|
|
4087
|
-
'aria-required-attr': {
|
|
4088
|
-
variable: false,
|
|
4089
|
-
quality: 1,
|
|
4090
|
-
what: 'Required ARIA attribute is not provided'
|
|
4091
|
-
}
|
|
4092
|
-
},
|
|
4093
|
-
ibm: {
|
|
4094
|
-
aria_attribute_required: {
|
|
4095
|
-
variable: false,
|
|
4096
|
-
quality: 1,
|
|
4097
|
-
what: 'Element does not have an ARIA attribute required by its role'
|
|
4098
|
-
}
|
|
4099
|
-
},
|
|
4100
4094
|
nuVal: {
|
|
4101
4095
|
'^Element image is missing required attribute (?:height|width).*$': {
|
|
4102
4096
|
variable: true,
|
|
@@ -4123,13 +4117,6 @@ exports.issues = {
|
|
|
4123
4117
|
quality: 1,
|
|
4124
4118
|
what: 'Element is missing a required attribute'
|
|
4125
4119
|
}
|
|
4126
|
-
},
|
|
4127
|
-
wax: {
|
|
4128
|
-
'Include required ARIA attributes for elements with ARIA roles.': {
|
|
4129
|
-
variable: false,
|
|
4130
|
-
quality: 1,
|
|
4131
|
-
what: 'Element does not have an ARIA attribute required by the role of the element'
|
|
4132
|
-
}
|
|
4133
4120
|
}
|
|
4134
4121
|
}
|
|
4135
4122
|
},
|
|
@@ -4176,6 +4163,20 @@ exports.issues = {
|
|
|
4176
4163
|
what: 'Element does not have all required states and properties'
|
|
4177
4164
|
}
|
|
4178
4165
|
},
|
|
4166
|
+
axe: {
|
|
4167
|
+
'aria-required-attr': {
|
|
4168
|
+
variable: false,
|
|
4169
|
+
quality: 1,
|
|
4170
|
+
what: 'Required ARIA attribute is not provided'
|
|
4171
|
+
}
|
|
4172
|
+
},
|
|
4173
|
+
ibm: {
|
|
4174
|
+
aria_attribute_required: {
|
|
4175
|
+
variable: false,
|
|
4176
|
+
quality: 1,
|
|
4177
|
+
what: 'Element does not have an ARIA attribute required by its role'
|
|
4178
|
+
}
|
|
4179
|
+
},
|
|
4179
4180
|
nuVal: {
|
|
4180
4181
|
'^Element .+ is missing required attribute aria-.+$': {
|
|
4181
4182
|
variable: true,
|
|
@@ -4189,6 +4190,13 @@ exports.issues = {
|
|
|
4189
4190
|
quality: 1,
|
|
4190
4191
|
what: 'Element with a role attribute does not have the required states and properties'
|
|
4191
4192
|
}
|
|
4193
|
+
},
|
|
4194
|
+
wax: {
|
|
4195
|
+
'Include required ARIA attributes for elements with ARIA roles.': {
|
|
4196
|
+
variable: false,
|
|
4197
|
+
quality: 1,
|
|
4198
|
+
what: 'Element does not have an ARIA attribute required by the role of the element'
|
|
4199
|
+
}
|
|
4192
4200
|
}
|
|
4193
4201
|
}
|
|
4194
4202
|
},
|