testilo 43.2.0 → 43.2.1

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 +155 -54
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "43.2.0",
3
+ "version": "43.2.1",
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
  }
@@ -4765,62 +4792,62 @@ exports.issues = {
4765
4792
  'AAA.1_4_3_F24.F24.BGColour': {
4766
4793
  variable: false,
4767
4794
  quality: 1,
4768
- what: 'Inline background color may lack a complementary foreground color'
4795
+ what: 'Inline background color lacks a complementary foreground color?'
4769
4796
  },
4770
4797
  'AAA.1_4_6.G18.BgImage': {
4771
4798
  variable: false,
4772
4799
  quality: 1,
4773
- what: 'Contrast between the text and the background image may be less than 4.5:1'
4800
+ what: 'Contrast between the text and the background image is less than 4.5:1?'
4774
4801
  },
4775
4802
  'AAA.1_4_3_F24.F24.FGColour': {
4776
4803
  variable: false,
4777
4804
  quality: 1,
4778
- what: 'Inline foreground color may lack a complementary background color'
4805
+ what: 'Inline foreground color lacks a complementary background color?'
4779
4806
  },
4780
4807
  'AAA.1_4_3.G18.Abs': {
4781
4808
  variable: false,
4782
4809
  quality: 1,
4783
- what: 'Contrast between the absolutely positioned text and its background may be inadequate'
4810
+ what: 'Contrast between the absolutely positioned text and its background is inadequate?'
4784
4811
  },
4785
4812
  'AAA.1_4_6.G18.Abs': {
4786
4813
  variable: false,
4787
4814
  quality: 1,
4788
- what: 'Contrast between the absolutely positioned text and its background may be less than 4.5:1'
4815
+ what: 'Contrast between the absolutely positioned text and its background is less than 4.5:1?'
4789
4816
  },
4790
4817
  'AAA.1_4_3.G18.Alpha': {
4791
4818
  variable: false,
4792
4819
  quality: 1,
4793
- what: 'Contrast between the text and its background may be less than 4.5:1, given the transparency'
4820
+ what: 'Contrast between the text and its background is less than 4.5:1, given the transparency?'
4794
4821
  },
4795
4822
  'AAA.1_4_3.G145.Abs': {
4796
4823
  variable: false,
4797
4824
  quality: 1,
4798
- what: 'Contrast between the absolutely positioned large text and its background may be less than 3:1'
4825
+ what: 'Contrast between the absolutely positioned large text and its background is less than 3:1?'
4799
4826
  },
4800
4827
  'AAA.1_4_3.G145.Alpha': {
4801
4828
  variable: false,
4802
4829
  quality: 1,
4803
- what: 'Contrast between the text and its background may be less than 3:1, given the transparency'
4830
+ what: 'Contrast between the text and its background is less than 3:1, given the transparency?'
4804
4831
  },
4805
4832
  'AAA.1_4_3.G145.BgImage': {
4806
4833
  variable: false,
4807
4834
  quality: 1,
4808
- what: 'Contrast between the text and its background image may be less than 3:1'
4835
+ what: 'Contrast between the text and its background image is less than 3:1?'
4809
4836
  },
4810
4837
  'AAA.1_4_3.G18.BgImage': {
4811
4838
  variable: false,
4812
4839
  quality: 1,
4813
- what: 'Contrast between the text and its background image may be less than 4.5:1'
4840
+ what: 'Contrast between the text and its background image is less than 4.5:1?',
4814
4841
  },
4815
4842
  'AAA.1_4_6.G17.Abs': {
4816
4843
  variable: false,
4817
4844
  quality: 1,
4818
- what: 'Contrast between the absolutely positioned text and its background may be less than 7:1'
4845
+ what: 'Contrast between the absolutely positioned text and its background is less than 7:1?'
4819
4846
  },
4820
4847
  'AAA.1_4_6.G17.BgImage': {
4821
4848
  variable: false,
4822
4849
  quality: 1,
4823
- what: 'Contrast between the text and its background image may be less than 7:1'
4850
+ what: 'Contrast between the text and its background image is less than 7:1?'
4824
4851
  }
4825
4852
  },
