testilo 52.0.0 → 52.1.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/procs/score/tic.js +42 -13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "52.0.0",
3
+ "version": "52.1.0",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -6444,7 +6444,7 @@ exports.issues = {
6444
6444
  weight: 1,
6445
6445
  tools: {
6446
6446
  ed11y: {
6447
- blockQuoteIsShort: {
6447
+ blockquoteIsShort: {
6448
6448
  variable: false,
6449
6449
  quality: 1,
6450
6450
  what: 'Block quote is shorter than 25 characters'
@@ -6895,31 +6895,36 @@ exports.issues = {
6895
6895
  'select-name': {
6896
6896
  variable: false,
6897
6897
  quality: 1,
6898
- what: 'select element has no accessible name'
6898
+ what: 'Element is select but has no accessible name'
6899
6899
  }
6900
6900
  },
6901
6901
  htmlcs: {
6902
6902
  'E-AAA.4_1_2.H91.Select.Name': {
6903
6903
  variable: false,
6904
6904
  quality: 1,
6905
- what: 'Select element has no accessible name'
6905
+ what: 'Element is select but has no accessible name'
6906
+ },
6907
+ 'E-WCAG2AAA.Principle4.Guideline4_1.4_1_2.H91.Select.Name': {
6908
+ variable: false,
6909
+ quality: 1,
6910
+ what: 'select element has no accessible name'
6906
6911
  },
6907
6912
  'E-AAA.4_1_2.H91.Select.Value': {
6908
6913
  variable: false,
6909
6914
  quality: 1,
6910
- what: 'Select element value has no accessible name'
6915
+ what: 'Element is select but its value has no accessible name'
6911
6916
  },
6912
6917
  'W-WCAG2AAA.Principle4.Guideline4_1.4_1_2.H91.Select.Value': {
6913
6918
  variable: false,
6914
6919
  quality: 1,
6915
- what: 'Select element value has no accessible name'
6920
+ what: 'Element is select but its value has no accessible name'
6916
6921
  }
6917
6922
  },
6918
6923
  wave: {
6919
6924
  select_missing_label: {
6920
6925
  variable: false,
6921
6926
  quality: 1,
6922
- what: 'Select element has no label'
6927
+ what: 'Element is select but has no label'
6923
6928
  }
6924
6929
  }
6925
6930
  }
@@ -6934,14 +6939,14 @@ exports.issues = {
6934
6939
  'Element option without attribute label must not be empty.': {
6935
6940
  variable: false,
6936
6941
  quality: 1,
6937
- what: 'option element is empty but has no label attribute'
6942
+ what: 'Element is option with no label attribute but is empty'
6938
6943
  }
6939
6944
  },
6940
6945
  nuVnu: {
6941
6946
  'Element option without attribute label must not be empty.': {
6942
6947
  variable: false,
6943
6948
  quality: 1,
6944
- what: 'option element is empty but has no label attribute'
6949
+ what: 'Element is option with no label attribute but is empty'
6945
6950
  }
6946
6951
  }
6947
6952
  }
@@ -8918,11 +8923,6 @@ exports.issues = {
8918
8923
  variable: false,
8919
8924
  quality: 1,
8920
8925
  what: 'ARIA hidden element is focusable or contains a focusable element'
8921
- },
8922
- 'presentation-role-conflict': {
8923
- variable: false,
8924
- quality: 1,
8925
- what: 'Element has a none/presentation role but is focusable or has a global ARIA state or property'
8926
8926
  }
8927
8927
  },
8928
8928
  ibm: {
@@ -9802,6 +9802,35 @@ exports.issues = {
9802
9802
  }
9803
9803
  }
9804
9804
  },
9805
+ presentationGlobal: {
9806
+ summary: 'global ARIA attribute nullifies presentation role',
9807
+ why: 'User encounters content intended to be hidden',
9808
+ wcag: '1.3.1',
9809
+ weight: 1,
9810
+ tools: {
9811
+ axe: {
9812
+ 'presentation-role-conflict': {
9813
+ variable: false,
9814
+ quality: 1,
9815
+ what: 'Element has a none/presentation role but is focusable or has a global ARIA state or property'
9816
+ }
9817
+ },
9818
+ nuVal: {
9819
+ 'The presentation role does not affect elements that have global ARIA attributes.': {
9820
+ variable: false,
9821
+ quality: 1,
9822
+ what: 'Element has a presentation role but also a global ARIA attribute that nullifies the role'
9823
+ }
9824
+ },
9825
+ nuVnu: {
9826
+ 'The presentation role does not affect elements that have global ARIA attributes.': {
9827
+ variable: false,
9828
+ quality: 1,
9829
+ what: 'Element has a presentation role but also a global ARIA attribute that nullifies the role'
9830
+ }
9831
+ }
9832
+ }
9833
+ },
9805
9834
  presentationTabIndexed: {
9806
9835
  summary: 'tabindex attribute nullifies presentation role',
9807
9836
  why: 'User encounters content intended to be hidden',