testilo 17.0.7 → 17.0.8
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/tic36.js +69 -8
package/package.json
CHANGED
package/procs/score/tic36.js
CHANGED
|
@@ -357,26 +357,33 @@ exports.issues = {
|
|
|
357
357
|
r28: {
|
|
358
358
|
variable: false,
|
|
359
359
|
quality: 1,
|
|
360
|
-
what: 'image input
|
|
360
|
+
what: 'Element is an image input but has no accessible name'
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
aslint: {
|
|
364
|
+
'input-image-missing-alt': {
|
|
365
|
+
variable: false,
|
|
366
|
+
quality: 1,
|
|
367
|
+
what: 'Element is an image input but its text alternative is missing or empty'
|
|
361
368
|
}
|
|
362
369
|
},
|
|
363
370
|
htmlcs: {
|
|
364
371
|
'AAA.4_1_2.H91.InputImage.Name': {
|
|
365
372
|
variable: false,
|
|
366
373
|
quality: 1,
|
|
367
|
-
what: 'image input has no accessible name'
|
|
374
|
+
what: 'Element is an image input but has no accessible name'
|
|
368
375
|
}
|
|
369
376
|
},
|
|
370
377
|
ibm: {
|
|
371
378
|
WCAG20_Input_ExplicitLabelImage: {
|
|
372
379
|
variable: false,
|
|
373
380
|
quality: 1,
|
|
374
|
-
what: 'input
|
|
381
|
+
what: 'Element is an input of type image but has no text alternative'
|
|
375
382
|
},
|
|
376
383
|
imagebutton_alt_exists: {
|
|
377
384
|
variable: false,
|
|
378
385
|
quality: 1,
|
|
379
|
-
what: 'input
|
|
386
|
+
what: 'Element is an input of type image but has no text alternative'
|
|
380
387
|
}
|
|
381
388
|
}
|
|
382
389
|
}
|
|
@@ -528,6 +535,20 @@ exports.issues = {
|
|
|
528
535
|
}
|
|
529
536
|
}
|
|
530
537
|
},
|
|
538
|
+
imageTextRisk: {
|
|
539
|
+
why: 'Helper may describe an image inadequately',
|
|
540
|
+
wcag: '1.1.1',
|
|
541
|
+
weight: 1,
|
|
542
|
+
tools: {
|
|
543
|
+
aslint: {
|
|
544
|
+
'general-alt': {
|
|
545
|
+
variable: false,
|
|
546
|
+
quality: 1,
|
|
547
|
+
what: 'Image may be better described by a revised text alternative and an aria-label attribute'
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
},
|
|
531
552
|
imageNoSource: {
|
|
532
553
|
why: 'Image to be shown cannot be found',
|
|
533
554
|
wcag: '1.3.1',
|
|
@@ -997,11 +1018,37 @@ exports.issues = {
|
|
|
997
1018
|
}
|
|
998
1019
|
}
|
|
999
1020
|
},
|
|
1021
|
+
objectTextRisk: {
|
|
1022
|
+
why: 'Helper may explain a custom item inadequately',
|
|
1023
|
+
wcag: '1.1.1',
|
|
1024
|
+
weight: 1,
|
|
1025
|
+
tools: {
|
|
1026
|
+
aslint: {
|
|
1027
|
+
'object-general-alt': {
|
|
1028
|
+
variable: false,
|
|
1029
|
+
quality: 1,
|
|
1030
|
+
what: 'Text of the object may better explain it if revised'
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
},
|
|
1000
1035
|
appletNoText: {
|
|
1001
1036
|
why: 'User cannot get help on how to use a custom item',
|
|
1002
1037
|
wcag: '1.1.1',
|
|
1003
1038
|
weight: 4,
|
|
1004
1039
|
tools: {
|
|
1040
|
+
aslint: {
|
|
1041
|
+
'applet-missing-alt': {
|
|
1042
|
+
variable: false,
|
|
1043
|
+
quality: 1,
|
|
1044
|
+
what: 'Text alternative of the applet is missing or empty'
|
|
1045
|
+
},
|
|
1046
|
+
'applet-missing-body': {
|
|
1047
|
+
variable: false,
|
|
1048
|
+
quality: 1,
|
|
1049
|
+
what: 'Content of the applet is missing or empty'
|
|
1050
|
+
}
|
|
1051
|
+
},
|
|
1005
1052
|
qualWeb: {
|
|
1006
1053
|
'QW-WCAG-T11': {
|
|
1007
1054
|
variable: false,
|
|
@@ -1405,6 +1452,13 @@ exports.issues = {
|
|
|
1405
1452
|
what: 'Link has no accessible name'
|
|
1406
1453
|
}
|
|
1407
1454
|
},
|
|
1455
|
+
aslint: {
|
|
1456
|
+
'img-empty-alt-in-link': {
|
|
1457
|
+
variable: false,
|
|
1458
|
+
quality: 1,
|
|
1459
|
+
what: 'Element is an image in a link but has no text alternative'
|
|
1460
|
+
}
|
|
1461
|
+
},
|
|
1408
1462
|
axe: {
|
|
1409
1463
|
'link-name': {
|
|
1410
1464
|
variable: false,
|
|
@@ -3532,11 +3586,18 @@ exports.issues = {
|
|
|
3532
3586
|
wcag: '1.3.1',
|
|
3533
3587
|
weight: 1,
|
|
3534
3588
|
tools: {
|
|
3589
|
+
aslint: {
|
|
3590
|
+
'img-empty-alt-with-empty-title': {
|
|
3591
|
+
variable: false,
|
|
3592
|
+
quality: 1,
|
|
3593
|
+
what: 'Element has an empty alt attribute but a nonempty title attribute'
|
|
3594
|
+
}
|
|
3595
|
+
},
|
|
3535
3596
|
htmlcs: {
|
|
3536
3597
|
'AAA.1_1_1.H67.1': {
|
|
3537
3598
|
variable: false,
|
|
3538
3599
|
quality: 1,
|
|
3539
|
-
what: '
|
|
3600
|
+
what: 'Element has an empty alt attribute but has a nonempty title attribute'
|
|
3540
3601
|
}
|
|
3541
3602
|
},
|
|
3542
3603
|
ibm: {
|
|
@@ -6353,7 +6414,7 @@ exports.issues = {
|
|
|
6353
6414
|
}
|
|
6354
6415
|
}
|
|
6355
6416
|
},
|
|
6356
|
-
|
|
6417
|
+
audioNoText: {
|
|
6357
6418
|
why: 'User cannot get help reading speech as text',
|
|
6358
6419
|
wcag: '1.2.1',
|
|
6359
6420
|
weight: 4,
|
|
@@ -6394,7 +6455,7 @@ exports.issues = {
|
|
|
6394
6455
|
}
|
|
6395
6456
|
}
|
|
6396
6457
|
},
|
|
6397
|
-
|
|
6458
|
+
videoNoText: {
|
|
6398
6459
|
why: 'User cannot get help reading video content as text',
|
|
6399
6460
|
wcag: '1.2.2',
|
|
6400
6461
|
weight: 4,
|
|
@@ -6440,7 +6501,7 @@ exports.issues = {
|
|
|
6440
6501
|
}
|
|
6441
6502
|
}
|
|
6442
6503
|
},
|
|
6443
|
-
|
|
6504
|
+
videoNoTranscript: {
|
|
6444
6505
|
why: 'User cannot get help reading video content as text',
|
|
6445
6506
|
wcag: '1.2.2',
|
|
6446
6507
|
weight: 4,
|