4826
4853
  qualWeb: {
@@ -4842,7 +4869,7 @@ exports.issues = {
4842
4869
  style_color_misuse: {
4843
4870
  variable: false,
4844
4871
  quality: 1,
4845
- what: 'Color may be the only classifier'
4872
+ what: 'Color is the only classifier?'
4846
4873
  }
4847
4874
  }
4848
4875
  }
@@ -4857,7 +4884,7 @@ exports.issues = {
4857
4884
  'text-color-convey-information': {
4858
4885
  variable: false,
4859
4886
  quality: 1,
4860
- what: 'Text naming a color may require the ability to distinguish colors'
4887
+ what: 'Text naming a color requires the ability to distinguish colors?'
4861
4888
  }
4862
4889
  }
4863
4890
  }
@@ -5130,7 +5157,7 @@ exports.issues = {
5130
5157
  'Ensure the functionality provided by mousing over this element is available through the keyboard; for instance, using the focus event.': {
5131
5158
  variable: false,
5132
5159
  quality: 1,
5133
- what: 'Element may provide functionality via hovering but not keyboard'
5160
+ what: 'Element provides functionality via hovering but not keyboard?'
5134
5161
  }
5135
5162
  }
5136
5163
  }
@@ -5655,6 +5682,21 @@ exports.issues = {
5655
5682
  }
5656
5683
  }
5657
5684
  },
5685
+ blockQuoteShort: {
5686
+ summary: 'block quote abnormally short',
5687
+ why: 'Content can be made easier to read',
5688
+ wcag: '1.4.8',
5689
+ weight: 1,
5690
+ tools: {
5691
+ ed11y: {
5692
+ blockQuoteIsShort: {
5693
+ variable: false,
5694
+ quality: 1,
5695
+ what: 'Block quote is shorter than 25 characters'
5696
+ }
5697
+ }
5698
+ }
5699
+ },
5658
5700
  justification: {
5659
5701
  summary: 'text fully justified',
5660
5702
  why: 'Text is difficult to read',
@@ -5825,21 +5867,21 @@ exports.issues = {
5825
5867
  'p-as-heading': {
5826
5868
  variable: false,
5827
5869
  quality: 1,
5828
- what: 'Styled p element may be misused as a heading'
5870
+ what: 'Styled p element is misused as a heading?'
5829
5871
  }
5830
5872
  },
5831
5873
  ed11y: {
5832
5874
  textPossibleHeading: {
5833
5875
  variable: false,
5834
5876
  quality: 1,
5835
- what: 'Styled p element may be misused as a heading'
5877
+ what: 'Styled p element is misused as a heading?'
5836
5878
  }
5837
5879
  },
5838
5880
  htmlcs: {
5839
5881
  'AAA.1_3_1.H42': {
5840
5882
  variable: false,
5841
5883
  quality: 1,
5842
- what: 'Heading coding is not used but the element may be intended as a heading'
5884
+ what: 'Heading coding is not used but the element is intended as a heading?'
5843
5885
  }
5844
5886
  },
5845
5887
  ibm: {
@@ -5858,7 +5900,22 @@ exports.issues = {
5858
5900
  }
5859
5901
  }
5860
5902
  },
