testilo 43.2.0 → 43.2.2

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 +161 -55
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "43.2.0",
3
+ "version": "43.2.2",
4
4
  "description": "Prepares Testaro jobs and processes Testaro reports",
5
5
  "main": "call.js",
6
6
  "scripts": {
@@ -1035,7 +1035,7 @@ exports.issues = {
1035
1035
  alt_color_convey_information: {
1036
1036
  variable: false,
1037
1037
  quality: 1,
1038
- what: 'Text alternative may fail to give information provided by colors'
1038
+ what: 'Text alternative fails to give information provided by colors?'
1039
1039
  }
1040
1040
  },
1041
1041
  wave: {
@@ -1249,7 +1249,7 @@ exports.issues = {
1249
1249
  'AAA.1_1_1.H67.2': {
1250
1250
  variable: false,
1251
1251
  quality: 1,
1252
- what: 'Image marked as decorative may be informative'
1252
+ what: 'Image marked as decorative is informative?'
1253
1253
  }
1254
1254
  }
1255
1255
  }
@@ -1717,7 +1717,7 @@ exports.issues = {
1717
1717
  link_button_space_key: {
1718
1718
  variable: false,
1719
1719
  quality: 1,
1720
- what: 'Element has a button role but may fail to be keyboard-operable'
1720
+ what: 'Element has a button role but fails to be keyboard-operable?'
1721
1721
  }
1722
1722
  }
1723
1723
  }
@@ -1732,7 +1732,7 @@ exports.issues = {
1732
1732
  'AAA.2_1_2.F10': {
1733
1733
  variable: false,
1734
1734
  quality: 1,
1735
- what: 'Applet or plugin may fail to enable moving the focus away with the keyboard'
1735
+ what: 'Applet or plugin fails to enable moving the focus away with the keyboard?'
1736
1736
  }
1737
1737
  }
1738
1738
  }
@@ -1747,27 +1747,27 @@ exports.issues = {
1747
1747
  'AAA.2_1_1.G90': {
1748
1748
  variable: false,
1749
1749
  quality: 1,
1750
- what: 'Event handler functionality may not be available by keyboard'
1750
+ what: 'Event handler functionality is not available by keyboard?'
1751
1751
  },
1752
1752
  'AAA.2_1_1.SCR20.MouseOut': {
1753
1753
  variable: false,
1754
1754
  quality: 1,
1755
- what: 'Mousing-out functionality may not be available by keyboard'
1755
+ what: 'Mousing-out functionality is not available by keyboard?'
1756
1756
  },
1757
1757
  'AAA.2_1_1.SCR20.MouseOver': {
1758
1758
  variable: false,
1759
1759
  quality: 1,
1760
- what: 'Mousing-over functionality may not be available by keyboard'
1760
+ what: 'Mousing-over functionality is not available by keyboard?'
1761
1761
  },
1762
1762
  'AAA.2_1_1.SCR20.MouseDown': {
1763
1763
  variable: false,
1764
1764
  quality: 1,
1765
- what: 'Mousing-down functionality may not be available by keyboard'
1765
+ what: 'Mousing-down functionality is not available by keyboard?'
1766
1766
  },
1767
1767
  'AAA.2_1_1.SCR20.MouseUp': {
1768
1768
  variable: false,
1769
1769
  quality: 1,
1770
- what: 'Mousing-up functionality may not be available by keyboard'
1770
+ what: 'Mousing-up functionality is not available by keyboard?'
1771
1771
  }
1772
1772
  },
1773
1773
  ibm: {
@@ -1790,6 +1790,13 @@ exports.issues = {
1790
1790
  quality: 0.5,
1791
1791
  what: 'Device-dependent event handler'
1792
1792
  }
1793
+ },
1794
+ wax: {
1795
+ 'Ensure the functionality provided by an event handler for this element is available through the keyboard': {
1796
+ variable: false,
1797
+ quality: 1,
1798
+ what: 'Event handler functionality is not available by keyboard?'
1799
+ }
1793
1800
  }
1794
1801
  }
1795
1802
  },
@@ -1846,7 +1853,7 @@ exports.issues = {
1846
1853
  'AAA.1_3_1.H44.NotFormControl': {
1847
1854
  variable: false,
1848
1855
  quality: 1,
1849
- what: 'Referent of the for attribute of the label is not a form control, so may be wrong'
1856
+ what: 'Referent of the for attribute of the label is not a form control, so is wrong?'
1850
1857
  }
1851
1858
  },
