testilo 17.0.8 → 17.0.10

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/tic36.js +171 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "17.0.8",
3
+ "version": "17.0.10",
4
4
  "description": "Prepares and processes Testaro reports",
5
5
  "main": "aim.js",
6
6
  "scripts": {
@@ -1032,6 +1032,20 @@ exports.issues = {
1032
1032
  }
1033
1033
  }
1034
1034
  },
1035
+ objectAudioRisk: {
1036
+ why: 'User may get inadequate help consuming audio content',
1037
+ wcag: '1.1.1',
1038
+ weight: 1,
1039
+ tools: {
1040
+ aslint: {
1041
+ 'audio-alternative': {
1042
+ variable: false,
1043
+ quality: 1,
1044
+ what: 'Element is inferior to an audio element if it plays audio'
1045
+ }
1046
+ }
1047
+ }
1048
+ },
1035
1049
  appletNoText: {
1036
1050
  why: 'User cannot get help on how to use a custom item',
1037
1051
  wcag: '1.1.1',
@@ -1296,6 +1310,13 @@ exports.issues = {
1296
1310
  wcag: '1.3.1',
1297
1311
  weight: 4,
1298
1312
  tools: {
1313
+ aslint: {
1314
+ 'aria-describedby-association': {
1315
+ variable: false,
1316
+ quality: 1,
1317
+ what: 'aria-describedby attribute references a missing or empty element'
1318
+ }
1319
+ },
1299
1320
  nuVal: {
1300
1321
  'The aria-describedby attribute must point to an element in the same document.': {
1301
1322
  variable: false,
@@ -2047,7 +2068,7 @@ exports.issues = {
2047
2068
  }
2048
2069
  },
2049
2070
  aslint: {
2050
- 'accessible-svgN': {
2071
+ 'accessible-svg': {
2051
2072
  variable: false,
2052
2073
  quality: 1,
2053
2074
  what: 'Element has no title, description, text, attribute label, or role description'
@@ -3820,6 +3841,13 @@ exports.issues = {
3820
3841
  wcag: '1.3.1',
3821
3842
  weight: 2,
3822
3843
  tools: {
3844
+ aslint: {
3845
+ 'headings-hierarchy': {
3846
+ variable: false,
3847
+ quality: 1,
3848
+ what: 'Heading level is illogical in its context'
3849
+ }
3850
+ },
3823
3851
  htmlcs: {
3824
3852
  'AAA.1_3_1_AAA.G141': {
3825
3853
  variable: false,
@@ -4588,6 +4616,18 @@ exports.issues = {
4588
4616
  wcag: '1.3.1',
4589
4617
  weight: 1,
4590
4618
  tools: {
4619
+ aslint: {
4620
+ 'table-missing-descriptionC': {
4621
+ variable: false,
4622
+ quality: 1,
4623
+ what: 'Element contains no caption element'
4624
+ },
4625
+ 'table-missing-descriptionE': {
4626
+ variable: false,
4627
+ quality: 1,
4628
+ what: 'Element contains a caption element, but it is empty'
4629
+ }
4630
+ },
4591
4631
  axe: {
4592
4632
  'table-fake-caption': {
4593
4633
  variable: false,
@@ -4599,7 +4639,7 @@ exports.issues = {
4599
4639
  'AAA.1_3_1.H39.3.NoCaption': {
4600
4640
  variable: false,
4601
4641
  quality: 1,
4602
- what: 'Table has no caption element'
4642
+ what: 'Element contains no caption element'
4603
4643
  }
4604
4644
  },
4605
4645
  qualWeb: {
@@ -4625,6 +4665,72 @@ exports.issues = {
4625
4665
  }
4626
4666
  }
4627
4667
  },
4668
+ tableCapSum: {
4669
+ why: 'Helper informs a user repetitively about the topic of a table',
4670
+ wcag: '1.3.1',
4671
+ weight: 2,
4672
+ tools: {
4673
+ aslint: {
4674
+ 'table-caption-summary-identical': {
4675
+ variable: false,
4676
+ quality: 1,
4677
+ what: 'Element has a summary attribute identical to its caption element'
4678
+ }
4679
+ }
4680
+ }
4681
+ },
4682
+ tableSum: {
4683
+ why: 'User cannot get help summarizing a table',
4684
+ wcag: '1.3.1',
4685
+ weight: 4,
4686
+ tools: {
4687
+ aslint: {
4688
+ 'table-missing-descriptionS': {
4689
+ variable: false,
4690
+ quality: 1,
4691
+ what: 'Element has a summary attribute, but it is empty'
4692
+ }
4693
+ }
4694
+ }
4695
+ },
4696
+ tablelabelID: {
4697
+ why: 'User cannot get help on the topic of a table',
4698
+ wcag: '1.3.1',
4699
+ weight: 4,
4700
+ tools: {
4701
+ aslint: {
4702
+ 'table-missing-descriptionLM': {
4703
+ variable: false,
4704
+ quality: 1,
4705
+ what: 'Element has a broken aria-labelledby ID'
4706
+ },
4707
+ 'table-missing-descriptionLE': {
4708
+ variable: false,
4709
+ quality: 1,
4710
+ what: 'Element has an aria-labelledby attribute, but it is empty'
4711
+ }
4712
+ }
4713
+ }
4714
+ },
4715
+ tableDescriptionID: {
4716
+ why: 'User cannot get help on the topic of a table',
4717
+ wcag: '1.3.1',
4718
+ weight: 4,
4719
+ tools: {
4720
+ aslint: {
4721
+ 'table-missing-descriptionDM': {
4722
+ variable: false,
4723
+ quality: 1,
4724
+ what: 'Element has a broken aria-describedby ID'
4725
+ },
4726
+ 'table-missing-descriptionDE': {
4727
+ variable: false,
4728
+ quality: 1,
4729
+ what: 'Element has an aria-describedby attribute, but it is empty'
4730
+ }
4731
+ }
4732
+ }
4733
+ },
4628
4734
  cellHeadersNotInferrable: {
4629
4735
  why: 'User cannot get help on relationships in a table',
4630
4736
  wcag: '1.3.1',
@@ -6414,43 +6520,78 @@ exports.issues = {
6414
6520
  }
6415
6521
  }
6416
6522
  },
6523
+ avNoText: {
6524
+ why: 'User cannot get help reading speech as text',
6525
+ wcag: '1.2.1',
6526
+ weight: 4,
6527
+ tools: {
6528
+ aslint: {
6529
+ 'audio-video-captions': {
6530
+ variable: false,
6531
+ quality: 1,
6532
+ what: 'Element is audio or video but contains no caption track element'
6533
+ }
6534
+ }
6535
+ }
6536
+ },
6417
6537
  audioNoText: {
6418
6538
  why: 'User cannot get help reading speech as text',
6419
6539
  wcag: '1.2.1',
6420
6540
  weight: 4,
6421
6541
  tools: {
6542
+ aslint: {
6543
+ 'audio-alternativeT': {
6544
+ variable: false,
6545
+ quality: 1,
6546
+ what: 'Element contains no track element'
6547
+ }
6548
+ },
6422
6549
  axe: {
6423
6550
  'audio-caption': {
6424
6551
  variable: false,
6425
6552
  quality: 1,
6426
- what: 'audio element has no captions track'
6553
+ what: 'Element has no captions track'
6427
6554
  }
6428
6555
  },
6429
6556
  qualWeb: {
6430
6557
  'QW-ACT-R26': {
6431
6558
  variable: false,
6432
6559
  quality: 1,
6433
- what: 'video element auditory content has no accessible alternative'
6560
+ what: 'Auditory content of the element has no accessible alternative'
6434
6561
  },
6435
6562
  'QW-ACT-R29': {
6436
6563
  variable: false,
6437
6564
  quality: 1,
6438
- what: 'audio element content has no text alternative'
6565
+ what: 'Content of the element has no text alternative'
6439
6566
  },
6440
6567
  'QW-ACT-R58': {
6441
6568
  variable: false,
6442
6569
  quality: 1,
6443
- what: 'audio element content has no transcript'
6570
+ what: 'Content of the element has no transcript'
6444
6571
  },
6445
6572
  'QW-ACT-R59': {
6446
6573
  variable: false,
6447
6574
  quality: 1,
6448
- what: 'audio element content is not a media alternative for text'
6575
+ what: 'Element content is not a media alternative for text'
6449
6576
  },
6450
6577
  'QW-ACT-R60': {
6451
6578
  variable: false,
6452
6579
  quality: 1,
6453
- what: 'video element auditory content has no captions'
6580
+ what: 'Auditory content of the element has no captions'
6581
+ }
6582
+ }
6583
+ }
6584
+ },
6585
+ audioTextRisk: {
6586
+ why: 'User may be unable to get help reading speech as text',
6587
+ wcag: '1.2.1',
6588
+ weight: 1,
6589
+ tools: {
6590
+ aslint: {
6591
+ 'audio-alternativeA': {
6592
+ variable: false,
6593
+ quality: 1,
6594
+ what: 'Referenced description or another text alternative may be missing'
6454
6595
  }
6455
6596
  }
6456
6597
  }
@@ -6464,7 +6605,7 @@ exports.issues = {
6464
6605
  'video-caption': {
6465
6606
  variable: false,
6466
6607
  quality: 1,
6467
- what: 'video element has no captions'
6608
+ what: 'Element has no captions'
6468
6609
  }
6469
6610
  },
6470
6611
  qualWeb: {
@@ -6562,12 +6703,26 @@ exports.issues = {
6562
6703
  'QW-ACT-R54': {
6563
6704
  variable: false,
6564
6705
  quality: 1,
6565
- what: 'video element visual-only content has no audio track alternative'
6706
+ what: 'Visual-only content of the element has no audio track alternative'
6707
+ }
6708
+ }
6709
+ }
6710
+ },
6711
+ videoAlternative: {
6712
+ why: 'User cannot get help consuming a video recording as text or speech',
6713
+ wcag: '1.2.1',
6714
+ weight: 4,
6715
+ tools: {
6716
+ aslint: {
6717
+ 'video-audio-descriptions': {
6718
+ variable: false,
6719
+ quality: 1,
6720
+ what: 'Element has neither an audio source nor a description track'
6566
6721
  }
6567
6722
  }
6568
6723
  }
6569
6724
  },
6570
- notKeyboardScrollable: {
6725
+ keyboardScroll: {
6571
6726
  why: 'No-mouse user cannot scroll an item',
6572
6727
  wcag: '2.1.1',
6573
6728
  weight: 4,
@@ -6896,6 +7051,11 @@ exports.issues = {
6896
7051
  variable: false,
6897
7052
  quality: 1,
6898
7053
  what: 'Element is obsolete'
7054
+ },
7055
+ 'audio-alternativeB': {
7056
+ variable: false,
7057
+ quality: 1,
7058
+ what: 'Element is obsolete and inferior to an audio element'
6899
7059
  }
6900
7060
  },
6901
7061
  htmlcs: {