5861
- pseudoLinkRisk: {
5903
+ pseudoLinkScriptRisk: {
5904
+ summary: 'script used instead of link',
5905
+ why: 'Link may misbehave',
5906
+ wcag: '1.3.1',
5907
+ weight: 1,
5908
+ tools: {
5909
+ ibm: {
5910
+ script_onclick_misuse: {
5911
+ variable: false,
5912
+ quality: 1,
5913
+ what: 'Script is used to emulate a link'
5914
+ }
5915
+ }
5916
+ }
5917
+ },
5918
+ pseudoLinkUnderlineRisk: {
5862
5919
  summary: 'underlining dubious',
5863
5920
  why: 'User may be misled into believing some text is a link',
5864
5921
  wcag: '1.3.1',
@@ -6001,21 +6058,21 @@ exports.issues = {
6001
6058
  textPossibleList: {
6002
6059
  variable: false,
6003
6060
  quality: 1,
6004
- what: 'List may be miscoded as a paragraph sequence'
6061
+ what: 'List is miscoded as a paragraph sequence?'
6005
6062
  }
6006
6063
  },
6007
6064
  htmlcs: {
6008
6065
  'AAA.1_3_1.H48.1': {
6009
6066
  variable: false,
6010
6067
  quality: 1,
6011
- what: 'Content seems to simulate an unordered list without a ul'
6068
+ what: 'Content simulates an unordered list without a ul?'
6012
6069
  }
6013
6070
  },
6014
6071
  wave: {
6015
6072
  list_possible: {
6016
6073
  variable: false,
6017
6074
  quality: 1,
6018
- what: 'List may fail to be coded as such'
6075
+ what: 'List fails to be coded as such?'
6019
6076
  }
6020
6077
  }
6021
6078
  }
@@ -6030,7 +6087,7 @@ exports.issues = {
6030
6087
  'AAA.1_3_1.H48.2': {
6031
6088
  variable: false,
6032
6089
  quality: 1,
6033
- what: 'Ordered list may fail to be coded as such'
6090
+ what: 'Ordered list fails to be coded as such?'
6034
6091
  }
6035
6092
  }
6036
6093
  }
@@ -6050,6 +6107,36 @@ exports.issues = {
6050
6107
  }
6051
6108
  }
6052
6109
  },
6110
+ pseudoQuoteRisk: {
6111
+ summary: 'quotation miscoded?',
6112
+ why: 'User may be unable to get help identifying a quotation',
6113
+ wcag: '3.2.4',
6114
+ weight: 1,
6115
+ tools: {
6116
+ ibm: {
6117
+ text_quoted_correctly: {
6118
+ variable: false,
6119
+ quality: 1,
6120
+ what: 'Text not marked with a q or blockquote element is a quotation?'
6121
+ }
6122
+ }
6123
+ }
6124
+ },
6125
+ nonQuoteRisk: {
6126
+ summary: 'nonquotation coded as block quote?',
6127
+ why: 'User may misunderstand text as a quotation',
6128
+ wcag: '3.2.4',
6129
+ weight: 1,
6130
+ tools: {
6131
+ ibm: {
6132
+ blockquote_cite_exists: {
6133
+ variable: false,
6134
+ quality: 1,
6135
+ what: 'blockquote element is a nonquotation?'
6136
+ }
6137
+ }
6138
+ }
6139
+ },
6053
6140
  selectNoText: {
6054
6141
  summary: 'select not named',
6055
6142
  why: 'User cannot get help on the topic of a list of options',
@@ -6121,7 +6208,7 @@ exports.issues = {
6121
6208
  'AAA.1_3_1.H85.2': {
6122
6209
  variable: false,
6123
6210
  quality: 1,
6124
- what: 'Selection list may contain groups of related options that are not grouped with optgroup'
6211
+ what: 'Selection list contains groups of related options not grouped with optgroup?'
6125
6212
  }
6126
6213
  }
6127
6214
  }
@@ -6223,14 +6310,14 @@ exports.issues = {
6223
6310
  'AAA.1_3_1.H71.SameName': {
6224
6311
  variable: false,
6225
6312
  quality: 1,
6226
- what: 'Radio buttons or check boxes may require a group description via a fieldset element'
6313
+ what: 'Radio buttons or check boxes require a fieldset element?'
6227
6314
  }
6228
6315
  },
6229
6316
  wax: {
6230
6317
  'If these radio buttons or check boxes require a further group-level description, they should be contained within a fieldset element.': {
6231
6318
  variable: false,
6232
6319
  quality: 1,
6233
- what: 'Radio buttons or check boxes may require a group description via a fieldset element'
6320
+ what: 'Radio buttons or check boxes require a fieldset element?'
6234
6321
  }
6235
6322
  }
6236
6323
  }
@@ -8598,7 +8685,7 @@ exports.issues = {
8598
8685
  animationM: {
8599
8686
  variable: false,
8600
8687
  quality: 1,
8601
- what: 'Animation may fail to give user a pause, stop, or hide mechanism'
8688
+ what: 'Animation fails to provide a pause, stop, or hide mechanism?'
8602
8689
  }
8603
8690
  },