1852
1859
  ibm: {
@@ -1897,7 +1904,7 @@ exports.issues = {
1897
1904
  'Possible misuse of aria-label. (If you disagree with this warning, file an issue report or send e-mail to www-validator@w3.org.)': {
1898
1905
  variable: false,
1899
1906
  quality: 1,
1900
- what: 'aria-label attribute may be misused'
1907
+ what: 'aria-label attribute is misused?'
1901
1908
  }
1902
1909
  }
1903
1910
  }
@@ -2296,6 +2303,21 @@ exports.issues = {
2296
2303
  }
2297
2304
  }
2298
2305
  },
2306
+ linkImageTextURL: {
2307
+ summary: 'text alternative of link image a URL',
2308
+ why: 'User cannot understand what a link points to',
2309
+ wcag: '2.4.4',
2310
+ weight: 3,
2311
+ tools: {
2312
+ ed11y: {
2313
+ altURLLinked: {
2314
+ variable: false,
2315
+ quality: 1,
2316
+ what: 'Text alternative of the link image is a URL'
2317
+ }
2318
+ }
2319
+ }
2320
+ },
2299
2321
  linkBrokenRisk: {
2300
2322
  summary: 'link incomplete',
2301
2323
  why: 'User may fail to reach a promised location',
@@ -2549,7 +2571,7 @@ exports.issues = {
2549
2571
  'identical-links-same-purpose': {
2550
2572
  variable: false,
2551
2573
  quality: 1,
2552
- what: 'Links with the same accessible name may serve dissimilar purposes'
2574
+ what: 'Links with the same accessible name serve dissimilar purposes?'
2553
2575
  }
2554
2576
  }
2555
2577
  }
@@ -2608,7 +2630,7 @@ exports.issues = {
2608
2630
  'AAA.1_1_1.H2.EG4': {
2609
2631
  variable: false,
2610
2632
  quality: 1,
2611
- what: 'Adjacent links, one with text and the other with a textless image, may merit combination'
2633
+ what: 'Adjacent links, one with text and the other with a textless image, merit combination?'
2612
2634
  }
2613
2635
  }
2614
2636
  }
@@ -2669,19 +2691,19 @@ exports.issues = {
2669
2691
  links_new_window_mark: {
2670
2692
  variable: false,
2671
2693
  quality: 1,
2672
- what: 'Indicator that the link opens a new window or tab may be missing'
2694
+ what: 'Indicator that the link opens a new window or tab is missing?'
2673
2695
  }
2674
2696
  },
2675
2697
  htmlcs: {
2676
2698
  'WCAG2AAA.Principle3.Guideline3_2.3_2_5.H83.3': {
2677
2699
  variable: false,
2678
2700
  quality: 1,
2679
- what: 'Link may open in a new window without notice'
2701
+ what: 'Link opens in a new window without notice?'
2680
2702
  },
2681
2703
  'AAA.3_2_5.H83.3': {
2682
2704
  variable: false,
2683
2705
  quality: 1,
2684
- what: 'Link text may fail to indicate that the link will open in a new window'
2706
+ what: 'Link text fails to indicate that the link will open in a new window?'
2685
2707
  }
2686
2708
  },
2687
2709
  testaro: {
@@ -2703,7 +2725,7 @@ exports.issues = {
2703
2725
  javascript_jumpmenu: {
2704
2726
  variable: false,
2705
2727
  quality: 1,
2706
- what: 'selection change may navigate to another page without notice'
2728
+ what: 'Selection change navigates to another page without notice?'
2707
2729
  }
2708
2730
  }
2709
2731
  }
@@ -3413,7 +3435,7 @@ exports.issues = {
3413
3435
  'QW-ACT-R40': {
3414
3436
  variable: false,
3415
3437
  quality: 1,
3416
- what: 'Zoomed text node may be clipped by a CSS overflow declaration'
3438
+ what: 'Zoomed text node is clipped by a CSS overflow declaration?'
3417
3439
  }
3418
3440
  }
3419
3441
  }
@@ -3791,6 +3813,11 @@ exports.issues = {
3791
3813
  quality: 1,
3792
3814
  what: 'Tabbable element has a non-widget role'
3793
3815
  },
3816
+ widget_tabbable_exists: {
3817
+ variable: false,
3818
+ quality: 1,
3819
+ what: 'Components with a widget role must have at least one tabbable element'
3820
+ },
3794
3821
  widget_tabbable_single: {
3795
3822
  variable: false,
3796
3823
  quality: 1,
@@ -4174,7 +4201,7 @@ exports.issues = {
4174
4201
  '^Element .+ is missing one or more of the following attributes: role.*$': {
4175
4202
  variable: true,
4176
4203
  quality: 1,
4177
- what: 'Element has no role attribute but may need one'
4204
+ what: 'Element has no role attribute but needs one?'
4178
4205
  }
4179
4206
  }
4180
4207
  }
@@ -4556,9 +4583,14 @@ exports.issues = {
4556
4583
  }
4557
4584
  },
4558
4585
  wax: {
4559
- 'This element contains a potentially faulty value in its autocomplete attribute: .': {
4586
+ 'Ensure the autocomplete attribute is correct and suitable for the form field.': {
4560
4587
  variable: false,
4561
4588
  quality: 1,
4589
+ what: 'autocomplete attribute may be incorrect or unsuitable for the form field'
4590
+ },
4591
+ '^This element contains a potentially faulty value in its autocomplete attribute: .+$': {
4592
+ variable: true,
4593
+ quality: 1,
4562
4594
  what: 'Element contains a potentially faulty value in its autocomplete attribute'
4563
4595
  }
4564
4596
  }
@@ -4765,62 +4797,62 @@ exports.issues = {
4765
4797
  'AAA.1_4_3_F24.F24.BGColour': {
4766
4798
  variable: false,
4767
4799
  quality: 1,
4768
- what: 'Inline background color may lack a complementary foreground color'
4800
+ what: 'Inline background color lacks a complementary foreground color?'
4769
4801
  },
4770
4802
  'AAA.1_4_6.G18.BgImage': {
4771
4803
  variable: false,
4772
4804
  quality: 1,
4773
- what: 'Contrast between the text and the background image may be less than 4.5:1'
4805
+ what: 'Contrast between the text and the background image is less than 4.5:1?'
4774
4806
  },
4775
4807
  'AAA.1_4_3_F24.F24.FGColour': {
4776
4808
  variable: false,
4777
4809
  quality: 1,
4778
- what: 'Inline foreground color may lack a complementary background color'
4810
+ what: 'Inline foreground color lacks a complementary background color?'
4779
4811
  },
4780
4812
  'AAA.1_4_3.G18.Abs': {
4781
4813
  variable: false,
4782
4814
  quality: 1,
4783
- what: 'Contrast between the absolutely positioned text and its background may be inadequate'
4815
+ what: 'Contrast between the absolutely positioned text and its background is inadequate?'
4784
4816
  },
4785
4817
  'AAA.1_4_6.G18.Abs': {
4786
4818
  variable: false,
4787
4819
  quality: 1,
4788
- what: 'Contrast between the absolutely positioned text and its background may be less than 4.5:1'
4820
+ what: 'Contrast between the absolutely positioned text and its background is less than 4.5:1?'
4789
4821
  },
4790
4822
  'AAA.1_4_3.G18.Alpha': {
4791
4823
  variable: false,
4792
4824
  quality: 1,
4793
- what: 'Contrast between the text and its background may be less than 4.5:1, given the transparency'
4825
+ what: 'Contrast between the text and its background is less than 4.5:1, given the transparency?'
4794
4826
  },
4795
4827
  'AAA.1_4_3.G145.Abs': {
4796
4828
  variable: false,
4797
4829
  quality: 1,
4798
- what: 'Contrast between the absolutely positioned large text and its background may be less than 3:1'
4830
+ what: 'Contrast between the absolutely positioned large text and its background is less than 3:1?'
4799
4831
  },
4800
4832
  'AAA.1_4_3.G145.Alpha': {
4801
4833
  variable: false,
4802
4834
  quality: 1,
4803
- what: 'Contrast between the text and its background may be less than 3:1, given the transparency'
4835
+ what: 'Contrast between the text and its background is less than 3:1, given the transparency?'
4804
4836
  },
4805
4837
  'AAA.1_4_3.G145.BgImage': {
4806
4838
  variable: false,
4807
4839
  quality: 1,
4808
- what: 'Contrast between the text and its background image may be less than 3:1'
4840
+ what: 'Contrast between the text and its background image is less than 3:1?'
4809
4841
  },
4810
4842
  'AAA.1_4_3.G18.BgImage': {
4811
4843
  variable: false,
4812
4844
  quality: 1,
4813
- what: 'Contrast between the text and its background image may be less than 4.5:1'
4845
+ what: 'Contrast between the text and its background image is less than 4.5:1?',
4814
4846
  },
4815
4847
  'AAA.1_4_6.G17.Abs': {
4816
4848
  variable: false,
4817
4849
  quality: 1,
4818
- what: 'Contrast between the absolutely positioned text and its background may be less than 7:1'
4850
+ what: 'Contrast between the absolutely positioned text and its background is less than 7:1?'
4819
4851
  },
4820
4852
  'AAA.1_4_6.G17.BgImage': {
4821
4853
  variable: false,
4822
4854
  quality: 1,
4823
- what: 'Contrast between the text and its background image may be less than 7:1'
4855
+ what: 'Contrast between the text and its background image is less than 7:1?'
4824
4856
  }
4825
4857
  },
4826
4858
  qualWeb: {
@@ -4842,7 +4874,7 @@ exports.issues = {
4842
4874
  style_color_misuse: {
4843
4875
  variable: false,
4844
4876
  quality: 1,
4845
- what: 'Color may be the only classifier'
4877
+ what: 'Color is the only classifier?'
4846
4878
  }
4847
4879
  }
4848
4880
  }
@@ -4857,7 +4889,7 @@ exports.issues = {
4857
4889
  'text-color-convey-information': {
4858
4890
  variable: false,
4859
4891
  quality: 1,
4860
- what: 'Text naming a color may require the ability to distinguish colors'
4892
+ what: 'Text naming a color requires the ability to distinguish colors?'
4861
4893
  }
4862
4894
  }
4863
4895
  }