8604
8691
  testaro: {
@@ -8962,7 +9049,7 @@ exports.issues = {
8962
9049
  audio_alternativeA: {
8963
9050
  variable: false,
8964
9051
  quality: 1,
8965
- what: 'Referenced description or another text alternative may be missing'
9052
+ what: 'Referenced description or another text alternative is missing?'
8966
9053
  }
8967
9054
  }
8968
9055
  }
@@ -9035,21 +9122,28 @@ exports.issues = {
9035
9122
  wcag: '1.2.2',
9036
9123
  weight: 1,
9037
9124
  tools: {
9125
+ ibm: {
9126
+ caption_track_exists: {
9127
+ variable: false,
9128
+ quality: 1,
9129
+ what: 'video element has no text alternative for any meaningful audio content?'
9130
+ }
9131
+ },
9038
9132
  wave: {
9039
9133
  html5_video_audio: {
9040
9134
  variable: false,
9041
9135
  quality: 1,
9042
- what: 'video or audio element may have no or incorrect captions, transcript, or audio description'
9136
+ what: 'video or audio element has no or incorrect captions, transcript, or audio description?'
9043
9137
  },
9044
9138
  audio_video: {
9045
9139
  variable: false,
9046
9140
  quality: 1,
9047
- what: 'audio or video file or link may have no or incorrect captions, transcript, or audio description'
9141
+ what: 'audio or video file or link has no or incorrect captions, transcript, or audio description?'
9048
9142
  },
9049
9143
  youtube_video: {
9050
9144
  variable: false,
9051
9145
  quality: 1,
9052
- what: 'YouTube video may have no or incorrect captions'
9146
+ what: 'YouTube video has no or incorrect captions?'
9053
9147
  }
9054
9148
  }
9055
9149
  }
@@ -9145,14 +9239,14 @@ exports.issues = {
9145
9239
  'AAA.1_4_10.C32,C31,C33,C38,SCR34,G206': {
9146
9240
  variable: false,
9147
9241
  quality: 1,
9148
- what: 'Fixed-position element may force bidirectional scrolling'
9242
+ what: 'Fixed-position element forces bidirectional scrolling?'
9149
9243
  }
9150
9244
  },
9151
9245
  wax: {
9152
9246
  'This element has "position: fixed". This may require scrolling in two dimensions, which is considered a failure of this Success Criterion.': {
9153
9247
  variable: false,
9154
9248
  quality: 1,
9155
- what: 'Fixed-position element may require scrolling in two dimensions'
9249
+ what: 'Fixed-position element requires scrolling in two dimensions?'
9156
9250
  }
9157
9251
  }
9158
9252
  }
@@ -9285,6 +9379,13 @@ exports.issues = {
9285
9379
  quality: 1,
9286
9380
  what: 'Submit button not provided'
9287
9381
  }
9382
+ },
9383
+ wax: {
9384
+ '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.': {
9385
+ variable: false,
9386
+ quality: 1,
9387
+ what: 'Form has no ubmit button'
9388
+ }
9288
9389
  }
9289
9390
  }
9290
9391
  },
@@ -9328,7 +9429,7 @@ exports.issues = {
9328
9429
  noscript: {
9329
9430
  variable: false,
9330
9431
  quality: 1,
9331
- what: 'noscript element may fail to contain an accessible equivalent or alternative'
9432
+ what: 'noscript element fails to contain an accessible equivalent or alternative?'
9332
9433
  }
9333
9434
  }
9334
9435
  }
@@ -9366,7 +9467,7 @@ exports.issues = {
9366
9467
  'The inputmode attribute is not supported in all browsers. Please be sure to test, and consider using a polyfill.': {
9367
9468
  variable: false,
9368
9469
  quality: 1,
9369
- what: 'inputmode attribute may be unsupported by some browsers'
9470
+ what: 'inputmode attribute is unsupported by some browsers'
9370
9471
  }
9371
9472
  }
9372
9473
  }