@@ -5130,7 +5162,7 @@ exports.issues = {
5130
5162
  'Ensure the functionality provided by mousing over this element is available through the keyboard; for instance, using the focus event.': {
5131
5163
  variable: false,
5132
5164
  quality: 1,
5133
- what: 'Element may provide functionality via hovering but not keyboard'
5165
+ what: 'Element provides functionality via hovering but not keyboard?'
5134
5166
  }
5135
5167
  }
5136
5168
  }
@@ -5655,6 +5687,21 @@ exports.issues = {
5655
5687
  }
5656
5688
  }
5657
5689
  },
5690
+ blockQuoteShort: {
5691
+ summary: 'block quote abnormally short',
5692
+ why: 'Content can be made easier to read',
5693
+ wcag: '1.4.8',
5694
+ weight: 1,
5695
+ tools: {
5696
+ ed11y: {
5697
+ blockQuoteIsShort: {
5698
+ variable: false,
5699
+ quality: 1,
5700
+ what: 'Block quote is shorter than 25 characters'
5701
+ }
5702
+ }
5703
+ }
5704
+ },
5658
5705
  justification: {
5659
5706
  summary: 'text fully justified',
5660
5707
  why: 'Text is difficult to read',
@@ -5825,21 +5872,21 @@ exports.issues = {
5825
5872
  'p-as-heading': {
5826
5873
  variable: false,
5827
5874
  quality: 1,
5828
- what: 'Styled p element may be misused as a heading'
5875
+ what: 'Styled p element is misused as a heading?'
5829
5876
  }
5830
5877
  },
5831
5878
  ed11y: {
5832
5879
  textPossibleHeading: {
5833
5880
  variable: false,
5834
5881
  quality: 1,
5835
- what: 'Styled p element may be misused as a heading'
5882
+ what: 'Styled p element is misused as a heading?'
5836
5883
  }
5837
5884
  },
5838
5885
  htmlcs: {
5839
5886
  'AAA.1_3_1.H42': {
5840
5887
  variable: false,
5841
5888
  quality: 1,
5842
- what: 'Heading coding is not used but the element may be intended as a heading'
5889
+ what: 'Heading coding is not used but the element is intended as a heading?'
5843
5890
  }
5844
5891
  },
5845
5892
  ibm: {
@@ -5858,7 +5905,22 @@ exports.issues = {
5858
5905
  }
5859
5906
  }
5860
5907
  },
5861
- pseudoLinkRisk: {
5908
+ pseudoLinkScriptRisk: {
5909
+ summary: 'script used instead of link',
5910
+ why: 'Link may misbehave',
5911
+ wcag: '1.3.1',
5912
+ weight: 1,
5913
+ tools: {
5914
+ ibm: {
5915
+ script_onclick_misuse: {
5916
+ variable: false,
5917
+ quality: 1,
5918
+ what: 'Script is used to emulate a link'
5919
+ }
5920
+ }
5921
+ }
5922
+ },
5923
+ pseudoLinkUnderlineRisk: {
5862
5924
  summary: 'underlining dubious',
5863
5925
  why: 'User may be misled into believing some text is a link',
5864
5926
  wcag: '1.3.1',
@@ -6001,21 +6063,21 @@ exports.issues = {
6001
6063
  textPossibleList: {
6002
6064
  variable: false,
6003
6065
  quality: 1,
6004
- what: 'List may be miscoded as a paragraph sequence'
6066
+ what: 'List is miscoded as a paragraph sequence?'
6005
6067
  }
6006
6068
  },
6007
6069
  htmlcs: {
6008
6070
  'AAA.1_3_1.H48.1': {
6009
6071
  variable: false,
6010
6072
  quality: 1,
6011
- what: 'Content seems to simulate an unordered list without a ul'
6073
+ what: 'Content simulates an unordered list without a ul?'
6012
6074
  }
6013
6075
  },
6014
6076
  wave: {
6015
6077
  list_possible: {
6016
6078
  variable: false,
6017
6079
  quality: 1,
6018
- what: 'List may fail to be coded as such'
6080
+ what: 'List fails to be coded as such?'
6019
6081
  }
6020
6082
  }
6021
6083
  }
@@ -6030,7 +6092,7 @@ exports.issues = {
6030
6092
  'AAA.1_3_1.H48.2': {
6031
6093
  variable: false,
6032
6094
  quality: 1,
6033
- what: 'Ordered list may fail to be coded as such'
6095
+ what: 'Ordered list fails to be coded as such?'
6034
6096
  }
6035
6097
  }
6036
6098
  }
@@ -6050,6 +6112,36 @@ exports.issues = {
6050
6112
  }
6051
6113
  }
6052
6114
  },
6115
+ pseudoQuoteRisk: {
6116
+ summary: 'quotation miscoded?',
6117
+ why: 'User may be unable to get help identifying a quotation',
6118
+ wcag: '3.2.4',
6119
+ weight: 1,
6120
+ tools: {
6121
+ ibm: {
6122
+ text_quoted_correctly: {
6123
+ variable: false,
6124
+ quality: 1,
6125
+ what: 'Text not marked with a q or blockquote element is a quotation?'
6126
+ }
6127
+ }
6128
+ }
6129
+ },
6130
+ nonQuoteRisk: {
6131
+ summary: 'nonquotation coded as block quote?',
6132
+ why: 'User may misunderstand text as a quotation',
6133
+ wcag: '3.2.4',
6134
+ weight: 1,
6135
+ tools: {
6136
+ ibm: {
6137
+ blockquote_cite_exists: {
6138
+ variable: false,
6139
+ quality: 1,
6140
+ what: 'blockquote element is a nonquotation?'
6141
+ }
6142
+ }
6143
+ }
6144
+ },
6053
6145
  selectNoText: {
6054
6146
  summary: 'select not named',
6055
6147
  why: 'User cannot get help on the topic of a list of options',
@@ -6121,7 +6213,7 @@ exports.issues = {
6121
6213
  'AAA.1_3_1.H85.2': {
6122
6214
  variable: false,
6123
6215
  quality: 1,
6124
- what: 'Selection list may contain groups of related options that are not grouped with optgroup'
6216
+ what: 'Selection list contains groups of related options not grouped with optgroup?'
6125
6217
  }
6126
6218
  }
6127
6219
  }
@@ -6223,14 +6315,14 @@ exports.issues = {
6223
6315
  'AAA.1_3_1.H71.SameName': {
6224
6316
  variable: false,
6225
6317
  quality: 1,
6226
- what: 'Radio buttons or check boxes may require a group description via a fieldset element'
6318
+ what: 'Radio buttons or check boxes require a fieldset element?'
6227
6319
  }
6228
6320
  },
6229
6321
  wax: {
6230
6322
  'If these radio buttons or check boxes require a further group-level description, they should be contained within a fieldset element.': {
6231
6323
  variable: false,
6232
6324
  quality: 1,
6233
- what: 'Radio buttons or check boxes may require a group description via a fieldset element'
6325
+ what: 'Radio buttons or check boxes require a fieldset element?'
6234
6326
  }
6235
6327
  }
6236
6328
  }
@@ -8598,7 +8690,7 @@ exports.issues = {
8598
8690
  animationM: {
8599
8691
  variable: false,
8600
8692
  quality: 1,
8601
- what: 'Animation may fail to give user a pause, stop, or hide mechanism'
8693
+ what: 'Animation fails to provide a pause, stop, or hide mechanism?'
8602
8694
  }
8603
8695
  },
8604
8696
  testaro: {
@@ -8962,7 +9054,7 @@ exports.issues = {
8962
9054
  audio_alternativeA: {
8963
9055
  variable: false,
8964
9056
  quality: 1,
8965
- what: 'Referenced description or another text alternative may be missing'
9057
+ what: 'Referenced description or another text alternative is missing?'
8966
9058
  }
8967
9059
  }
8968
9060
  }
@@ -9035,21 +9127,28 @@ exports.issues = {
9035
9127
  wcag: '1.2.2',
9036
9128
  weight: 1,
9037
9129
  tools: {
9130
+ ibm: {
9131
+ caption_track_exists: {
9132
+ variable: false,
9133
+ quality: 1,
9134
+ what: 'video element has no text alternative for any meaningful audio content?'
9135
+ }
9136
+ },
9038
9137
  wave: {
9039
9138
  html5_video_audio: {
9040
9139
  variable: false,
9041
9140
  quality: 1,
9042
- what: 'video or audio element may have no or incorrect captions, transcript, or audio description'
9141
+ what: 'video or audio element has no or incorrect captions, transcript, or audio description?'
9043
9142
  },
9044
9143
  audio_video: {
9045
9144
  variable: false,
9046
9145
  quality: 1,
9047
- what: 'audio or video file or link may have no or incorrect captions, transcript, or audio description'
9146
+ what: 'audio or video file or link has no or incorrect captions, transcript, or audio description?'
9048
9147
  },
9049
9148
  youtube_video: {
9050
9149
  variable: false,
9051
9150
  quality: 1,
9052
- what: 'YouTube video may have no or incorrect captions'
9151
+ what: 'YouTube video has no or incorrect captions?'
9053
9152
  }
9054
9153
  }
9055
9154
  }
@@ -9145,14 +9244,14 @@ exports.issues = {
9145
9244
  'AAA.1_4_10.C32,C31,C33,C38,SCR34,G206': {
9146
9245
  variable: false,
9147
9246
  quality: 1,
9148
- what: 'Fixed-position element may force bidirectional scrolling'
9247
+ what: 'Fixed-position element forces bidirectional scrolling?'
9149
9248
  }
9150
9249
  },
9151
9250
  wax: {
9152
9251
  'This element has "position: fixed". This may require scrolling in two dimensions, which is considered a failure of this Success Criterion.': {
9153
9252
  variable: false,
9154
9253
  quality: 1,
9155
- what: 'Fixed-position element may require scrolling in two dimensions'
9254
+ what: 'Fixed-position element requires scrolling in two dimensions?'
9156
9255
  }
9157
9256
  }
9158
9257
  }
@@ -9285,6 +9384,13 @@ exports.issues = {
9285
9384
  quality: 1,
9286
9385
  what: 'Submit button not provided'
9287
9386
  }
9387
+ },
9388
+ wax: {
9389
+ 'This form does not contain a submit button, which creates issues for those who cannot submit the form using the keyboard. Submit buttons are INPUT elements with type attribute "submit" or "image", or BUTTON elements with type "submit" or omitted/invalid.': {
9390
+ variable: false,
9391
+ quality: 1,
9392
+ what: 'Form has no ubmit button'
9393
+ }
9288
9394
  }
9289
9395
  }
9290
9396
  },
@@ -9328,7 +9434,7 @@ exports.issues = {
9328
9434
  noscript: {
9329
9435
  variable: false,
9330
9436
  quality: 1,
9331
- what: 'noscript element may fail to contain an accessible equivalent or alternative'
9437
+ what: 'noscript element fails to contain an accessible equivalent or alternative?'
9332
9438
  }
9333
9439
  }
9334
9440
  }
@@ -9366,7 +9472,7 @@ exports.issues = {
9366
9472
  'The inputmode attribute is not supported in all browsers. Please be sure to test, and consider using a polyfill.': {
9367
9473
  variable: false,
9368
9474
  quality: 1,
9369
- what: 'inputmode attribute may be unsupported by some browsers'
9475
+ what: 'inputmode attribute is unsupported by some browsers'
9370
9476
  }
9371
9477
  }
9372
9478
  }