govuk_publishing_components 16.6.0 → 16.7.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 (531) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/component_guide/accessibility-test.js +6 -12
  3. data/app/assets/javascripts/component_guide/vendor/bind-polyfill.js +8 -0
  4. data/app/assets/javascripts/govuk_publishing_components/lib/toggle.js +16 -0
  5. data/app/assets/stylesheets/govuk_publishing_components/components/_fieldset.scss +1 -27
  6. data/app/views/govuk_publishing_components/components/_fieldset.html.erb +2 -2
  7. data/app/views/govuk_publishing_components/components/_input.html.erb +2 -0
  8. data/app/views/govuk_publishing_components/components/docs/input.yml +7 -0
  9. data/lib/govuk_publishing_components/version.rb +1 -1
  10. data/node_modules/accessible-autocomplete/package.json +1 -1
  11. data/node_modules/axe-core/CHANGELOG.md +741 -0
  12. data/node_modules/axe-core/CONTRIBUTING.md +187 -0
  13. data/node_modules/axe-core/LICENSE +362 -0
  14. data/node_modules/axe-core/README.md +147 -0
  15. data/node_modules/axe-core/axe.d.ts +216 -0
  16. data/node_modules/axe-core/axe.js +15298 -0
  17. data/node_modules/axe-core/axe.min.js +12 -0
  18. data/node_modules/axe-core/bower.json +40 -0
  19. data/node_modules/axe-core/doc/API.md +798 -0
  20. data/node_modules/axe-core/doc/accessibility-supported.md +33 -0
  21. data/node_modules/axe-core/doc/act-rules-format.md +37 -0
  22. data/node_modules/axe-core/doc/aria-supported.md +23 -0
  23. data/node_modules/axe-core/doc/axelogo2018.png +0 -0
  24. data/node_modules/axe-core/doc/code-submission-guidelines.md +178 -0
  25. data/node_modules/axe-core/doc/developer-guide.md +500 -0
  26. data/node_modules/axe-core/doc/examples/chrome-debugging-protocol/README.md +13 -0
  27. data/node_modules/axe-core/doc/examples/chrome-debugging-protocol/axe-cdp.js +81 -0
  28. data/node_modules/axe-core/doc/examples/chrome-debugging-protocol/package.json +8 -0
  29. data/node_modules/axe-core/doc/examples/html-handlebars.md +164 -0
  30. data/node_modules/axe-core/doc/examples/jasmine/README.md +37 -0
  31. data/node_modules/axe-core/doc/examples/jasmine/package.json +20 -0
  32. data/node_modules/axe-core/doc/examples/jasmine/spec/a11y.js +36 -0
  33. data/node_modules/axe-core/doc/examples/jest_react/README.md +41 -0
  34. data/node_modules/axe-core/doc/examples/jest_react/link.js +7 -0
  35. data/node_modules/axe-core/doc/examples/jest_react/link.test.js +24 -0
  36. data/node_modules/axe-core/doc/examples/jest_react/package.json +28 -0
  37. data/node_modules/axe-core/doc/examples/jest_react/test-helpers.js +21 -0
  38. data/node_modules/axe-core/doc/examples/mocha/README.md +37 -0
  39. data/node_modules/axe-core/doc/examples/mocha/package.json +21 -0
  40. data/node_modules/axe-core/doc/examples/phantomjs/README.md +17 -0
  41. data/node_modules/axe-core/doc/examples/phantomjs/axe-phantom.js +51 -0
  42. data/node_modules/axe-core/doc/examples/phantomjs/package.json +19 -0
  43. data/node_modules/axe-core/doc/examples/puppeteer/README.md +12 -0
  44. data/node_modules/axe-core/doc/examples/puppeteer/axe-puppeteer.js +60 -0
  45. data/node_modules/axe-core/doc/examples/puppeteer/package.json +10 -0
  46. data/node_modules/axe-core/doc/examples/qunit/README.md +37 -0
  47. data/node_modules/axe-core/doc/examples/qunit/package.json +21 -0
  48. data/node_modules/axe-core/doc/plugins.md +123 -0
  49. data/node_modules/axe-core/doc/projects.md +44 -0
  50. data/node_modules/axe-core/doc/rule-descriptions.md +79 -0
  51. data/node_modules/axe-core/doc/rule-development.md +95 -0
  52. data/node_modules/axe-core/doc/rule-proposal.md +106 -0
  53. data/node_modules/axe-core/lib/checks/aria/abstractrole.js +1 -0
  54. data/node_modules/axe-core/lib/checks/aria/abstractrole.json +11 -0
  55. data/node_modules/axe-core/lib/checks/aria/allowed-attr.js +39 -0
  56. data/node_modules/axe-core/lib/checks/aria/allowed-attr.json +11 -0
  57. data/node_modules/axe-core/lib/checks/aria/aria-allowed-role.js +28 -0
  58. data/node_modules/axe-core/lib/checks/aria/aria-allowed-role.json +16 -0
  59. data/node_modules/axe-core/lib/checks/aria/aria-hidden-body.js +1 -0
  60. data/node_modules/axe-core/lib/checks/aria/aria-hidden-body.json +11 -0
  61. data/node_modules/axe-core/lib/checks/aria/errormessage.js +33 -0
  62. data/node_modules/axe-core/lib/checks/aria/errormessage.json +11 -0
  63. data/node_modules/axe-core/lib/checks/aria/has-widget-role.js +6 -0
  64. data/node_modules/axe-core/lib/checks/aria/has-widget-role.json +12 -0
  65. data/node_modules/axe-core/lib/checks/aria/implicit-role-fallback.js +6 -0
  66. data/node_modules/axe-core/lib/checks/aria/implicit-role-fallback.json +11 -0
  67. data/node_modules/axe-core/lib/checks/aria/invalidrole.js +3 -0
  68. data/node_modules/axe-core/lib/checks/aria/invalidrole.json +11 -0
  69. data/node_modules/axe-core/lib/checks/aria/required-attr.js +28 -0
  70. data/node_modules/axe-core/lib/checks/aria/required-attr.json +11 -0
  71. data/node_modules/axe-core/lib/checks/aria/required-children.js +117 -0
  72. data/node_modules/axe-core/lib/checks/aria/required-children.json +15 -0
  73. data/node_modules/axe-core/lib/checks/aria/required-parent.js +87 -0
  74. data/node_modules/axe-core/lib/checks/aria/required-parent.json +11 -0
  75. data/node_modules/axe-core/lib/checks/aria/unsupportedattr.js +39 -0
  76. data/node_modules/axe-core/lib/checks/aria/unsupportedattr.json +11 -0
  77. data/node_modules/axe-core/lib/checks/aria/unsupportedrole.js +1 -0
  78. data/node_modules/axe-core/lib/checks/aria/unsupportedrole.json +11 -0
  79. data/node_modules/axe-core/lib/checks/aria/valid-attr-value.js +32 -0
  80. data/node_modules/axe-core/lib/checks/aria/valid-attr-value.json +12 -0
  81. data/node_modules/axe-core/lib/checks/aria/valid-attr.js +25 -0
  82. data/node_modules/axe-core/lib/checks/aria/valid-attr.json +12 -0
  83. data/node_modules/axe-core/lib/checks/aria/valid-scrollable-semantics.js +62 -0
  84. data/node_modules/axe-core/lib/checks/aria/valid-scrollable-semantics.json +12 -0
  85. data/node_modules/axe-core/lib/checks/color/color-contrast.js +70 -0
  86. data/node_modules/axe-core/lib/checks/color/color-contrast.json +24 -0
  87. data/node_modules/axe-core/lib/checks/color/link-in-text-block.js +85 -0
  88. data/node_modules/axe-core/lib/checks/color/link-in-text-block.json +19 -0
  89. data/node_modules/axe-core/lib/checks/forms/autocomplete-appropriate.js +67 -0
  90. data/node_modules/axe-core/lib/checks/forms/autocomplete-appropriate.json +11 -0
  91. data/node_modules/axe-core/lib/checks/forms/autocomplete-valid.js +2 -0
  92. data/node_modules/axe-core/lib/checks/forms/autocomplete-valid.json +11 -0
  93. data/node_modules/axe-core/lib/checks/forms/fieldset-after.js +25 -0
  94. data/node_modules/axe-core/lib/checks/forms/fieldset.js +109 -0
  95. data/node_modules/axe-core/lib/checks/forms/fieldset.json +12 -0
  96. data/node_modules/axe-core/lib/checks/forms/group-labelledby-after.js +16 -0
  97. data/node_modules/axe-core/lib/checks/forms/group-labelledby.js +66 -0
  98. data/node_modules/axe-core/lib/checks/forms/group-labelledby.json +12 -0
  99. data/node_modules/axe-core/lib/checks/keyboard/accesskeys-after.js +19 -0
  100. data/node_modules/axe-core/lib/checks/keyboard/accesskeys.js +5 -0
  101. data/node_modules/axe-core/lib/checks/keyboard/accesskeys.json +12 -0
  102. data/node_modules/axe-core/lib/checks/keyboard/focusable-disabled.js +25 -0
  103. data/node_modules/axe-core/lib/checks/keyboard/focusable-disabled.json +11 -0
  104. data/node_modules/axe-core/lib/checks/keyboard/focusable-no-name.js +6 -0
  105. data/node_modules/axe-core/lib/checks/keyboard/focusable-no-name.json +11 -0
  106. data/node_modules/axe-core/lib/checks/keyboard/focusable-not-tabbable.js +25 -0
  107. data/node_modules/axe-core/lib/checks/keyboard/focusable-not-tabbable.json +11 -0
  108. data/node_modules/axe-core/lib/checks/keyboard/landmark-is-top-level.js +18 -0
  109. data/node_modules/axe-core/lib/checks/keyboard/landmark-is-top-level.json +11 -0
  110. data/node_modules/axe-core/lib/checks/keyboard/page-has-elm-after.js +11 -0
  111. data/node_modules/axe-core/lib/checks/keyboard/page-has-elm.js +9 -0
  112. data/node_modules/axe-core/lib/checks/keyboard/page-has-heading-one.json +15 -0
  113. data/node_modules/axe-core/lib/checks/keyboard/page-has-main.json +15 -0
  114. data/node_modules/axe-core/lib/checks/keyboard/page-no-duplicate-banner.json +15 -0
  115. data/node_modules/axe-core/lib/checks/keyboard/page-no-duplicate-contentinfo.json +15 -0
  116. data/node_modules/axe-core/lib/checks/keyboard/page-no-duplicate-main.json +14 -0
  117. data/node_modules/axe-core/lib/checks/keyboard/page-no-duplicate.js +22 -0
  118. data/node_modules/axe-core/lib/checks/keyboard/tabindex.js +1 -0
  119. data/node_modules/axe-core/lib/checks/keyboard/tabindex.json +11 -0
  120. data/node_modules/axe-core/lib/checks/label/alt-space-value.js +2 -0
  121. data/node_modules/axe-core/lib/checks/label/alt-space-value.json +11 -0
  122. data/node_modules/axe-core/lib/checks/label/duplicate-img-label.js +19 -0
  123. data/node_modules/axe-core/lib/checks/label/duplicate-img-label.json +11 -0
  124. data/node_modules/axe-core/lib/checks/label/explicit.js +15 -0
  125. data/node_modules/axe-core/lib/checks/label/explicit.json +11 -0
  126. data/node_modules/axe-core/lib/checks/label/help-same-as-label.js +23 -0
  127. data/node_modules/axe-core/lib/checks/label/help-same-as-label.json +12 -0
  128. data/node_modules/axe-core/lib/checks/label/hidden-explicit-label.js +12 -0
  129. data/node_modules/axe-core/lib/checks/label/hidden-explicit-label.json +11 -0
  130. data/node_modules/axe-core/lib/checks/label/implicit.js +7 -0
  131. data/node_modules/axe-core/lib/checks/label/implicit.json +11 -0
  132. data/node_modules/axe-core/lib/checks/label/label-content-name-mismatch.js +49 -0
  133. data/node_modules/axe-core/lib/checks/label/label-content-name-mismatch.json +11 -0
  134. data/node_modules/axe-core/lib/checks/label/multiple-label.js +29 -0
  135. data/node_modules/axe-core/lib/checks/label/multiple-label.json +11 -0
  136. data/node_modules/axe-core/lib/checks/label/title-only.js +5 -0
  137. data/node_modules/axe-core/lib/checks/label/title-only.json +11 -0
  138. data/node_modules/axe-core/lib/checks/language/has-lang.js +5 -0
  139. data/node_modules/axe-core/lib/checks/language/has-lang.json +11 -0
  140. data/node_modules/axe-core/lib/checks/language/valid-lang.js +26 -0
  141. data/node_modules/axe-core/lib/checks/language/valid-lang.json +11 -0
  142. data/node_modules/axe-core/lib/checks/language/xml-lang-mismatch.js +5 -0
  143. data/node_modules/axe-core/lib/checks/language/xml-lang-mismatch.json +11 -0
  144. data/node_modules/axe-core/lib/checks/lists/dlitem.js +23 -0
  145. data/node_modules/axe-core/lib/checks/lists/dlitem.json +11 -0
  146. data/node_modules/axe-core/lib/checks/lists/listitem.js +18 -0
  147. data/node_modules/axe-core/lib/checks/lists/listitem.json +11 -0
  148. data/node_modules/axe-core/lib/checks/lists/only-dlitems.js +42 -0
  149. data/node_modules/axe-core/lib/checks/lists/only-dlitems.json +11 -0
  150. data/node_modules/axe-core/lib/checks/lists/only-listitems.js +68 -0
  151. data/node_modules/axe-core/lib/checks/lists/only-listitems.json +11 -0
  152. data/node_modules/axe-core/lib/checks/lists/structured-dlitems.js +22 -0
  153. data/node_modules/axe-core/lib/checks/lists/structured-dlitems.json +11 -0
  154. data/node_modules/axe-core/lib/checks/media/caption.js +8 -0
  155. data/node_modules/axe-core/lib/checks/media/caption.json +11 -0
  156. data/node_modules/axe-core/lib/checks/media/description.js +8 -0
  157. data/node_modules/axe-core/lib/checks/media/description.json +11 -0
  158. data/node_modules/axe-core/lib/checks/media/frame-tested.js +28 -0
  159. data/node_modules/axe-core/lib/checks/media/frame-tested.json +15 -0
  160. data/node_modules/axe-core/lib/checks/mobile/css-orientation-lock.js +132 -0
  161. data/node_modules/axe-core/lib/checks/mobile/css-orientation-lock.json +12 -0
  162. data/node_modules/axe-core/lib/checks/mobile/meta-viewport-large.json +15 -0
  163. data/node_modules/axe-core/lib/checks/mobile/meta-viewport-scale.js +38 -0
  164. data/node_modules/axe-core/lib/checks/mobile/meta-viewport.json +14 -0
  165. data/node_modules/axe-core/lib/checks/navigation/header-present.js +4 -0
  166. data/node_modules/axe-core/lib/checks/navigation/header-present.json +11 -0
  167. data/node_modules/axe-core/lib/checks/navigation/heading-order-after.js +14 -0
  168. data/node_modules/axe-core/lib/checks/navigation/heading-order.js +15 -0
  169. data/node_modules/axe-core/lib/checks/navigation/heading-order.json +12 -0
  170. data/node_modules/axe-core/lib/checks/navigation/internal-link-present.js +4 -0
  171. data/node_modules/axe-core/lib/checks/navigation/internal-link-present.json +11 -0
  172. data/node_modules/axe-core/lib/checks/navigation/landmark.js +3 -0
  173. data/node_modules/axe-core/lib/checks/navigation/landmark.json +11 -0
  174. data/node_modules/axe-core/lib/checks/navigation/meta-refresh.js +4 -0
  175. data/node_modules/axe-core/lib/checks/navigation/meta-refresh.json +11 -0
  176. data/node_modules/axe-core/lib/checks/navigation/p-as-heading.js +93 -0
  177. data/node_modules/axe-core/lib/checks/navigation/p-as-heading.json +30 -0
  178. data/node_modules/axe-core/lib/checks/navigation/region-after.js +1 -0
  179. data/node_modules/axe-core/lib/checks/navigation/region.js +85 -0
  180. data/node_modules/axe-core/lib/checks/navigation/region.json +12 -0
  181. data/node_modules/axe-core/lib/checks/navigation/skip-link.js +5 -0
  182. data/node_modules/axe-core/lib/checks/navigation/skip-link.json +12 -0
  183. data/node_modules/axe-core/lib/checks/navigation/unique-frame-title-after.js +9 -0
  184. data/node_modules/axe-core/lib/checks/navigation/unique-frame-title.js +6 -0
  185. data/node_modules/axe-core/lib/checks/navigation/unique-frame-title.json +12 -0
  186. data/node_modules/axe-core/lib/checks/parsing/duplicate-id-active.json +12 -0
  187. data/node_modules/axe-core/lib/checks/parsing/duplicate-id-after.js +8 -0
  188. data/node_modules/axe-core/lib/checks/parsing/duplicate-id-aria.json +12 -0
  189. data/node_modules/axe-core/lib/checks/parsing/duplicate-id.js +17 -0
  190. data/node_modules/axe-core/lib/checks/parsing/duplicate-id.json +12 -0
  191. data/node_modules/axe-core/lib/checks/shared/aria-label.js +2 -0
  192. data/node_modules/axe-core/lib/checks/shared/aria-label.json +11 -0
  193. data/node_modules/axe-core/lib/checks/shared/aria-labelledby.js +2 -0
  194. data/node_modules/axe-core/lib/checks/shared/aria-labelledby.json +11 -0
  195. data/node_modules/axe-core/lib/checks/shared/button-has-visible-text.js +12 -0
  196. data/node_modules/axe-core/lib/checks/shared/button-has-visible-text.json +11 -0
  197. data/node_modules/axe-core/lib/checks/shared/doc-has-title.js +2 -0
  198. data/node_modules/axe-core/lib/checks/shared/doc-has-title.json +11 -0
  199. data/node_modules/axe-core/lib/checks/shared/exists.js +1 -0
  200. data/node_modules/axe-core/lib/checks/shared/exists.json +11 -0
  201. data/node_modules/axe-core/lib/checks/shared/has-alt.js +4 -0
  202. data/node_modules/axe-core/lib/checks/shared/has-alt.json +11 -0
  203. data/node_modules/axe-core/lib/checks/shared/has-visible-text.js +1 -0
  204. data/node_modules/axe-core/lib/checks/shared/has-visible-text.json +11 -0
  205. data/node_modules/axe-core/lib/checks/shared/is-on-screen.js +4 -0
  206. data/node_modules/axe-core/lib/checks/shared/is-on-screen.json +11 -0
  207. data/node_modules/axe-core/lib/checks/shared/non-empty-alt.js +2 -0
  208. data/node_modules/axe-core/lib/checks/shared/non-empty-alt.json +11 -0
  209. data/node_modules/axe-core/lib/checks/shared/non-empty-if-present.js +11 -0
  210. data/node_modules/axe-core/lib/checks/shared/non-empty-if-present.json +11 -0
  211. data/node_modules/axe-core/lib/checks/shared/non-empty-title.js +2 -0
  212. data/node_modules/axe-core/lib/checks/shared/non-empty-title.json +11 -0
  213. data/node_modules/axe-core/lib/checks/shared/non-empty-value.js +2 -0
  214. data/node_modules/axe-core/lib/checks/shared/non-empty-value.json +11 -0
  215. data/node_modules/axe-core/lib/checks/shared/role-none.js +1 -0
  216. data/node_modules/axe-core/lib/checks/shared/role-none.json +11 -0
  217. data/node_modules/axe-core/lib/checks/shared/role-presentation.js +1 -0
  218. data/node_modules/axe-core/lib/checks/shared/role-presentation.json +11 -0
  219. data/node_modules/axe-core/lib/checks/tables/caption-faked.js +10 -0
  220. data/node_modules/axe-core/lib/checks/tables/caption-faked.json +11 -0
  221. data/node_modules/axe-core/lib/checks/tables/has-caption.js +1 -0
  222. data/node_modules/axe-core/lib/checks/tables/has-caption.json +11 -0
  223. data/node_modules/axe-core/lib/checks/tables/has-summary.js +1 -0
  224. data/node_modules/axe-core/lib/checks/tables/has-summary.json +11 -0
  225. data/node_modules/axe-core/lib/checks/tables/has-th.js +31 -0
  226. data/node_modules/axe-core/lib/checks/tables/has-th.json +11 -0
  227. data/node_modules/axe-core/lib/checks/tables/headers-visible-text.js +30 -0
  228. data/node_modules/axe-core/lib/checks/tables/html5-scope.js +5 -0
  229. data/node_modules/axe-core/lib/checks/tables/html5-scope.json +11 -0
  230. data/node_modules/axe-core/lib/checks/tables/same-caption-summary.js +7 -0
  231. data/node_modules/axe-core/lib/checks/tables/same-caption-summary.json +11 -0
  232. data/node_modules/axe-core/lib/checks/tables/scope-value.js +5 -0
  233. data/node_modules/axe-core/lib/checks/tables/scope-value.json +11 -0
  234. data/node_modules/axe-core/lib/checks/tables/td-has-header.js +29 -0
  235. data/node_modules/axe-core/lib/checks/tables/td-has-header.json +11 -0
  236. data/node_modules/axe-core/lib/checks/tables/td-headers-attr.js +62 -0
  237. data/node_modules/axe-core/lib/checks/tables/td-headers-attr.json +11 -0
  238. data/node_modules/axe-core/lib/checks/tables/th-has-data-cells.js +76 -0
  239. data/node_modules/axe-core/lib/checks/tables/th-has-data-cells.json +12 -0
  240. data/node_modules/axe-core/lib/checks/tables/th-single-row-column.js +39 -0
  241. data/node_modules/axe-core/lib/checks/visibility/hidden-content.js +21 -0
  242. data/node_modules/axe-core/lib/checks/visibility/hidden-content.json +12 -0
  243. data/node_modules/axe-core/lib/commons/aria/arialabel-text.js +15 -0
  244. data/node_modules/axe-core/lib/commons/aria/arialabelledby-text.js +52 -0
  245. data/node_modules/axe-core/lib/commons/aria/attributes.js +45 -0
  246. data/node_modules/axe-core/lib/commons/aria/get-element-unallowed-roles.js +92 -0
  247. data/node_modules/axe-core/lib/commons/aria/get-owned-virtual.js +24 -0
  248. data/node_modules/axe-core/lib/commons/aria/get-role.js +44 -0
  249. data/node_modules/axe-core/lib/commons/aria/index.js +2417 -0
  250. data/node_modules/axe-core/lib/commons/aria/is-accessible-ref.js +55 -0
  251. data/node_modules/axe-core/lib/commons/aria/is-aria-role-allowed-on-element.js +41 -0
  252. data/node_modules/axe-core/lib/commons/aria/is-unsupported-role.js +14 -0
  253. data/node_modules/axe-core/lib/commons/aria/label-virtual.js +54 -0
  254. data/node_modules/axe-core/lib/commons/aria/named-from-contents.js +39 -0
  255. data/node_modules/axe-core/lib/commons/aria/roles.js +208 -0
  256. data/node_modules/axe-core/lib/commons/aria/validate-attr-value.js +63 -0
  257. data/node_modules/axe-core/lib/commons/color/contrast.js +172 -0
  258. data/node_modules/axe-core/lib/commons/color/element-is-distinct.js +88 -0
  259. data/node_modules/axe-core/lib/commons/color/get-background-color.js +411 -0
  260. data/node_modules/axe-core/lib/commons/color/get-foreground-color.js +32 -0
  261. data/node_modules/axe-core/lib/commons/color/incomplete-data.js +50 -0
  262. data/node_modules/axe-core/lib/commons/color/index.js +8 -0
  263. data/node_modules/axe-core/lib/commons/dom/elements-below-floating.js +39 -0
  264. data/node_modules/axe-core/lib/commons/dom/find-elms-in-context.js +28 -0
  265. data/node_modules/axe-core/lib/commons/dom/find-up.js +63 -0
  266. data/node_modules/axe-core/lib/commons/dom/get-composed-parent.js +25 -0
  267. data/node_modules/axe-core/lib/commons/dom/get-element-by-reference.js +34 -0
  268. data/node_modules/axe-core/lib/commons/dom/get-element-coordinates.js +38 -0
  269. data/node_modules/axe-core/lib/commons/dom/get-root-node.js +12 -0
  270. data/node_modules/axe-core/lib/commons/dom/get-scroll-offset.js +34 -0
  271. data/node_modules/axe-core/lib/commons/dom/get-tabbable-elements.js +24 -0
  272. data/node_modules/axe-core/lib/commons/dom/get-viewport-size.js +37 -0
  273. data/node_modules/axe-core/lib/commons/dom/has-content-virtual.js +73 -0
  274. data/node_modules/axe-core/lib/commons/dom/idrefs.js +36 -0
  275. data/node_modules/axe-core/lib/commons/dom/index.js +9 -0
  276. data/node_modules/axe-core/lib/commons/dom/is-focusable.js +90 -0
  277. data/node_modules/axe-core/lib/commons/dom/is-hidden-with-css.js +60 -0
  278. data/node_modules/axe-core/lib/commons/dom/is-html5.js +17 -0
  279. data/node_modules/axe-core/lib/commons/dom/is-in-text-block.js +95 -0
  280. data/node_modules/axe-core/lib/commons/dom/is-node.js +13 -0
  281. data/node_modules/axe-core/lib/commons/dom/is-offscreen.js +62 -0
  282. data/node_modules/axe-core/lib/commons/dom/is-visible.js +77 -0
  283. data/node_modules/axe-core/lib/commons/dom/is-visual-content.js +50 -0
  284. data/node_modules/axe-core/lib/commons/dom/shadow-elements-from-point.js +41 -0
  285. data/node_modules/axe-core/lib/commons/dom/visually-contains.js +62 -0
  286. data/node_modules/axe-core/lib/commons/dom/visually-overlaps.js +47 -0
  287. data/node_modules/axe-core/lib/commons/index.js +11 -0
  288. data/node_modules/axe-core/lib/commons/intro.stub +1 -0
  289. data/node_modules/axe-core/lib/commons/matches/attributes.js +23 -0
  290. data/node_modules/axe-core/lib/commons/matches/condition.js +19 -0
  291. data/node_modules/axe-core/lib/commons/matches/from-definition.js +47 -0
  292. data/node_modules/axe-core/lib/commons/matches/from-function.js +38 -0
  293. data/node_modules/axe-core/lib/commons/matches/from-primative.js +30 -0
  294. data/node_modules/axe-core/lib/commons/matches/index.js +37 -0
  295. data/node_modules/axe-core/lib/commons/matches/node-name.js +34 -0
  296. data/node_modules/axe-core/lib/commons/matches/properties.js +25 -0
  297. data/node_modules/axe-core/lib/commons/outro.stub +2 -0
  298. data/node_modules/axe-core/lib/commons/table/get-all-cells.js +28 -0
  299. data/node_modules/axe-core/lib/commons/table/get-cell-position.js +28 -0
  300. data/node_modules/axe-core/lib/commons/table/get-headers.js +29 -0
  301. data/node_modules/axe-core/lib/commons/table/get-scope.js +54 -0
  302. data/node_modules/axe-core/lib/commons/table/index.js +9 -0
  303. data/node_modules/axe-core/lib/commons/table/is-column-header.js +13 -0
  304. data/node_modules/axe-core/lib/commons/table/is-data-cell.js +22 -0
  305. data/node_modules/axe-core/lib/commons/table/is-data-table.js +190 -0
  306. data/node_modules/axe-core/lib/commons/table/is-header.js +22 -0
  307. data/node_modules/axe-core/lib/commons/table/is-row-header.js +13 -0
  308. data/node_modules/axe-core/lib/commons/table/to-grid.js +38 -0
  309. data/node_modules/axe-core/lib/commons/table/traverse.js +78 -0
  310. data/node_modules/axe-core/lib/commons/text/accessible-text-virtual.js +152 -0
  311. data/node_modules/axe-core/lib/commons/text/form-control-value.js +204 -0
  312. data/node_modules/axe-core/lib/commons/text/index.js +8 -0
  313. data/node_modules/axe-core/lib/commons/text/is-human-interpretable.js +51 -0
  314. data/node_modules/axe-core/lib/commons/text/is-valid-autocomplete.js +118 -0
  315. data/node_modules/axe-core/lib/commons/text/label-text.js +58 -0
  316. data/node_modules/axe-core/lib/commons/text/label-virtual.js +53 -0
  317. data/node_modules/axe-core/lib/commons/text/native-element-types.js +100 -0
  318. data/node_modules/axe-core/lib/commons/text/native-text-alternative.js +50 -0
  319. data/node_modules/axe-core/lib/commons/text/native-text-methods.js +122 -0
  320. data/node_modules/axe-core/lib/commons/text/sanitize.js +18 -0
  321. data/node_modules/axe-core/lib/commons/text/subtree-text.js +89 -0
  322. data/node_modules/axe-core/lib/commons/text/title-text.js +33 -0
  323. data/node_modules/axe-core/lib/commons/text/unicode.js +117 -0
  324. data/node_modules/axe-core/lib/commons/text/unsupported.js +5 -0
  325. data/node_modules/axe-core/lib/commons/text/visible-virtual.js +46 -0
  326. data/node_modules/axe-core/lib/commons/utils/index.js +10 -0
  327. data/node_modules/axe-core/lib/core/base/audit.js +684 -0
  328. data/node_modules/axe-core/lib/core/base/check-result.js +33 -0
  329. data/node_modules/axe-core/lib/core/base/check.js +123 -0
  330. data/node_modules/axe-core/lib/core/base/context.js +273 -0
  331. data/node_modules/axe-core/lib/core/base/rule-result.js +39 -0
  332. data/node_modules/axe-core/lib/core/base/rule.js +383 -0
  333. data/node_modules/axe-core/lib/core/constants.js +68 -0
  334. data/node_modules/axe-core/lib/core/imports/index.js +26 -0
  335. data/node_modules/axe-core/lib/core/index.js +45 -0
  336. data/node_modules/axe-core/lib/core/log.js +12 -0
  337. data/node_modules/axe-core/lib/core/public/cleanup-plugins.js +53 -0
  338. data/node_modules/axe-core/lib/core/public/configure.js +57 -0
  339. data/node_modules/axe-core/lib/core/public/get-rules.js +29 -0
  340. data/node_modules/axe-core/lib/core/public/load.js +66 -0
  341. data/node_modules/axe-core/lib/core/public/plugins.js +47 -0
  342. data/node_modules/axe-core/lib/core/public/reporter.js +24 -0
  343. data/node_modules/axe-core/lib/core/public/reset.js +12 -0
  344. data/node_modules/axe-core/lib/core/public/run-rules.js +94 -0
  345. data/node_modules/axe-core/lib/core/public/run.js +148 -0
  346. data/node_modules/axe-core/lib/core/reporters/helpers/failure-summary.js +35 -0
  347. data/node_modules/axe-core/lib/core/reporters/helpers/get-environment-data.js +39 -0
  348. data/node_modules/axe-core/lib/core/reporters/helpers/incomplete-fallback-msg.js +11 -0
  349. data/node_modules/axe-core/lib/core/reporters/helpers/index.js +3 -0
  350. data/node_modules/axe-core/lib/core/reporters/helpers/process-aggregate.js +102 -0
  351. data/node_modules/axe-core/lib/core/reporters/na.js +20 -0
  352. data/node_modules/axe-core/lib/core/reporters/no-passes.js +18 -0
  353. data/node_modules/axe-core/lib/core/reporters/raw.js +8 -0
  354. data/node_modules/axe-core/lib/core/reporters/v1.js +26 -0
  355. data/node_modules/axe-core/lib/core/reporters/v2.js +22 -0
  356. data/node_modules/axe-core/lib/core/utils/aggregate.js +19 -0
  357. data/node_modules/axe-core/lib/core/utils/aggregateChecks.js +85 -0
  358. data/node_modules/axe-core/lib/core/utils/aggregateNodeResults.js +61 -0
  359. data/node_modules/axe-core/lib/core/utils/aggregateResult.js +37 -0
  360. data/node_modules/axe-core/lib/core/utils/are-styles-set.js +24 -0
  361. data/node_modules/axe-core/lib/core/utils/check-helper.js +38 -0
  362. data/node_modules/axe-core/lib/core/utils/clone.js +27 -0
  363. data/node_modules/axe-core/lib/core/utils/collect-results-from-frames.js +127 -0
  364. data/node_modules/axe-core/lib/core/utils/contains.js +30 -0
  365. data/node_modules/axe-core/lib/core/utils/css-parser.js +5 -0
  366. data/node_modules/axe-core/lib/core/utils/dq-element.js +97 -0
  367. data/node_modules/axe-core/lib/core/utils/element-matches.js +39 -0
  368. data/node_modules/axe-core/lib/core/utils/escape-selector.js +79 -0
  369. data/node_modules/axe-core/lib/core/utils/extend-meta-data.js +17 -0
  370. data/node_modules/axe-core/lib/core/utils/finalize-result.js +11 -0
  371. data/node_modules/axe-core/lib/core/utils/find-by.js +14 -0
  372. data/node_modules/axe-core/lib/core/utils/flattened-tree.js +170 -0
  373. data/node_modules/axe-core/lib/core/utils/get-all-checks.js +12 -0
  374. data/node_modules/axe-core/lib/core/utils/get-base-lang.js +16 -0
  375. data/node_modules/axe-core/lib/core/utils/get-check-option.js +40 -0
  376. data/node_modules/axe-core/lib/core/utils/get-friendly-uri-end.js +144 -0
  377. data/node_modules/axe-core/lib/core/utils/get-root-node.js +17 -0
  378. data/node_modules/axe-core/lib/core/utils/get-selector.js +406 -0
  379. data/node_modules/axe-core/lib/core/utils/get-xpath.js +84 -0
  380. data/node_modules/axe-core/lib/core/utils/index.js +10 -0
  381. data/node_modules/axe-core/lib/core/utils/inject-style.js +38 -0
  382. data/node_modules/axe-core/lib/core/utils/is-hidden.js +40 -0
  383. data/node_modules/axe-core/lib/core/utils/is-html-element.js +135 -0
  384. data/node_modules/axe-core/lib/core/utils/is-shadow-root.js +40 -0
  385. data/node_modules/axe-core/lib/core/utils/is-xhtml.js +14 -0
  386. data/node_modules/axe-core/lib/core/utils/merge-results.js +116 -0
  387. data/node_modules/axe-core/lib/core/utils/node-sorter.js +21 -0
  388. data/node_modules/axe-core/lib/core/utils/performance-timer.js +121 -0
  389. data/node_modules/axe-core/lib/core/utils/pollyfills.js +299 -0
  390. data/node_modules/axe-core/lib/core/utils/preload-cssom.js +456 -0
  391. data/node_modules/axe-core/lib/core/utils/preload.js +109 -0
  392. data/node_modules/axe-core/lib/core/utils/publish-metadata.js +93 -0
  393. data/node_modules/axe-core/lib/core/utils/qsa.js +322 -0
  394. data/node_modules/axe-core/lib/core/utils/queue.js +138 -0
  395. data/node_modules/axe-core/lib/core/utils/respondable.js +243 -0
  396. data/node_modules/axe-core/lib/core/utils/rule-should-run.js +83 -0
  397. data/node_modules/axe-core/lib/core/utils/scroll-state.js +70 -0
  398. data/node_modules/axe-core/lib/core/utils/select.js +146 -0
  399. data/node_modules/axe-core/lib/core/utils/to-array.js +21 -0
  400. data/node_modules/axe-core/lib/core/utils/token-list.js +15 -0
  401. data/node_modules/axe-core/lib/core/utils/uuid.js +242 -0
  402. data/node_modules/axe-core/lib/core/utils/valid-input-type.js +35 -0
  403. data/node_modules/axe-core/lib/core/utils/valid-langs.js +8152 -0
  404. data/node_modules/axe-core/lib/intro.stub +15 -0
  405. data/node_modules/axe-core/lib/misc/any-failure-summary.json +6 -0
  406. data/node_modules/axe-core/lib/misc/incomplete-fallback.json +3 -0
  407. data/node_modules/axe-core/lib/misc/none-failure-summary.json +6 -0
  408. data/node_modules/axe-core/lib/outro.stub +2 -0
  409. data/node_modules/axe-core/lib/rules/accesskeys.json +13 -0
  410. data/node_modules/axe-core/lib/rules/area-alt.json +19 -0
  411. data/node_modules/axe-core/lib/rules/aria-allowed-attr-matches.js +11 -0
  412. data/node_modules/axe-core/lib/rules/aria-allowed-attr.json +12 -0
  413. data/node_modules/axe-core/lib/rules/aria-allowed-role-matches.js +7 -0
  414. data/node_modules/axe-core/lib/rules/aria-allowed-role.json +14 -0
  415. data/node_modules/axe-core/lib/rules/aria-dpub-role-fallback-matches.js +10 -0
  416. data/node_modules/axe-core/lib/rules/aria-dpub-role-fallback.json +13 -0
  417. data/node_modules/axe-core/lib/rules/aria-has-attr-matches.js +11 -0
  418. data/node_modules/axe-core/lib/rules/aria-hidden-body.json +13 -0
  419. data/node_modules/axe-core/lib/rules/aria-hidden-focus-matches.js +18 -0
  420. data/node_modules/axe-core/lib/rules/aria-hidden-focus.json +14 -0
  421. data/node_modules/axe-core/lib/rules/aria-required-attr.json +12 -0
  422. data/node_modules/axe-core/lib/rules/aria-required-children.json +12 -0
  423. data/node_modules/axe-core/lib/rules/aria-required-parent.json +12 -0
  424. data/node_modules/axe-core/lib/rules/aria-roles.json +12 -0
  425. data/node_modules/axe-core/lib/rules/aria-valid-attr-value.json +12 -0
  426. data/node_modules/axe-core/lib/rules/aria-valid-attr.json +12 -0
  427. data/node_modules/axe-core/lib/rules/audio-caption.json +20 -0
  428. data/node_modules/axe-core/lib/rules/autocomplete-matches.js +45 -0
  429. data/node_modules/axe-core/lib/rules/autocomplete-valid.json +12 -0
  430. data/node_modules/axe-core/lib/rules/blink.json +19 -0
  431. data/node_modules/axe-core/lib/rules/button-name.json +27 -0
  432. data/node_modules/axe-core/lib/rules/bypass-matches.js +1 -0
  433. data/node_modules/axe-core/lib/rules/bypass.json +20 -0
  434. data/node_modules/axe-core/lib/rules/checkboxgroup.json +12 -0
  435. data/node_modules/axe-core/lib/rules/color-contrast-matches.js +120 -0
  436. data/node_modules/axe-core/lib/rules/color-contrast.json +16 -0
  437. data/node_modules/axe-core/lib/rules/css-orientation-lock.json +13 -0
  438. data/node_modules/axe-core/lib/rules/data-table-large-matches.js +11 -0
  439. data/node_modules/axe-core/lib/rules/data-table-matches.js +1 -0
  440. data/node_modules/axe-core/lib/rules/definition-list.json +13 -0
  441. data/node_modules/axe-core/lib/rules/dlitem.json +13 -0
  442. data/node_modules/axe-core/lib/rules/document-title.json +13 -0
  443. data/node_modules/axe-core/lib/rules/duplicate-id-active-matches.js +8 -0
  444. data/node_modules/axe-core/lib/rules/duplicate-id-active.json +14 -0
  445. data/node_modules/axe-core/lib/rules/duplicate-id-aria-matches.js +1 -0
  446. data/node_modules/axe-core/lib/rules/duplicate-id-aria.json +14 -0
  447. data/node_modules/axe-core/lib/rules/duplicate-id-misc-matches.js +11 -0
  448. data/node_modules/axe-core/lib/rules/duplicate-id.json +14 -0
  449. data/node_modules/axe-core/lib/rules/empty-heading.json +13 -0
  450. data/node_modules/axe-core/lib/rules/focus-order-semantics.json +13 -0
  451. data/node_modules/axe-core/lib/rules/form-field-multiple-labels.json +13 -0
  452. data/node_modules/axe-core/lib/rules/frame-tested.json +12 -0
  453. data/node_modules/axe-core/lib/rules/frame-title-has-text.js +2 -0
  454. data/node_modules/axe-core/lib/rules/frame-title-unique.json +13 -0
  455. data/node_modules/axe-core/lib/rules/frame-title.json +25 -0
  456. data/node_modules/axe-core/lib/rules/heading-matches.js +15 -0
  457. data/node_modules/axe-core/lib/rules/heading-order.json +13 -0
  458. data/node_modules/axe-core/lib/rules/hidden-content.json +13 -0
  459. data/node_modules/axe-core/lib/rules/html-has-lang.json +12 -0
  460. data/node_modules/axe-core/lib/rules/html-lang-valid.json +12 -0
  461. data/node_modules/axe-core/lib/rules/html-xml-lang-mismatch.json +13 -0
  462. data/node_modules/axe-core/lib/rules/image-alt.json +25 -0
  463. data/node_modules/axe-core/lib/rules/img-redundant-alt.json +12 -0
  464. data/node_modules/axe-core/lib/rules/input-image-alt.json +18 -0
  465. data/node_modules/axe-core/lib/rules/inserted-into-focus-order-matches.js +1 -0
  466. data/node_modules/axe-core/lib/rules/label-content-name-mismatch-matches.js +42 -0
  467. data/node_modules/axe-core/lib/rules/label-content-name-mismatch.json +12 -0
  468. data/node_modules/axe-core/lib/rules/label-matches.js +11 -0
  469. data/node_modules/axe-core/lib/rules/label-title-only.json +13 -0
  470. data/node_modules/axe-core/lib/rules/label.json +26 -0
  471. data/node_modules/axe-core/lib/rules/landmark-banner-is-top-level.json +13 -0
  472. data/node_modules/axe-core/lib/rules/landmark-complementary-is-top-level.json +12 -0
  473. data/node_modules/axe-core/lib/rules/landmark-contentinfo-is-top-level.json +13 -0
  474. data/node_modules/axe-core/lib/rules/landmark-has-body-context.js +8 -0
  475. data/node_modules/axe-core/lib/rules/landmark-main-is-top-level.json +12 -0
  476. data/node_modules/axe-core/lib/rules/landmark-no-duplicate-banner.json +12 -0
  477. data/node_modules/axe-core/lib/rules/landmark-no-duplicate-contentinfo.json +12 -0
  478. data/node_modules/axe-core/lib/rules/landmark-one-main.json +12 -0
  479. data/node_modules/axe-core/lib/rules/layout-table-matches.js +8 -0
  480. data/node_modules/axe-core/lib/rules/layout-table.json +13 -0
  481. data/node_modules/axe-core/lib/rules/link-in-text-block-matches.js +14 -0
  482. data/node_modules/axe-core/lib/rules/link-in-text-block.json +14 -0
  483. data/node_modules/axe-core/lib/rules/link-name.json +26 -0
  484. data/node_modules/axe-core/lib/rules/list.json +13 -0
  485. data/node_modules/axe-core/lib/rules/listitem.json +13 -0
  486. data/node_modules/axe-core/lib/rules/marquee.json +13 -0
  487. data/node_modules/axe-core/lib/rules/meta-refresh.json +13 -0
  488. data/node_modules/axe-core/lib/rules/meta-viewport-large.json +13 -0
  489. data/node_modules/axe-core/lib/rules/meta-viewport.json +13 -0
  490. data/node_modules/axe-core/lib/rules/no-role-matches.js +1 -0
  491. data/node_modules/axe-core/lib/rules/not-html-matches.js +1 -0
  492. data/node_modules/axe-core/lib/rules/object-alt.json +25 -0
  493. data/node_modules/axe-core/lib/rules/p-as-heading-matches.js +17 -0
  494. data/node_modules/axe-core/lib/rules/p-as-heading.json +13 -0
  495. data/node_modules/axe-core/lib/rules/page-has-heading-one.json +12 -0
  496. data/node_modules/axe-core/lib/rules/radiogroup.json +12 -0
  497. data/node_modules/axe-core/lib/rules/region.json +13 -0
  498. data/node_modules/axe-core/lib/rules/role-not-button-matches.js +1 -0
  499. data/node_modules/axe-core/lib/rules/scope-attr-valid.json +12 -0
  500. data/node_modules/axe-core/lib/rules/server-side-image-map.json +18 -0
  501. data/node_modules/axe-core/lib/rules/skip-link-matches.js +1 -0
  502. data/node_modules/axe-core/lib/rules/skip-link.json +13 -0
  503. data/node_modules/axe-core/lib/rules/tabindex.json +12 -0
  504. data/node_modules/axe-core/lib/rules/table-duplicate-name.json +12 -0
  505. data/node_modules/axe-core/lib/rules/table-fake-caption.json +20 -0
  506. data/node_modules/axe-core/lib/rules/td-has-header.json +20 -0
  507. data/node_modules/axe-core/lib/rules/td-headers-attr.json +12 -0
  508. data/node_modules/axe-core/lib/rules/th-has-data-cells.json +13 -0
  509. data/node_modules/axe-core/lib/rules/valid-lang.json +13 -0
  510. data/node_modules/axe-core/lib/rules/video-caption.json +19 -0
  511. data/node_modules/axe-core/lib/rules/video-description.json +19 -0
  512. data/node_modules/axe-core/lib/rules/window-is-top.js +3 -0
  513. data/node_modules/axe-core/lib/rules/xml-lang-mismatch-matches.js +12 -0
  514. data/node_modules/axe-core/locales/de.json +627 -0
  515. data/node_modules/axe-core/locales/fr.json +667 -0
  516. data/node_modules/axe-core/locales/ja.json +728 -0
  517. data/node_modules/axe-core/locales/nl.json +36 -0
  518. data/node_modules/axe-core/package.json +215 -0
  519. data/node_modules/axe-core/sri-history.json +138 -0
  520. data/node_modules/axe-core/typings/axe-core/axe-core-tests.ts +180 -0
  521. data/node_modules/govuk-frontend/all.js +19 -14
  522. data/node_modules/govuk-frontend/components/error-summary/error-summary.js +1 -3
  523. data/node_modules/govuk-frontend/components/summary-list/macro-options.json +12 -6
  524. data/node_modules/govuk-frontend/components/summary-list/template.njk +1 -1
  525. data/node_modules/govuk-frontend/components/tabs/_tabs.scss +1 -1
  526. data/node_modules/govuk-frontend/helpers/_typography.scss +3 -2
  527. data/node_modules/govuk-frontend/objects/_main-wrapper.scss +10 -2
  528. data/node_modules/govuk-frontend/package.json +10 -10
  529. data/node_modules/govuk-frontend/settings/_typography-font.scss +12 -0
  530. metadata +513 -3
  531. data/app/assets/javascripts/component_guide/vendor/axe.min.js +0 -41
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e98d94908dcd54801ec6ff43c75673ec58dd5cdae0ff319dd327c32747eeacd8
4
- data.tar.gz: e7ce8148f919938df450990f50185310d1a47e6b11567fc7e79381a1a5eecd27
3
+ metadata.gz: 05db8bb85d36f1e4dee27a17188474dc6b62ee9bb0bd9de8136bae957bab969a
4
+ data.tar.gz: 92bdbba459fdbde8eab6e6a0dcdfeca551d41986e7054165cd9f72da78f954d0
5
5
  SHA512:
6
- metadata.gz: 9f035aeffe1544aa6ae59a8213997a13843de1b93b40aad089c6ddff12c43ac3686840f56e92bfc977f9c85c39377e6fafbb3fe5fa6ec541b9bb93ed4df7c798
7
- data.tar.gz: af2a2d3c6865e23482b3ea4518ce383aee0c9a39d7e6cc5db3e35ef3136122b732f84462510dd03ce3c93a08eb0c9afa56b14dbfcb54c4d9c6455f1a38b743ff
6
+ metadata.gz: b5fcf822378d70648ed342954d5eb023c1eeefe62d6f1a8900579e29adb501eadb2897e16c8eaa72d2a151bcda1346fa0776639fe38d33eb16b83c89100fe476
7
+ data.tar.gz: 0a23caa4a7a4610548df7251dde6182c590221b2094d666f4b606a5d94f56c6afe8d85fbd7e9433d3cc099db494a5e758ce67931a52fa6d1c11973787baac6db
@@ -1,3 +1,5 @@
1
+ //= require axe-core/axe.js
2
+
1
3
  (function (window, document, axe) {
2
4
  window.GOVUK = window.GOVUK || {}
3
5
 
@@ -58,7 +60,7 @@
58
60
  url + '\n\n' +
59
61
  violations.map(function (violation) {
60
62
  var help = 'Problem: ' + violation.help + ' (' + violation.id + ')'
61
- var helpUrl = 'Try fixing it with this help: ' + _formatHelpUrl(violation.helpUrl)
63
+ var helpUrl = 'Try fixing it with this help: ' + violation.helpUrl
62
64
  var htmlAndTarget = violation.nodes.map(_renderNode).join('\n\n')
63
65
 
64
66
  return [
@@ -94,19 +96,11 @@
94
96
  'id': result.id,
95
97
  'summary': result.help,
96
98
  'selectors': cssSelector,
97
- 'url': _formatHelpUrl(result.helpUrl)
99
+ 'url': result.helpUrl
98
100
  }
99
101
  })
100
102
  }
101
103
 
102
- var _formatHelpUrl = function (helpUrl) {
103
- if (axe.version.indexOf('alpha') === -1) {
104
- console.warn('Deprecation warning: helpUrl formatting is no longer needed so can be deleted')
105
- return helpUrl
106
- }
107
- return helpUrl.replace('3.0.0-alpha', '2.3')
108
- }
109
-
110
104
  var _renderNode = function (node) {
111
105
  return (
112
106
  ' Check the HTML:\n' +
@@ -165,9 +159,9 @@
165
159
  findHeader.textContent = 'Element can be found using the selector:'
166
160
 
167
161
  var findSelectorNode = document.createElement('span')
168
- findSelectorNode.className = 'selector'
162
+ findSelectorNode.className = 'selector'
169
163
  findSelectorNode.textContent = selectorObj.selector
170
-
164
+
171
165
  var findNode = document.createElement('p')
172
166
  findNode.appendChild(findHeader)
173
167
  findNode.appendChild(findSelectorNode)
@@ -0,0 +1,8 @@
1
+ if (typeof Function.prototype.bind === 'undefined') {
2
+ Function.prototype.bind = function (target) {
3
+ var f = this
4
+ return function() {
5
+ return f.apply(target, arguments)
6
+ }
7
+ }
8
+ }
@@ -30,6 +30,11 @@
30
30
  Use `data-toggled-text` on the trigger element to set the
31
31
  text shown when the element is toggled. Defaults to not
32
32
  changing.
33
+
34
+ Use `data-track-category` and `data-track-action` together
35
+ to enable analytics on the element. The label will be
36
+ determined based on the text present within the element
37
+ at the time it was clicked.
33
38
  */
34
39
 
35
40
  window.GOVUK.Modules = window.GOVUK.Modules || {};
@@ -41,6 +46,7 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
41
46
  this.start = function ($el) {
42
47
  var toggleSelector = '[data-controls][data-expanded]';
43
48
  var toggleClass = $el.attr('data-toggle-class') || 'js-hidden';
49
+ var trackable = '[data-track-category][data-track-action]';
44
50
 
45
51
  $el.on('click', toggleSelector, toggle);
46
52
  $el.find(toggleSelector).each(addAriaAttrs);
@@ -79,6 +85,10 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
79
85
  $toggle.text(toggledText);
80
86
  }
81
87
 
88
+ if (GOVUK.analytics && GOVUK.analytics.trackEvent && $toggle.is(trackable)) {
89
+ track($toggle);
90
+ }
91
+
82
92
  event.preventDefault();
83
93
  }
84
94
 
@@ -88,6 +98,12 @@ window.GOVUK.Modules = window.GOVUK.Modules || {};
88
98
 
89
99
  return $el.find(selector);
90
100
  }
101
+
102
+ function track ($toggle) {
103
+ var options = { label: $toggle.data('toggled-text') || $toggle.text() };
104
+
105
+ GOVUK.analytics.trackEvent($toggle.data('track-category'), $toggle.data('track-action'), options);
106
+ }
91
107
  };
92
108
  };
93
109
  })(window.GOVUK.Modules);
@@ -1,27 +1 @@
1
- .gem-c-fieldset {
2
- margin: 0 0 $gem-spacing-scale-4;
3
-
4
- @include media(tablet) {
5
- margin-bottom: $gem-spacing-scale-5;
6
- }
7
-
8
- padding: 0;
9
- border: 0;
10
- @include gem-h-clearfix;
11
- }
12
-
13
- .gem-c-fieldset__legend {
14
- // Fix legend text wrapping in Edge and IE
15
- // 1. IE9-11 & Edge 12-13
16
- // 2. IE8-11
17
- box-sizing: border-box; // 1
18
- display: table; // 2
19
- max-width: 100%; // 1
20
- padding: 0;
21
- // Hack to let legends or elements within legends have margins in webkit browsers
22
- overflow: hidden;
23
-
24
- color: $gem-text-colour;
25
- white-space: normal; // 1
26
- @include core-19;
27
- }
1
+ @import "govuk-frontend/components/fieldset/fieldset";
@@ -1,6 +1,6 @@
1
1
  <% text = text || yield %>
2
- <fieldset class="gem-c-fieldset">
3
- <legend class="gem-c-fieldset__legend">
2
+ <fieldset class="gem-c-fieldset govuk-fieldset">
3
+ <legend class="govuk-fieldset__legend">
4
4
  <%= legend_text %>
5
5
  </legend>
6
6
  <%= text %>
@@ -15,12 +15,14 @@
15
15
  tabindex ||= nil
16
16
  readonly ||= nil
17
17
  maxlength ||= nil
18
+ width ||= nil
18
19
  has_error = error_message || error_items&.any?
19
20
  hint_id = "hint-#{SecureRandom.hex(4)}"
20
21
  error_id = "error-#{SecureRandom.hex(4)}"
21
22
 
22
23
  css_classes = %w(gem-c-input govuk-input)
23
24
  css_classes << "govuk-input--error" if has_error
25
+ css_classes << "govuk-input--width-#{width}" if [2, 3, 4, 5, 10, 20, 30].include?(width)
24
26
  form_group_css_classes = %w(govuk-form-group)
25
27
  form_group_css_classes << "govuk-form-group--error" if has_error
26
28
 
@@ -110,3 +110,10 @@ examples:
110
110
  name: "name"
111
111
  type: "email"
112
112
  autocomplete: "email"
113
+ with_custom_width:
114
+ data:
115
+ label:
116
+ text: "National insurance number"
117
+ hint: It’s on your National insurance card, benefit letter, payslip or P60. For example, ‘QQ 12 34 56 C’.
118
+ name: "name"
119
+ width: 10
@@ -1,3 +1,3 @@
1
1
  module GovukPublishingComponents
2
- VERSION = '16.6.0'.freeze
2
+ VERSION = '16.7.0'.freeze
3
3
  end
@@ -49,7 +49,7 @@
49
49
  "/"
50
50
  ],
51
51
  "_resolved": "git://github.com/alphagov/accessible-autocomplete.git#0c518b4fa79b9a95b544410858486ed9e6403c84",
52
- "_shasum": "92bf9d29a48fa9f71564002a23d43f600ffb1d90",
52
+ "_shasum": "1e3e4aa764d72e003e7263cfc22b42af5e05507f",
53
53
  "_shrinkwrap": null,
54
54
  "_spec": "accessible-autocomplete@git://github.com/alphagov/accessible-autocomplete.git#add-multiselect-support",
55
55
  "_where": "/var/lib/jenkins/workspace/ublishing_components_master-N4FWJIUY4CIFHKGZOAAEVVXODRY3YBORQOPIBBXWX72VUPSGJRRQ",
@@ -0,0 +1,741 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ## [3.2.2](https://github.com/dequelabs/axe-core/compare/v3.2.0...v3.2.2) (2019-03-07)
6
+
7
+ ### Bug Fixes
8
+
9
+ - Avoid "screen is not defined" error [[#1404](https://github.com/dequelabs/axe-core/issues/1404)](<[#1415](https://github.com/dequelabs/axe-core/issues/1415)>) ([c9653a5](https://github.com/dequelabs/axe-core/commit/c9653a5))
10
+
11
+ ## [3.2.1](https://github.com/dequelabs/axe-core/compare/v3.2.0...v3.2.1) (2019-03-06)
12
+
13
+ ### Bug Fixes
14
+
15
+ - Avoid require conflict with Cypress [[#1405](https://github.com/dequelabs/axe-core/issues/1405)](<[#1406](https://github.com/dequelabs/axe-core/issues/1406)>) ([30aa570](https://github.com/dequelabs/axe-core/commit/30aa570))
16
+
17
+ # [3.2.0](https://github.com/dequelabs/axe-core/compare/v3.0.3...v3.2.0) (2019-03-04)
18
+
19
+ ### Bug Fixes
20
+
21
+ - **aria-allowed-role:** Allow iframe role=none ([a4fa44d](https://github.com/dequelabs/axe-core/commit/a4fa44d))
22
+ - **color-contrast:** Prevent crash on large inline elments [#1306](https://github.com/dequelabs/axe-core/issues/1306) ([#1341](https://github.com/dequelabs/axe-core/issues/1341)) ([e1bcafc](https://github.com/dequelabs/axe-core/commit/e1bcafc))
23
+ - **commons:** Allow any node in aria.getRole ([#1258](https://github.com/dequelabs/axe-core/issues/1258)) ([26fa49a](https://github.com/dequelabs/axe-core/commit/26fa49a)), closes [#1163](https://github.com/dequelabs/axe-core/issues/1163)
24
+ - **i18n:** Fix and add Japanese translation ([#1368](https://github.com/dequelabs/axe-core/issues/1368)) ([74fa0a4](https://github.com/dequelabs/axe-core/commit/74fa0a4), [#1291](https://github.com/dequelabs/axe-core/issues/1291)) ([f450176](https://github.com/dequelabs/axe-core/commit/f450176), [#1332](https://github.com/dequelabs/axe-core/issues/1332)) ([0a03c8f](https://github.com/dequelabs/axe-core/commit/0a03c8f), [#1107](https://github.com/dequelabs/axe-core/issues/1107)) ([8138e55](https://github.com/dequelabs/axe-core/commit/8138e55))
25
+ - **messages:** Change messages from "page" to "document" where appropriate ([#1156](https://github.com/dequelabs/axe-core/issues/1156)) ([49dff2b](https://github.com/dequelabs/axe-core/commit/49dff2b)), closes [#983](https://github.com/dequelabs/axe-core/issues/983) [#983](https://github.com/dequelabs/axe-core/issues/983)
26
+ - **rule:** Frame-title applies to wcag242 ([#1312](https://github.com/dequelabs/axe-core/issues/1312)) ([9225ae0](https://github.com/dequelabs/axe-core/commit/9225ae0))
27
+ - **rule:** Prevent th-has-data-cells from crashing on empty rows ([#1285](https://github.com/dequelabs/axe-core/issues/1285)) ([88017be](https://github.com/dequelabs/axe-core/commit/88017be))
28
+ - **typedefs:** Do not require brand and application ([#1264](https://github.com/dequelabs/axe-core/issues/1264)) ([59465dc](https://github.com/dequelabs/axe-core/commit/59465dc)), closes [/github.com/dequelabs/axe-webdriverjs/blob/v2.0.1/lib/axe-injector.js#L28](https://github.com//github.com/dequelabs/axe-webdriverjs/blob/v2.0.1/lib/axe-injector.js/issues/L28)
29
+ - Add Banner comment in generated axe files ([#1112](https://github.com/dequelabs/axe-core/issues/1112)) ([e4788bf](https://github.com/dequelabs/axe-core/commit/e4788bf))
30
+ - Allow div groups for dlitem rule ([#1284](https://github.com/dequelabs/axe-core/issues/1284)) ([d76cd36](https://github.com/dequelabs/axe-core/commit/d76cd36))
31
+ - Allow role presentation and none on object-alt rule ([#1224](https://github.com/dequelabs/axe-core/issues/1224)) ([d475a17](https://github.com/dequelabs/axe-core/commit/d475a17))
32
+ - Avoid IE problems by using nodeName instead of tagName ([#1219](https://github.com/dequelabs/axe-core/issues/1219)) ([cf86ff5](https://github.com/dequelabs/axe-core/commit/cf86ff5))
33
+ - Better unsupported attribute support for aria-roledescription ([#1382](https://github.com/dequelabs/axe-core/issues/1382)) ([93f721e](https://github.com/dequelabs/axe-core/commit/93f721e)), closes [#1216](https://github.com/dequelabs/axe-core/issues/1216)
34
+ - Consider element's accessible names when labels are hidden ([#1187](https://github.com/dequelabs/axe-core/issues/1187)) ([b91b624](https://github.com/dequelabs/axe-core/commit/b91b624)), closes [#1176](https://github.com/dequelabs/axe-core/issues/1176)
35
+ - Correct autocomplete appropriate to handle state terms ([#1121](https://github.com/dequelabs/axe-core/issues/1121)) ([35a4d11](https://github.com/dequelabs/axe-core/commit/35a4d11))
36
+ - Correct autocomplete street address ([#1217](https://github.com/dequelabs/axe-core/issues/1217)) ([27fce9d](https://github.com/dequelabs/axe-core/commit/27fce9d))
37
+ - Correct autocomplete-appropriate node type resolution ([#1318](https://github.com/dequelabs/axe-core/issues/1318)) ([2fc3eeb](https://github.com/dequelabs/axe-core/commit/2fc3eeb))
38
+ - CSSOM generation for shadowRoot in Safari ([#1113](https://github.com/dequelabs/axe-core/issues/1113)) ([a51ae03](https://github.com/dequelabs/axe-core/commit/a51ae03))
39
+ - Don't flag invalid roles in unsupportedrole ([#1328](https://github.com/dequelabs/axe-core/issues/1328)) ([2dfcbaa](https://github.com/dequelabs/axe-core/commit/2dfcbaa))
40
+ - Escape href attribute when generating a CSS selector [[#1137](https://github.com/dequelabs/axe-core/issues/1137)](<[#1366](https://github.com/dequelabs/axe-core/issues/1366)>) ([0c2f42d](https://github.com/dequelabs/axe-core/commit/0c2f42d))
41
+ - Flag hidden elms with disallowed role(s) for review ([#1225](https://github.com/dequelabs/axe-core/issues/1225)) ([bdff141](https://github.com/dequelabs/axe-core/commit/bdff141))
42
+ - Handle noscript and template in dom.isVisible ([#1257](https://github.com/dequelabs/axe-core/issues/1257)) ([e67fc65](https://github.com/dequelabs/axe-core/commit/e67fc65))
43
+ - html-lang-valid should consider xml:lang ([#1152](https://github.com/dequelabs/axe-core/issues/1152)) ([4279c72](https://github.com/dequelabs/axe-core/commit/4279c72))
44
+ - Ignore invalid and allow redundant role in aria-allowed-role ([#1118](https://github.com/dequelabs/axe-core/issues/1118)) ([a0f9b31](https://github.com/dequelabs/axe-core/commit/a0f9b31))
45
+ - Introduce dom.isHiddenWithCSS for use in dom.isFocusable ([#1211](https://github.com/dequelabs/axe-core/issues/1211)) ([2cff417](https://github.com/dequelabs/axe-core/commit/2cff417))
46
+ - Log instead of error on unknown tag ([#1290](https://github.com/dequelabs/axe-core/issues/1290)) ([f82d773](https://github.com/dequelabs/axe-core/commit/f82d773))
47
+ - Prevent TypeErrors in color-contrast checks ([#1320](https://github.com/dequelabs/axe-core/issues/1320)) ([a34165c](https://github.com/dequelabs/axe-core/commit/a34165c)), closes [#1306](https://github.com/dequelabs/axe-core/issues/1306) [#1259](https://github.com/dequelabs/axe-core/issues/1259)
48
+ - Respect preload set to false ([#1298](https://github.com/dequelabs/axe-core/issues/1298)) ([e847d38](https://github.com/dequelabs/axe-core/commit/e847d38))
49
+ - Set preload:true as default ([#1281](https://github.com/dequelabs/axe-core/issues/1281)) ([c9731c8](https://github.com/dequelabs/axe-core/commit/c9731c8))
50
+ - Support skiplinks starting with "/#" ([#1286](https://github.com/dequelabs/axe-core/issues/1286)) ([f93c0c9](https://github.com/dequelabs/axe-core/commit/f93c0c9))
51
+ - Update SC to wcag134 for CSS Orientation Rule ([d3f90df](https://github.com/dequelabs/axe-core/commit/d3f90df))
52
+
53
+ ### Features
54
+
55
+ - **commons:** Add matches methods ([#1270](https://github.com/dequelabs/axe-core/issues/1270)) ([986c97a](https://github.com/dequelabs/axe-core/commit/986c97a)), closes [#1163](https://github.com/dequelabs/axe-core/issues/1163)
56
+ - **image-alt:** require alt text or empty strings ([#1260](https://github.com/dequelabs/axe-core/issues/1260)) ([e24cea9](https://github.com/dequelabs/axe-core/commit/e24cea9))
57
+ - **new-rule:** New aria-hidden-focus rule ([#1166](https://github.com/dequelabs/axe-core/issues/1166)) ([4489965](https://github.com/dequelabs/axe-core/commit/4489965))
58
+ - **new-rule:** Separate form-field-multiple-label from label rule ([#1226](https://github.com/dequelabs/axe-core/issues/1226)) ([0e0063c](https://github.com/dequelabs/axe-core/commit/0e0063c))
59
+ - **new-rule:** Label and Name from Content mismatch WCAG21 (Issue [#1149](https://github.com/dequelabs/axe-core/issues/1149)) ([#1335](https://github.com/dequelabs/axe-core/issues/1335)) ([a4255da](https://github.com/dequelabs/axe-core/commit/a4255da))
60
+ - **rule:** Require unique aria labels in checkboxgroup & radiogroup ([#1316](https://github.com/dequelabs/axe-core/issues/1316)) ([c9b310d](https://github.com/dequelabs/axe-core/commit/c9b310d))
61
+ - Add a reference to the `node` a rule failed on ([#1321](https://github.com/dequelabs/axe-core/issues/1321)) ([68741de](https://github.com/dequelabs/axe-core/commit/68741de)), closes [#1317](https://github.com/dequelabs/axe-core/issues/1317)
62
+ - Add allowEmpty option for aria-valid-attr-value ([#1154](https://github.com/dequelabs/axe-core/issues/1154)) ([89d18d0](https://github.com/dequelabs/axe-core/commit/89d18d0)), closes [#994](https://github.com/dequelabs/axe-core/issues/994)
63
+ - Add environment details to results ([#1353](https://github.com/dequelabs/axe-core/issues/1353)) ([e795f7d](https://github.com/dequelabs/axe-core/commit/e795f7d))
64
+ - ARIA supported checks ([#1254](https://github.com/dequelabs/axe-core/issues/1254)) ([51a18a8](https://github.com/dequelabs/axe-core/commit/51a18a8)), closes [#918](https://github.com/dequelabs/axe-core/issues/918)
65
+ - New rule landmark-complementary-is-top-level ([#1239](https://github.com/dequelabs/axe-core/issues/1239)) ([328ca2c](https://github.com/dequelabs/axe-core/commit/328ca2c))
66
+ - Pass context argument to rule matches ([#1370](https://github.com/dequelabs/axe-core/issues/1370)) ([b374669](https://github.com/dequelabs/axe-core/commit/b374669))
67
+ - Rebuild the accessible text algorithm ([#1163](https://github.com/dequelabs/axe-core/issues/1163)) ([5f420e5](https://github.com/dequelabs/axe-core/commit/5f420e5))
68
+ - Tag review-items rule as 'best-practice' ([#1344](https://github.com/dequelabs/axe-core/issues/1344)) ([05f37de](https://github.com/dequelabs/axe-core/commit/05f37de))
69
+
70
+ ### Performance Improvements
71
+
72
+ - Defer rules rather than checks ([#1308](https://github.com/dequelabs/axe-core/issues/1308)) ([80c1c74](https://github.com/dequelabs/axe-core/commit/80c1c74)), closes [#1172](https://github.com/dequelabs/axe-core/issues/1172)
73
+ - Speed up getNodeFromTree ([#1302](https://github.com/dequelabs/axe-core/issues/1302)) ([5f834ed](https://github.com/dequelabs/axe-core/commit/5f834ed))
74
+ - Update performanceTimer end mark for rules ([#1303](https://github.com/dequelabs/axe-core/issues/1303)) ([a28674e](https://github.com/dequelabs/axe-core/commit/a28674e)), closes [#701](https://github.com/dequelabs/axe-core/issues/701) [#1172](https://github.com/dequelabs/axe-core/issues/1172)
75
+
76
+ ### Deprecate
77
+
78
+ - Deprecate axe.commons.utils namespace ([#1330](https://github.com/dequelabs/axe-core/issues/1330)) ([df93272](https://github.com/dequelabs/axe-core/commit/df93272))
79
+
80
+ <a name="3.1.2"></a>
81
+
82
+ ## [3.1.2](https://github.com/dequelabs/axe-core/compare/v3.0.3...v3.1.2) (2018-09-07)
83
+
84
+ ### Bug Fixes
85
+
86
+ - **i18n:** Update Japanese locale ([#1107](https://github.com/dequelabs/axe-core/issues/1107)) ([8138e55](https://github.com/dequelabs/axe-core/commit/8138e55))
87
+ - autocomplete appropriate to handle state terms ([#1121](https://github.com/dequelabs/axe-core/issues/1121)) ([35a4d11](https://github.com/dequelabs/axe-core/commit/35a4d11))
88
+ - banner comment in generated axe files ([#1112](https://github.com/dequelabs/axe-core/issues/1112)) ([e4788bf](https://github.com/dequelabs/axe-core/commit/e4788bf))
89
+ - ignore invalid and allow redundant role in aria-allowed-role ([#1118](https://github.com/dequelabs/axe-core/issues/1118)) ([a0f9b31](https://github.com/dequelabs/axe-core/commit/a0f9b31))
90
+
91
+ <a name="3.1.1"></a>
92
+
93
+ ## [3.1.1](https://github.com/dequelabs/axe-core/compare/v3.0.3...v3.1.1) (2018-08-28)
94
+
95
+ ### Bug Fixes
96
+
97
+ - Fix broken 3.1.0 release script ([c3b2a52](https://github.com/dequelabs/axe-core/commit/c3b2a52))
98
+
99
+ <a name="3.1.0"></a>
100
+
101
+ # [3.1.0](https://github.com/dequelabs/axe-core/compare/v3.0.3...v3.1.0) (2018-08-28)
102
+
103
+ ### Bug Fixes
104
+
105
+ - **rule fix:** Allow fallback labels when input has id ([#951](https://github.com/dequelabs/axe-core/issues/951)) ([54fa569](https://github.com/dequelabs/axe-core/commit/54fa569))
106
+ - **rule fix:** Updating aria 1.1 allowed attributes ([#964](https://github.com/dequelabs/axe-core/issues/964)) ([c3249c1](https://github.com/dequelabs/axe-core/commit/c3249c1))
107
+ - **rule fix:** Allow aria-errormessage with fallback ([17608b6](https://github.com/dequelabs/axe-core/commit/17608b6))
108
+ - **rule fix:** Ignore abstracts in determining element roles ([1af6088](https://github.com/dequelabs/axe-core/commit/1af6088))
109
+ - **rule fix:** Add combobox and radio required properties ([e80af7a](https://github.com/dequelabs/axe-core/commit/e80af7a))
110
+ - **rule fix:** Allow all ARIA idref(s) to be empty ([1498696](https://github.com/dequelabs/axe-core/commit/1498696))
111
+ - **rule fix:** Allow divs as groups in dl ([#1076](https://github.com/dequelabs/axe-core/issues/1076)) ([f4f6df6](https://github.com/dequelabs/axe-core/commit/f4f6df6)), closes [#262](https://github.com/dequelabs/axe-core/issues/262)
112
+ - **rule fix:** Allow live-region and dialog in `region` rule ([#1073](https://github.com/dequelabs/axe-core/issues/1073)) ([fb6438b](https://github.com/dequelabs/axe-core/commit/fb6438b))
113
+ - **rule fix:** Allow only-dlitem / only-listitem to have any hidden content ([#1098](https://github.com/dequelabs/axe-core/issues/1098)) ([6034aae](https://github.com/dequelabs/axe-core/commit/6034aae)), closes [#1021](https://github.com/dequelabs/axe-core/issues/1021)
114
+ - **rule fix:** Do not flag font icons in color-contrast rule ([#1095](https://github.com/dequelabs/axe-core/issues/1095)) ([b6ac084](https://github.com/dequelabs/axe-core/commit/b6ac084)), closes [#1068](https://github.com/dequelabs/axe-core/issues/1068)
115
+ - **rule fix:** Do not require media captions / descriptions ([#1075](https://github.com/dequelabs/axe-core/issues/1075)) ([289f623](https://github.com/dequelabs/axe-core/commit/289f623)), closes [#816](https://github.com/dequelabs/axe-core/issues/816)
116
+ - **rule fix:** improve messaging for hidden labels ([ae07b8e](https://github.com/dequelabs/axe-core/commit/ae07b8e))
117
+ - **rule fix:** Ignore abstracts in determining element roles ([e3b1e1d](https://github.com/dequelabs/axe-core/commit/e3b1e1d))
118
+ - **rule fix:** Correctly handle role attribute on lists and listitems. ([#949](https://github.com/dequelabs/axe-core/issues/949)) ([3a8729b](https://github.com/dequelabs/axe-core/commit/3a8729b))
119
+ - **core:** allow returning a Promise in jsdom from axe.run ([#943](https://github.com/dequelabs/axe-core/issues/943)) ([3858a1f](https://github.com/dequelabs/axe-core/commit/3858a1f))
120
+ - **typescript:** Correct `Check.evaluate` and `Check.after` type definitions ([#976](https://github.com/dequelabs/axe-core/issues/976)) ([db3ed40](https://github.com/dequelabs/axe-core/commit/db3ed40)), closes [#974](https://github.com/dequelabs/axe-core/issues/974)
121
+ - **typescript:** Typescript interface updates ([#973](https://github.com/dequelabs/axe-core/issues/973)) ([f8c9905](https://github.com/dequelabs/axe-core/commit/f8c9905)), closes [#972](https://github.com/dequelabs/axe-core/issues/972)
122
+ - **messages:** Clearer fail message for aria-labelledby ([956281b](https://github.com/dequelabs/axe-core/commit/956281b))
123
+ - **messages:** Consistent landmark rule/check descriptions ([#1003](https://github.com/dequelabs/axe-core/issues/1003)) ([d792970](https://github.com/dequelabs/axe-core/commit/d792970))
124
+ - **messages:** Show attribute in message ([#1061](https://github.com/dequelabs/axe-core/issues/1061)) ([9ff5d54](https://github.com/dequelabs/axe-core/commit/9ff5d54))
125
+ - Check data is an array of IDs ([d64bc5f](https://github.com/dequelabs/axe-core/commit/d64bc5f))
126
+ - Don't crash with slot elements without shadowDOM ([#977](https://github.com/dequelabs/axe-core/issues/977)) ([cc044af](https://github.com/dequelabs/axe-core/commit/cc044af))
127
+ - Generate jsdoc(umentation) ([9f9b15b](https://github.com/dequelabs/axe-core/commit/9f9b15b))
128
+ - Stop `indexOf` override from crashing Axe ([#968](https://github.com/dequelabs/axe-core/issues/968)) ([e3329ce](https://github.com/dequelabs/axe-core/commit/e3329ce))
129
+ - Use `node.matches*` in place of `prototype.matches*` to prevent IE crash ([#956](https://github.com/dequelabs/axe-core/issues/956)) ([ebdb590](https://github.com/dequelabs/axe-core/commit/ebdb590))
130
+
131
+ ### Features
132
+
133
+ - **new rule:** Added new html-xml-lang-mismatch rule ([#999](https://github.com/dequelabs/axe-core/issues/999)) ([7452a51](https://github.com/dequelabs/axe-core/commit/7452a51))
134
+ - **new rule:** aria-allowed-role ([#945](https://github.com/dequelabs/axe-core/issues/945)) ([c270a46](https://github.com/dequelabs/axe-core/commit/c270a46))
135
+ - **new rule:** css-orientation-lock (wcag21) ([#1081](https://github.com/dequelabs/axe-core/issues/1081)) ([4ae4ea0](https://github.com/dequelabs/axe-core/commit/4ae4ea0))
136
+ - **new rule:** Add WCAG 2.1 autocomplete-valid rule ([e6189ce](https://github.com/dequelabs/axe-core/commit/e6189ce))
137
+ - **rule fix:** Flag unsupported roles ([#1064](https://github.com/dequelabs/axe-core/issues/1064)) ([5515ee6](https://github.com/dequelabs/axe-core/commit/5515ee6))
138
+ - **rule fix:** Remove non-existing "text" role ([#1069](https://github.com/dequelabs/axe-core/issues/1069)) ([67ec1f5](https://github.com/dequelabs/axe-core/commit/67ec1f5))
139
+ - **rule fix:** Break up duplicate-id rule for ARIA+labels and active elements ([2ecfea7](https://github.com/dequelabs/axe-core/commit/2ecfea7))
140
+ - **rule fix:** Tag aria rules as WCAG 2, SC4.1.2 issues ([e7816c0](https://github.com/dequelabs/axe-core/commit/e7816c0))
141
+ - **core:** Allow rules to access CSSOM assets ([#958](https://github.com/dequelabs/axe-core/issues/958)) ([5d6c1fa](https://github.com/dequelabs/axe-core/commit/5d6c1fa))
142
+ - **core:** Add `doT` template engine ([#1024](https://github.com/dequelabs/axe-core/issues/1024)) ([f6f08d4](https://github.com/dequelabs/axe-core/commit/f6f08d4))
143
+ - **commons:** Add aria.getRole method ([1d2a0e4](https://github.com/dequelabs/axe-core/commit/1d2a0e4))
144
+ - **commons:** Add text.isValidAutocomplete method ([8d44fe4](https://github.com/dequelabs/axe-core/commit/8d44fe4))
145
+ - **i18n:** Add runtime localization support ([#1036](https://github.com/dequelabs/axe-core/issues/1036)) ([7d4b70f](https://github.com/dequelabs/axe-core/commit/7d4b70f))
146
+ - **i18n:** Update FR (french) translation file for 3.1 release ([#1089](https://github.com/dequelabs/axe-core/issues/1089)) ([4a5cad0](https://github.com/dequelabs/axe-core/commit/4a5cad0))
147
+ - **i18n:** Update ja (Japanese) locale for 3.1 release ([#1101](https://github.com/dequelabs/axe-core/issues/1101)) ([ef6cd86](https://github.com/dequelabs/axe-core/commit/ef6cd86))
148
+ - **deprecate:** Deprecate audio-caption rule ([#1071](https://github.com/dequelabs/axe-core/issues/1071)) ([3b05fee](https://github.com/dequelabs/axe-core/commit/3b05fee))
149
+
150
+ <a name="3.0.3"></a>
151
+
152
+ ## [3.0.3](https://github.com/dequelabs/axe-core/compare/v3.0.2...v3.0.3) (2018-06-04)
153
+
154
+ ### Bug Fixes
155
+
156
+ - Resolve markdown lint errors. ([efdad94](https://github.com/dequelabs/axe-core/commit/efdad94)) ([aa90155](https://github.com/dequelabs/axe-core/commit/aa90155))
157
+ - Don't require all ARIA IDREFS to exist ([#921](https://github.com/dequelabs/axe-core/issues/921)) ([130efed](https://github.com/dequelabs/axe-core/commit/130efed))
158
+ - generate unsupported aria roles and attributes. ([7315662](https://github.com/dequelabs/axe-core/commit/7315662))
159
+ - Make empty role=lisbox elements as incomplete ([#927](https://github.com/dequelabs/axe-core/issues/927)) ([87e979f](https://github.com/dequelabs/axe-core/commit/87e979f))
160
+ - Prevent axe-core crashing on “-“ as a class name ([#884](https://github.com/dequelabs/axe-core/issues/884)) ([9c4d84e](https://github.com/dequelabs/axe-core/commit/9c4d84e))
161
+ - Right trim URLs before outputting them in getSelector ([#924](https://github.com/dequelabs/axe-core/issues/924)) ([4775a23](https://github.com/dequelabs/axe-core/commit/4775a23)), closes [#788](https://github.com/dequelabs/axe-core/issues/788)
162
+ - td-has-heading to ignore td with its role changed ([#928](https://github.com/dequelabs/axe-core/issues/928)) ([d68af4c](https://github.com/dequelabs/axe-core/commit/d68af4c))
163
+ - Update tags for frame-title rule ([#935](https://github.com/dequelabs/axe-core/issues/935)) ([6436bbf](https://github.com/dequelabs/axe-core/commit/6436bbf))
164
+ - **core:** Define 'axe-core' as an AMD module ([#859](https://github.com/dequelabs/axe-core/issues/859)) ([7b46f63](https://github.com/dequelabs/axe-core/commit/7b46f63)), closes [#849](https://github.com/dequelabs/axe-core/issues/849) [#856](https://github.com/dequelabs/axe-core/issues/856) [#861](https://github.com/dequelabs/axe-core/issues/861) [#847](https://github.com/dequelabs/axe-core/issues/847) [#844](https://github.com/dequelabs/axe-core/issues/844) [#871](https://github.com/dequelabs/axe-core/issues/871) [#849](https://github.com/dequelabs/axe-core/issues/849) [#849](https://github.com/dequelabs/axe-core/issues/849)
165
+ - Update tags to accesskey & link-name rules ([#922](https://github.com/dequelabs/axe-core/issues/922)) ([a8e801c](https://github.com/dequelabs/axe-core/commit/a8e801c))
166
+ - **rule:** Layout-table does not match presentation / none roles ([#828](https://github.com/dequelabs/axe-core/issues/828)) ([5651ecc](https://github.com/dequelabs/axe-core/commit/5651ecc))
167
+ - **rule:** restore labelledBy on unlabeled select ([b7bdf66](https://github.com/dequelabs/axe-core/commit/b7bdf66))
168
+ - **rules:** Allow focusable role=application elements ([b5de450](https://github.com/dequelabs/axe-core/commit/b5de450))
169
+ - **typescript:** Update ElementContext type ([#822](https://github.com/dequelabs/axe-core/issues/822)) ([eb09248](https://github.com/dequelabs/axe-core/commit/eb09248))
170
+
171
+ ### Features
172
+
173
+ - generate ARIA supported documentation for roles and attributes. ([6f095dd](https://github.com/dequelabs/axe-core/commit/6f095dd))
174
+ - generated impacts as a part of rule descriptions ([#898](https://github.com/dequelabs/axe-core/issues/898)) ([6265608](https://github.com/dequelabs/axe-core/commit/6265608))
175
+
176
+ <a name="3.0.2"></a>
177
+
178
+ ## [3.0.2](https://github.com/dequelabs/axe-core/compare/v3.0.0-beta.2...v3.0.2) (2018-04-24)
179
+
180
+ ### Bug Fixes
181
+
182
+ - **rule:** Allow empty aria-labelledby values ([#829](https://github.com/dequelabs/axe-core/issues/829)) ([d280c5f](https://github.com/dequelabs/axe-core/commit/d280c5f))
183
+ - Prevent color rules from crashing Chrome 66+ [#856](https://github.com/dequelabs/axe-core/issues/856) ([#861](https://github.com/dequelabs/axe-core/issues/861)) ([147b665](https://github.com/dequelabs/axe-core/commit/147b665))
184
+ - **respondable:** Identify the current axe instance by its application name when it exists ([affd75c](https://github.com/dequelabs/axe-core/commit/affd75c))
185
+ - **respondable:** Use the hard-coded axe.application name as default ([ab4a49f](https://github.com/dequelabs/axe-core/commit/ab4a49f))
186
+ - **rule:** Ignore hashbang URLs for skiplinks ([#827](https://github.com/dequelabs/axe-core/issues/827)) ([e1f0c57](https://github.com/dequelabs/axe-core/commit/e1f0c57))
187
+ - **rule:** Tag video-caption only as SC 1.2.2 ([87818e7](https://github.com/dequelabs/axe-core/commit/87818e7))
188
+
189
+ <a name="3.0.1"></a>
190
+
191
+ ## [3.0.1](https://github.com/dequelabs/axe-core/compare/v3.0.0...v3.0.1) (2018-04-03)
192
+
193
+ ### Bug Fixes
194
+
195
+ - allow mixed casing of caption/summary ([ca091ac](https://github.com/dequelabs/axe-core/commit/ca091ac))
196
+ - Allow title on button-name ([#794](https://github.com/dequelabs/axe-core/issues/794)) ([e31fe9a](https://github.com/dequelabs/axe-core/commit/e31fe9a))
197
+ - **sri:** Fix incorrect sri-history entries ([#789](https://github.com/dequelabs/axe-core/issues/789)) ([f5f55f3](https://github.com/dequelabs/axe-core/commit/f5f55f3))
198
+
199
+ <a name="3.0.0"></a>
200
+
201
+ # [3.0.0](https://github.com/dequelabs/axe-core/compare/v3.0.0-beta.2...v3.0.0) (2018-03-19)
202
+
203
+ ### Bug Fixes
204
+
205
+ - Allow exclusion of Shadow DOM content ([cc66eb2](https://github.com/dequelabs/axe-core/commit/cc66eb2))
206
+ - Avoid flatTree memory leak ([a902e80](https://github.com/dequelabs/axe-core/commit/a902e80))
207
+ - **main-is-top-level:** Rename check to landmark-is-top-level for greater reuse ([b405af1](https://github.com/dequelabs/axe-core/commit/b405af1))
208
+ - Avoid timing issue with axe cleanup method ([24ea6a7](https://github.com/dequelabs/axe-core/commit/24ea6a7))
209
+ - correct misnamed check ([1e709e0](https://github.com/dequelabs/axe-core/commit/1e709e0))
210
+ - Correct runOnly object for TypeScript definition ([571e984](https://github.com/dequelabs/axe-core/commit/571e984))
211
+ - **has-at-least-one-main:** Rename check to page-has-main, for reusability ([9a9c283](https://github.com/dequelabs/axe-core/commit/9a9c283))
212
+ - **has-no-more-than-one-main:** Rename check to page-no-duplicate for better reuse ([e75324b](https://github.com/dequelabs/axe-core/commit/e75324b))
213
+ - **region:** Ignore forms without accessible name as landmarks ([8ad2718](https://github.com/dequelabs/axe-core/commit/8ad2718))
214
+ - **rule:** skip-link rule doesn't decode URI encoded href's ([818b5cd](https://github.com/dequelabs/axe-core/commit/818b5cd))
215
+ - Ensure all rules have a category tag ([d61e67d](https://github.com/dequelabs/axe-core/commit/d61e67d))
216
+ - make getSelector work with URIs that cannot be shortened ([a113555](https://github.com/dequelabs/axe-core/commit/a113555))
217
+
218
+ ### Features
219
+
220
+ - Make aria-level required with role=heading [#740](https://github.com/dequelabs/axe-core/issues/740) ([64b743f](https://github.com/dequelabs/axe-core/commit/64b743f))
221
+ - **aria:** allow DPUB ARIA roles ([70b48f6](https://github.com/dequelabs/axe-core/commit/70b48f6))
222
+ - **frame-tested:** Use this new rule to test if all frames are available, instead of axe.log ([83cd17d](https://github.com/dequelabs/axe-core/commit/83cd17d))
223
+ - **landmark-contentinfo-is-top-level:** add rule ensuring top level contentinfo ([5692e7d](https://github.com/dequelabs/axe-core/commit/5692e7d))
224
+ - **landmark-no-more-than-one-banner:** add rule ensuring no more than one banner ([6617800](https://github.com/dequelabs/axe-core/commit/6617800))
225
+ - **landmark-no-more-than-one-contentinfo:** add rule ensuring no more than one contentinfo ([82217ef](https://github.com/dequelabs/axe-core/commit/82217ef))
226
+ - **page-has-heading-one:** Added new best-practice rule ([cb8f261](https://github.com/dequelabs/axe-core/commit/cb8f261))
227
+ - **rules:** add new rule aria-dpub-role-fallback ([9470c02](https://github.com/dequelabs/axe-core/commit/9470c02))
228
+ - Make options.runOnly more forgiving about plurality ([fa81f9d](https://github.com/dequelabs/axe-core/commit/fa81f9d))
229
+ - Translated all 3.0 rules to Japanese ([3862e7e](https://github.com/dequelabs/axe-core/commit/3862e7e))
230
+
231
+ ### BREAKING CHANGES
232
+
233
+ - Incorrect use of runOnly now throws errors
234
+ - **main-is-top-level:** The check main-is-top-level is no longer available
235
+ - **has-at-least-one-main:** Original has-at-least-one-main check is no longer available
236
+
237
+ <a name="3.0.0-beta.3"></a>
238
+
239
+ # [3.0.0-beta.3](https://github.com/dequelabs/axe-core/compare/v3.0.0-beta.2...v3.0.0-beta.3) (2018-03-08)
240
+
241
+ ### Bug Fixes
242
+
243
+ - Correct runOnly object for TypeScript definition ([571e984](https://github.com/dequelabs/axe-core/commit/571e984))
244
+ - **has-at-least-one-main:** Rename check to page-has-main, for reusability ([9a9c283](https://github.com/dequelabs/axe-core/commit/9a9c283))
245
+ - **has-no-more-than-one-main:** Rename check to page-no-duplicate for better reuse ([e75324b](https://github.com/dequelabs/axe-core/commit/e75324b))
246
+ - **main-is-top-level:** Rename check to landmark-is-top-level for greater reuse ([b405af1](https://github.com/dequelabs/axe-core/commit/b405af1))
247
+ - **region:** Ignore forms without accessible name as landmarks ([8ad2718](https://github.com/dequelabs/axe-core/commit/8ad2718))
248
+
249
+ ### Features
250
+
251
+ - **aria-required-attr:** Make aria-level required with role=heading [#740](https://github.com/dequelabs/axe-core/issues/740) ([64b743f](https://github.com/dequelabs/axe-core/commit/64b743f))
252
+ - **aria:** allow DPUB ARIA roles ([70b48f6](https://github.com/dequelabs/axe-core/commit/70b48f6))
253
+ - **frame-tested:** Use this new rule to test if all frames are available, instead of axe.log ([83cd17d](https://github.com/dequelabs/axe-core/commit/83cd17d))
254
+ - **landmark-contentinfo-is-top-level:** Add rule ensuring top level contentinfo ([5692e7d](https://github.com/dequelabs/axe-core/commit/5692e7d))
255
+ - **landmark-no-more-than-one-banner:** Add rule ensuring no more than one banner ([6617800](https://github.com/dequelabs/axe-core/commit/6617800))
256
+ - **landmark-no-more-than-one-contentinfo:** Add rule ensuring no more than one contentinfo ([82217ef](https://github.com/dequelabs/axe-core/commit/82217ef))
257
+ - **page-has-heading-one:** Added new best-practice rule ([cb8f261](https://github.com/dequelabs/axe-core/commit/cb8f261))
258
+ - **rules:** Add new rule aria-dpub-role-fallback ([9470c02](https://github.com/dequelabs/axe-core/commit/9470c02))
259
+
260
+ ### BREAKING CHANGES
261
+
262
+ - **main-is-top-level:** The check main-is-top-level is no longer available
263
+ - **has-at-least-one-main:** Original has-at-least-one-main check is no longer available
264
+
265
+ <a name="3.0.0-beta.2"></a>
266
+
267
+ # [3.0.0-beta.2](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.9...v3.0.0-beta.2) (2018-03-01)
268
+
269
+ ### Bug Fixes
270
+
271
+ - **perf:** Improve getSelector performance ([737c81c](https://github.com/dequelabs/axe-core/commit/737c81c))
272
+ - Delete Selenium example, use grunt-axe-selenium instead ([063e701](https://github.com/dequelabs/axe-core/commit/063e701))
273
+
274
+ ### Features
275
+
276
+ - Update Jasmin example ([72d49d5](https://github.com/dequelabs/axe-core/commit/72d49d5))
277
+ - Update Jest+React example ([5b35322](https://github.com/dequelabs/axe-core/commit/5b35322))
278
+ - Update Mocha example ([cf70f9f](https://github.com/dequelabs/axe-core/commit/cf70f9f))
279
+ - Update PhantomJS example ([641b5e6](https://github.com/dequelabs/axe-core/commit/641b5e6))
280
+ - Update QUnit example ([028ae51](https://github.com/dequelabs/axe-core/commit/028ae51))
281
+
282
+ # Change Log
283
+
284
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
285
+
286
+ <a name="3.0.0-beta.1"></a>
287
+
288
+ # [3.0.0-beta.1](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.9...v3.0.0-beta.1) (2018-02-19)
289
+
290
+ ### Bug Fixes
291
+
292
+ - **audio-caption:** Change tag wcag122 to wcag121 [#686](https://github.com/dequelabs/axe-core/issues/686) ([#721](https://github.com/dequelabs/axe-core/issues/721)) ([9c7b9f1](https://github.com/dequelabs/axe-core/commit/9c7b9f1))
293
+ - **empty-heading:** Skip headings with the role changed [#645](https://github.com/dequelabs/axe-core/issues/645) ([#722](https://github.com/dequelabs/axe-core/issues/722)) ([80ef961](https://github.com/dequelabs/axe-core/commit/80ef961))
294
+ - **image-alt:** Exclude svg[role="img"] elements ([#683](https://github.com/dequelabs/axe-core/issues/683)) ([0fe74d8](https://github.com/dequelabs/axe-core/commit/0fe74d8))
295
+ - **label:** Prevent label rule from crashing on input without type [#678](https://github.com/dequelabs/axe-core/issues/678) ([#730](https://github.com/dequelabs/axe-core/issues/730)) ([4498680](https://github.com/dequelabs/axe-core/commit/4498680))
296
+ - **perf:** improve select performance fixes [#702](https://github.com/dequelabs/axe-core/issues/702) ([3274919](https://github.com/dequelabs/axe-core/commit/3274919))
297
+ - **perf:** memoize axe.utils.select ([c9cd122](https://github.com/dequelabs/axe-core/commit/c9cd122))
298
+ - **perf:** normalize all selectors for better cache utilization ([189c165](https://github.com/dequelabs/axe-core/commit/189c165))
299
+ - **perf:** remove need for node sorting from select completely ([7677a6a](https://github.com/dequelabs/axe-core/commit/7677a6a))
300
+ - **performance:** significantly improve the performance of the dom.findUp utility fixes [#696](https://github.com/dequelabs/axe-core/issues/696) ([9197e03](https://github.com/dequelabs/axe-core/commit/9197e03))
301
+ - add shadow dom coverage to all checks ([0e48413](https://github.com/dequelabs/axe-core/commit/0e48413)), closes [#690](https://github.com/dequelabs/axe-core/issues/690)
302
+ - bug-705: cleanupPlugins() should not throw exception when no arguments are provided ([#709](https://github.com/dequelabs/axe-core/issues/709)) ([fb1d2f7](https://github.com/dequelabs/axe-core/commit/fb1d2f7))
303
+ - Remove axe.a11yCheck() ([88d039f](https://github.com/dequelabs/axe-core/commit/88d039f))
304
+ - use virtual methods where applicable ([6ddc4e5](https://github.com/dequelabs/axe-core/commit/6ddc4e5))
305
+ - **type-checking:** Improve typescript axe.run call signature ([#707](https://github.com/dequelabs/axe-core/issues/707)) ([de45ee3](https://github.com/dequelabs/axe-core/commit/de45ee3))
306
+
307
+ ### Performance Improvements
308
+
309
+ - Add performance metrics in Rule.runChecks ([#701](https://github.com/dequelabs/axe-core/issues/701)) ([27fdc2f](https://github.com/dequelabs/axe-core/commit/27fdc2f))
310
+
311
+ <a name="3.0.0-alpha.9"></a>
312
+
313
+ # [3.0.0-alpha.9](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.8...v3.0.0-alpha.9) (2018-01-18)
314
+
315
+ ### Bug Fixes
316
+
317
+ - **aria-errormessage:** adds support for aria-errormessage ([#517](https://github.com/dequelabs/axe-core/issues/517)) ([c96f58c](https://github.com/dequelabs/axe-core/commit/c96f58c))
318
+ - **check:** fix bug with async checks ([441ca95](https://github.com/dequelabs/axe-core/commit/441ca95))
319
+ - **color-contrast:** allow disabled label children ([db26bc9](https://github.com/dequelabs/axe-core/commit/db26bc9))
320
+ - **color-contrast:** incl. elements w/ line breaks ([a464918](https://github.com/dequelabs/axe-core/commit/a464918))
321
+ - **commons/aria:** allow aria-required on checkbox role ([3e21c6e](https://github.com/dequelabs/axe-core/commit/3e21c6e))
322
+ - adjust color algorithm for inline elements ([7f8491e](https://github.com/dequelabs/axe-core/commit/7f8491e))
323
+ - Allow checkbox and radio groups with hidden aria-labelledby targets [#188](https://github.com/dequelabs/axe-core/issues/188) ([6149bde](https://github.com/dequelabs/axe-core/commit/6149bde))
324
+ - Ensure overloaded Array.prototype won't crash axe ([ea57ef2](https://github.com/dequelabs/axe-core/commit/ea57ef2))
325
+ - handle contrast of multiline inline el's ([f9d565f](https://github.com/dequelabs/axe-core/commit/f9d565f))
326
+ - Polyfills are made non-enumerable [#648](https://github.com/dequelabs/axe-core/issues/648). ([#649](https://github.com/dequelabs/axe-core/issues/649)) ([48d8703](https://github.com/dequelabs/axe-core/commit/48d8703))
327
+ - Remove href-no-hash rule ([342cb6e](https://github.com/dequelabs/axe-core/commit/342cb6e))
328
+ - Return inapplicable results ([#473](https://github.com/dequelabs/axe-core/issues/473)). ([c9caeff](https://github.com/dequelabs/axe-core/commit/c9caeff))
329
+ - Several of fixes for IE and Edge ([#577](https://github.com/dequelabs/axe-core/issues/577)) ([63e1272](https://github.com/dequelabs/axe-core/commit/63e1272))
330
+ - skip-link rule now checks if a target exists ([f7f9cf3](https://github.com/dequelabs/axe-core/commit/f7f9cf3))
331
+ - **commons/aria:** allow aria-required on radio role ([58b76a6](https://github.com/dequelabs/axe-core/commit/58b76a6))
332
+ - **commons/dom:** fix isFocusable functions by checking screenreader ([#658](https://github.com/dequelabs/axe-core/issues/658)) ([c665d0b](https://github.com/dequelabs/axe-core/commit/c665d0b)), closes [#647](https://github.com/dequelabs/axe-core/issues/647)
333
+ - **core/utils/querySelectorAll:** Ensure that elements do not get tested twice ([#666](https://github.com/dequelabs/axe-core/issues/666)) ([a76a454](https://github.com/dequelabs/axe-core/commit/a76a454))
334
+ - **required-children:** add combobox > listbox exception ([#559](https://github.com/dequelabs/axe-core/issues/559)) ([8d0991f](https://github.com/dequelabs/axe-core/commit/8d0991f))
335
+ - **rules/region:** Treat `<section>` as a landmark if it has an accessible name [#640](https://github.com/dequelabs/axe-core/issues/640) ([#642](https://github.com/dequelabs/axe-core/issues/642)) ([c11b442](https://github.com/dequelabs/axe-core/commit/c11b442))
336
+
337
+ ### Features
338
+
339
+ - Add rule, landmark-main-is-top-level ([#462](https://github.com/dequelabs/axe-core/issues/462)) ([63040bd](https://github.com/dequelabs/axe-core/commit/63040bd))
340
+ - **collect-results-from-frames:** add frameWaitTime option ([#661](https://github.com/dequelabs/axe-core/issues/661)) ([8016ad1](https://github.com/dequelabs/axe-core/commit/8016ad1))
341
+ - **landmark-one-main:** add rule ensuring one main landmark in document ([#498](https://github.com/dequelabs/axe-core/issues/498)) ([dfc6069](https://github.com/dequelabs/axe-core/commit/dfc6069))
342
+ - **reporter:** return one result of each type instead of zero when resultTypes is used ([#604](https://github.com/dequelabs/axe-core/issues/604)) ([216a83b](https://github.com/dequelabs/axe-core/commit/216a83b)), closes [#603](https://github.com/dequelabs/axe-core/issues/603)
343
+ - **rule:** Flag div/p/spans/headings in focus order ([ce5f3dc](https://github.com/dequelabs/axe-core/commit/ce5f3dc)), closes [#632](https://github.com/dequelabs/axe-core/issues/632)
344
+ - allow options in aria-allowed-attr, aria-required-attr ([#673](https://github.com/dequelabs/axe-core/issues/673)) ([61ac303](https://github.com/dequelabs/axe-core/commit/61ac303))
345
+ - Enable all rules by default ([18263eb](https://github.com/dequelabs/axe-core/commit/18263eb))
346
+ - Improve generated selectors for namespaced elements in XHTML ([#582](https://github.com/dequelabs/axe-core/issues/582)) ([9e3ca45](https://github.com/dequelabs/axe-core/commit/9e3ca45)), closes [#563](https://github.com/dequelabs/axe-core/issues/563)
347
+
348
+ ### BREAKING CHANGES
349
+
350
+ - Skip-link rule no longer requires skip lins with a focusable target.
351
+
352
+ <a name="3.0.0-alpha.8"></a>
353
+
354
+ # [3.0.0-alpha.8](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.7...v3.0.0-alpha.8) (2017-10-20)
355
+
356
+ ### Bug Fixes
357
+
358
+ - **aria-allowed-attr:** align rowcount, colcount, and colindex with 1.1 spec ([#555](https://github.com/dequelabs/axe-core/issues/555)) ([10efa88](https://github.com/dequelabs/axe-core/commit/10efa88))
359
+ - **required-children:** add combobox > listbox exception ([#559](https://github.com/dequelabs/axe-core/issues/559)) ([8d0991f](https://github.com/dequelabs/axe-core/commit/8d0991f))
360
+ - Added message about expected contrast ratio ([#381](https://github.com/dequelabs/axe-core/issues/381)) ([#562](https://github.com/dequelabs/axe-core/issues/562)) ([9e30d64](https://github.com/dequelabs/axe-core/commit/9e30d64))
361
+
362
+ <a name="3.0.0-alpha.6"></a>
363
+
364
+ # [3.0.0-alpha.6](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.3...v3.0.0-alpha.6) (2017-09-27)
365
+
366
+ ### Bug Fixes
367
+
368
+ - **aria:** adding support for aria-expanded in menuitem ([#521](https://github.com/dequelabs/axe-core/issues/521)) ([b30b451](https://github.com/dequelabs/axe-core/commit/b30b451))
369
+ - **color-contrast:** Include `THEAD` and `TBODY` in contrast checks ([#514](https://github.com/dequelabs/axe-core/issues/514)) ([f98f8bd](https://github.com/dequelabs/axe-core/commit/f98f8bd))
370
+ - Match prerelease versions for helpUrl ([#546](https://github.com/dequelabs/axe-core/issues/546)) ([5300577](https://github.com/dequelabs/axe-core/commit/5300577))
371
+ - **helpUrl:** Properly parse x.0 versions ([#550](https://github.com/dequelabs/axe-core/issues/550)) ([a51c5ce](https://github.com/dequelabs/axe-core/commit/a51c5ce))
372
+ - **postinstall:** use node, more conditionals ([#520](https://github.com/dequelabs/axe-core/issues/520)) ([f5b5299](https://github.com/dequelabs/axe-core/commit/f5b5299))
373
+ - **responsible:** Restrict error construction to known errors ([0128a7e](https://github.com/dequelabs/axe-core/commit/0128a7e))
374
+
375
+ <a name="3.0.0-alpha.5"></a>
376
+
377
+ # [3.0.0-alpha.5](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.4...v3.0.0-alpha.5) (2017-09-25)
378
+
379
+ ### Bug Fixes
380
+
381
+ - **aria:** adding support for aria-expanded in menuitem ([#521](https://github.com/dequelabs/axe-core/issues/521)) ([b30b451](https://github.com/dequelabs/axe-core/commit/b30b451))
382
+ - **postinstall:** use node, more conditionals ([#520](https://github.com/dequelabs/axe-core/issues/520)) ([f5b5299](https://github.com/dequelabs/axe-core/commit/f5b5299))
383
+ - Match prerelease versions for helpUrl ([#546](https://github.com/dequelabs/axe-core/issues/546)) ([5300577](https://github.com/dequelabs/axe-core/commit/5300577))
384
+
385
+ <a name="3.0.0-alpha.4"></a>
386
+
387
+ ## [3.0.0-alpha.4](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.3...v3.0.0-alpha.4) (2017-09-08)
388
+
389
+ ### Bug fixes:
390
+
391
+ - fix(color-contrast): Include `THEAD` and `TBODY` in contrast checks (#514) ([f98f8bd](https://github.com/dequelabs/axe-core/commit/f98f8bdacc551579c259aefd88bef41ed8157b68))
392
+ - fix(responsible): Restrict error construction to known errors (#513) ([0128a7e](https://github.com/dequelabs/axe-core/commit/0128a7ea47847b9fa04dbf98327f4bc1760c5e11))
393
+
394
+ ### Features:
395
+
396
+ - docs: Document how to propose axe-core rules (#507) ([cabd329](https://github.com/dequelabs/axe-core/commit/cabd3297afbbfe9dbcc41a168b5529ba52f408ba))
397
+
398
+ <a name="3.0.0-alpha.3"></a>
399
+
400
+ ## [3.0.0-alpha.3](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.2...v3.0.0-alpha.3) (2017-09-06)
401
+
402
+ ### Bug fixes:
403
+
404
+ - Additional ARIA 1.1. support and tests (#509) ([9b4d2ee](https://github.com/dequelabs/axe-core/commit/9b4d2eea4fcb2c48bab71e442da3a588b3893853))
405
+ - fix: RestoreScroll was running out of sync (#508) ([ff3df2d](https://github.com/dequelabs/axe-core/commit/ff3df2d9b2c01c1ca0d12c1fcaf136528287fb6d))
406
+
407
+ <a name="3.0.0-alpha.2"></a>
408
+
409
+ ## [3.0.0-alpha.2](https://github.com/dequelabs/axe-core/compare/v3.0.0-alpha.1...v3.0.0-alpha.2) (2017-09-01)
410
+
411
+ ### Bug Fixes
412
+
413
+ - copy precommit hook as file, not a link ([16f2f76](https://github.com/dequelabs/axe-core/commit/16f2f76))
414
+ - expand tr support for color contrast ([5a77c2f](https://github.com/dequelabs/axe-core/commit/5a77c2f))
415
+ - Ignore shadowRoots on elements that don't allow them ([7f66ee8](https://github.com/dequelabs/axe-core/commit/7f66ee8))
416
+ - only run postinstall if .git exists ([1107783](https://github.com/dequelabs/axe-core/commit/1107783))
417
+ - try telling circle to skip .git/hooks ([674408f](https://github.com/dequelabs/axe-core/commit/674408f))
418
+ - Use frame query that supports shadow dom ([#492](https://github.com/dequelabs/axe-core/issues/492)) ([94008ff](https://github.com/dequelabs/axe-core/commit/94008ff))
419
+
420
+ ### Features
421
+
422
+ - feat: Add sri-history file and update process ([25ddb47](https://github.com/dequelabs/axe-core/commit/25ddb47ec4eec565da330558ee061fd6e34a7c24))
423
+ - feat: add standard-version ([e1e067d](https://github.com/dequelabs/axe-core/commit/e1e067d8f4445042360b2bef957037d5cdd0b7db))
424
+
425
+ <a name="3.0.0-alpha.1"></a>
426
+
427
+ ## [3.0.0-alpha.1](https://github.com/dequelabs/axe-core/compare/v2.3.1...v3.0.0-alpha.1) (2017-08-16)
428
+
429
+ ### Bug Fixes
430
+
431
+ - add copyright banner back in to axe.js ([2aac29a](https://github.com/dequelabs/axe-core/commit/2aac29a))
432
+ - Adjust if formatting ([2211d78](https://github.com/dequelabs/axe-core/commit/2211d78))
433
+ - Align impact levels with Deque Way ([28f4477](https://github.com/dequelabs/axe-core/commit/28f4477))
434
+ - Allow <track> to have no kind attribute ([f996d0f](https://github.com/dequelabs/axe-core/commit/f996d0f))
435
+ - complete shadow support for color matches ([f0fe551](https://github.com/dequelabs/axe-core/commit/f0fe551))
436
+ - **aria:** Allow implicit attribute values ([b949749](https://github.com/dequelabs/axe-core/commit/b949749))
437
+ - Set relatedNodes on color/link-in-block rules ([#407](https://github.com/dequelabs/axe-core/issues/407)) ([7fde0fe](https://github.com/dequelabs/axe-core/commit/7fde0fe))
438
+ - **aria:** Treegrid should own rows, not treeitems ([645d1fa](https://github.com/dequelabs/axe-core/commit/645d1fa))
439
+ - Correct flattened tree algorithm to include the shadow host ([#405](https://github.com/dequelabs/axe-core/issues/405)) ([70985b0](https://github.com/dequelabs/axe-core/commit/70985b0))
440
+ - Ensure all tests pass in Chrome ([0b0240f](https://github.com/dequelabs/axe-core/commit/0b0240f))
441
+ - ensure document is fetched from correct node ([b28597c](https://github.com/dequelabs/axe-core/commit/b28597c))
442
+ - Exclude `any` checks from output if one passed ([#466](https://github.com/dequelabs/axe-core/issues/466)) ([2dd3d68](https://github.com/dequelabs/axe-core/commit/2dd3d68))
443
+ - get tests all passing ([#457](https://github.com/dequelabs/axe-core/issues/457)) ([4874327](https://github.com/dequelabs/axe-core/commit/4874327))
444
+ - get virtualNode with getNodeFromTree ([9bf2870](https://github.com/dequelabs/axe-core/commit/9bf2870))
445
+ - getComposedParent should not return slot nodes ([#438](https://github.com/dequelabs/axe-core/issues/438)) ([0478cbd](https://github.com/dequelabs/axe-core/commit/0478cbd))
446
+ - Have table rules use shadow DOM ([453be1b](https://github.com/dequelabs/axe-core/commit/453be1b))
447
+ - help-same-as-label for shadow DOM ([dbbc544](https://github.com/dequelabs/axe-core/commit/dbbc544))
448
+ - incomplete results should have impact ([fcc51eb](https://github.com/dequelabs/axe-core/commit/fcc51eb))
449
+ - Let findUp work on shadow root children ([0252218](https://github.com/dequelabs/axe-core/commit/0252218))
450
+ - Let findUp work on shadow root children ([#447](https://github.com/dequelabs/axe-core/issues/447)) ([0f98481](https://github.com/dequelabs/axe-core/commit/0f98481))
451
+ - Minimise scrolling in getBackgroundColor ([f4551bb](https://github.com/dequelabs/axe-core/commit/f4551bb))
452
+ - Pass all tests that use accessibleText ([7ea8d6b](https://github.com/dequelabs/axe-core/commit/7ea8d6b))
453
+ - **checks/aria/required-children:** add exception for native input combobox missing textbox ([81ee2e4](https://github.com/dequelabs/axe-core/commit/81ee2e4))
454
+ - use virtualNode in duplicate-img-label ([82e51bc](https://github.com/dequelabs/axe-core/commit/82e51bc))
455
+ - **is-in-text-block:** Add Shadow DOM support ([a125f79](https://github.com/dequelabs/axe-core/commit/a125f79))
456
+ - pass virtualNode to Rule.run ([4534e86](https://github.com/dequelabs/axe-core/commit/4534e86))
457
+ - Properly output error stack ([56f1867](https://github.com/dequelabs/axe-core/commit/56f1867))
458
+ - Remove log statements ([6a6bd73](https://github.com/dequelabs/axe-core/commit/6a6bd73))
459
+ - Solve a few tests ([02daad1](https://github.com/dequelabs/axe-core/commit/02daad1))
460
+ - Use getAttribute(id) over .id ([#374](https://github.com/dequelabs/axe-core/issues/374)) ([353b53f](https://github.com/dequelabs/axe-core/commit/353b53f))
461
+ - Use testUtils in table tests ([364d5cd](https://github.com/dequelabs/axe-core/commit/364d5cd))
462
+ - use virtualNode in title-only check ([5fb06e3](https://github.com/dequelabs/axe-core/commit/5fb06e3))
463
+ - whitespace in hidden-content test ([99e8b73](https://github.com/dequelabs/axe-core/commit/99e8b73))
464
+
465
+ ### Features
466
+
467
+ - Add aria-orientation to additional roles ([bb07c2d](https://github.com/dequelabs/axe-core/commit/bb07c2d))
468
+ - add check testUtils ([6f53279](https://github.com/dequelabs/axe-core/commit/6f53279))
469
+ - Add dom.getComposedParent function ([aac57c0](https://github.com/dequelabs/axe-core/commit/aac57c0))
470
+ - Add Japanese localisation ([5f8c9c8](https://github.com/dequelabs/axe-core/commit/5f8c9c8))
471
+ - Add new ARIA 1.1 values for haspopup ([9f7da56](https://github.com/dequelabs/axe-core/commit/9f7da56))
472
+ - Add option restoreScroll ([d55f3cd](https://github.com/dequelabs/axe-core/commit/d55f3cd))
473
+ - add S.C. 2.4.4 to link-name rule. Fixes [#369](https://github.com/dequelabs/axe-core/issues/369) ([70728e6](https://github.com/dequelabs/axe-core/commit/70728e6))
474
+ - add SD support to color-contrast-matches ([b595b42](https://github.com/dequelabs/axe-core/commit/b595b42))
475
+ - Add shadow DOM support to list checks ([#439](https://github.com/dequelabs/axe-core/issues/439)) ([d92c1a1](https://github.com/dequelabs/axe-core/commit/d92c1a1))
476
+ - Add shadow DOM to duplicate-img-label check ([#443](https://github.com/dequelabs/axe-core/issues/443)) ([2c0b075](https://github.com/dequelabs/axe-core/commit/2c0b075))
477
+ - Add shadow DOM to landmark check ([98f6023](https://github.com/dequelabs/axe-core/commit/98f6023))
478
+ - add shadow support to aria-required-children ([f729e25](https://github.com/dequelabs/axe-core/commit/f729e25))
479
+ - add shadow support to group-labelledby ([e2a9642](https://github.com/dequelabs/axe-core/commit/e2a9642))
480
+ - Add sri-history file and update process ([#476](https://github.com/dequelabs/axe-core/issues/476)) ([25ddb47](https://github.com/dequelabs/axe-core/commit/25ddb47))
481
+ - Allow hidden-content to work through shadow DOM bounds ([789d62e](https://github.com/dequelabs/axe-core/commit/789d62e))
482
+ - fieldset check shadow DOM ([da148d3](https://github.com/dequelabs/axe-core/commit/da148d3))
483
+ - Make explicit check consider shadow DOM ([#442](https://github.com/dequelabs/axe-core/issues/442)) ([9ddfc0f](https://github.com/dequelabs/axe-core/commit/9ddfc0f))
484
+ - Make region check work with shadow DOM ([ecd222f](https://github.com/dequelabs/axe-core/commit/ecd222f))
485
+ - Run text.accessibleText() on virtual elements ([#420](https://github.com/dequelabs/axe-core/issues/420)) ([414fcbe](https://github.com/dequelabs/axe-core/commit/414fcbe))
486
+ - ShadowDOM support for media checks ([0f21574](https://github.com/dequelabs/axe-core/commit/0f21574))
487
+ - **aria:** Support progressive ARIA 1.1 attributes / roles ([#468](https://github.com/dequelabs/axe-core/issues/468)) ([ebb2a5d](https://github.com/dequelabs/axe-core/commit/ebb2a5d))
488
+ - **aria-required-parent:** add Shadow DOM support ([6ed29f0](https://github.com/dequelabs/axe-core/commit/6ed29f0))
489
+ - **duplicate-id:** Add shadow DOM support ([439bc71](https://github.com/dequelabs/axe-core/commit/439bc71))
490
+ - **link-in-text-block:** Add shadow DOM support ([46a2cca](https://github.com/dequelabs/axe-core/commit/46a2cca))
491
+ - **shadow DOM:** Create commons virtual methods, for backward compatibility ([86a4c25](https://github.com/dequelabs/axe-core/commit/86a4c25))
492
+
493
+ <a name="2.4.2"></a>
494
+
495
+ ## [2.4.2](https://github.com/dequelabs/axe-core/compare/v2.4.1...v2.4.2) (2017-09-25)
496
+
497
+ ### Bug Fixes
498
+
499
+ - **aria:** adding support for aria-expanded in menuitem ([#521](https://github.com/dequelabs/axe-core/issues/521)) ([b4c42fe](https://github.com/dequelabs/axe-core/commit/b4c42fe))
500
+ - Match prerelease versions for helpUrl ([#546](https://github.com/dequelabs/axe-core/issues/546)) ([c166708](https://github.com/dequelabs/axe-core/commit/c166708))
501
+ - fix(node4): use var to declare variables ([#541](https://github.com/dequelabs/axe-core/issues/541)) ([c72badb](https://github.com/dequelabs/axe-core/commit/c72badbd55ef0b56b97f0c64a4eb544e31b4b3f1))
502
+
503
+ <a name="2.4.1"></a>
504
+
505
+ ## [2.4.1](https://github.com/dequelabs/axe-core/compare/v2.4.0...v2.4.1) (2017-09-12)
506
+
507
+ ### Bug Fixes
508
+
509
+ - fix(postinstall): use node, more conditionals ([#520](https://github.com/dequelabs/axe-core/issues/520)) ([98fac8a](https://github.com/dequelabs/axe-core/commit/98fac8a))
510
+
511
+ <a name="2.4.0"></a>
512
+
513
+ ## [2.4.0](https://github.com/dequelabs/axe-core/compare/v2.3.1-alpha.2...v2.4.0) (2017-09-08)
514
+
515
+ ### Bug fixes:
516
+
517
+ - fix(color-contrast): Include `THEAD` and `TBODY` in contrast checks (#514) ([f98f8bd](https://github.com/dequelabs/axe-core/commit/f98f8bdacc551579c259aefd88bef41ed8157b68))
518
+ - fix(responsible): Restrict error construction to known errors (#513) ([0128a7e](https://github.com/dequelabs/axe-core/commit/0128a7ea47847b9fa04dbf98327f4bc1760c5e11))
519
+
520
+ ### Features:
521
+
522
+ - docs: Document how to propose axe-core rules (#507) ([cabd329](https://github.com/dequelabs/axe-core/commit/cabd3297afbbfe9dbcc41a168b5529ba52f408ba))
523
+
524
+ <a name="2.4.0-alpha.2"></a>
525
+
526
+ ## [2.4.0-alpha.2](https://github.com/dequelabs/axe-core/compare/v2.4.0-alpha.1...v2.4.0-alpha.2) (2017-09-06)
527
+
528
+ ### Bug fixes:
529
+
530
+ - test(aria): aria-haspopup, aria-modal for 1.1
531
+ - style(test/aria): add line breaks for readability
532
+ - test(aria): add missing roles and properties
533
+ - fix: RestoreScroll was running out of sync (#508)
534
+
535
+ ### Features:
536
+
537
+ - feat(ARIA 1.1): Allow row-index, setsize and posinset on more roles
538
+
539
+ <a name="2.4.0-alpha.1"></a>
540
+
541
+ ## [2.4.0-alpha.1](https://github.com/dequelabs/axe-core/compare/v2.3.0...v2.4.0-alpha.1) (2017-08-31)
542
+
543
+ ### Bug fixes:
544
+
545
+ - chore: add help text for testconfig Grunt task
546
+ - fix: Properly output error stack
547
+ - doc: Add 'on mobile' to viewport rule
548
+ - fix: Ensure all tests pass in Chrome
549
+ - fix: Minimise scrolling in getBackgroundColor
550
+ - chore: Minor build chores for whitespace and lockfile
551
+ - fix: Align impact levels with Deque Way
552
+ - fix: Set relatedNodes on color/link-in-block rules
553
+ - fix: incomplete results should have impact
554
+ - fix(aria): Allow implicit attribute values
555
+ - chore: ignore growl in retire
556
+ - fix: Use getAttribute(id) over .id
557
+ - fix: Exclude `any` checks from output if one passed
558
+ - fix(aria): Treegrid should own rows, not treeitems
559
+ - fix(aria): add exception for native input combobox missing textbox. Fixes #160
560
+ - test: fix aria/required-children for jshint
561
+ - feat: allow link text from single-cell layout table
562
+ - fix: expand tr support for color contrast
563
+ - chore: ignore node_modules in examples when linting
564
+
565
+ ### Features:
566
+
567
+ - feat: Add option `restoreScroll`
568
+ - doc: add more info on testing hidden regions
569
+ - feat: add S.C. 2.4.4 to link-name rule. Fixes #369
570
+ - feat: Add Japanese localisation
571
+ - doc: Add instructions on debugging on CircleCI
572
+ - test: add unit tests for button-has-visible-text
573
+ - chore: add descriptions to Grunt tasks
574
+ - feat(aria): Support progressive ARIA 1.1 attributes / roles
575
+ - feat: Add new ARIA 1.1 values for haspopup
576
+ - feat: Add aria-orientation to additional roles
577
+
578
+ <a name="2.3.1"></a>
579
+
580
+ ## [2.3.1](https://github.com/dequelabs/axe-core/compare/v2.3.0...v2.3.1) (2017-06-15)
581
+
582
+ ### Bug fixes:
583
+
584
+ - Improvements to hidden-content rule
585
+ - Deduplicated langs in valid-lang options
586
+
587
+ <a name="2.3.0"></a>
588
+
589
+ ## [2.3.0](https://github.com/dequelabs/axe-core/compare/v2.2.3...v2.3.0) (2017-06-14)
590
+
591
+ ### Bug fixes:
592
+
593
+ - Overhaul of selectors API
594
+ - New experimental rule for hidden-content
595
+ - New rule for flagging aria-hidden="true" on document.body
596
+ - Color-contrast rule impact is now serious
597
+ - Color-contrast fixes for implicit labels and TR elements
598
+ - Color-contrast puts 1:1 ratio elements into Needs Review/incomplete
599
+ - List category mappings in docs
600
+ - Update axe.source to work with Firefox webdriver
601
+
602
+ <a name="2.2.3"></a>
603
+
604
+ ## [2.2.3](https://github.com/dequelabs/axe-core/compare/v2.2.2...v2.2.3) (2017-06-01)
605
+
606
+ ### Bug fixes:
607
+
608
+ - Removed the disable property from link-in-text-block
609
+
610
+ <a name="2.2.2"></a>
611
+
612
+ ## [2.2.2](https://github.com/dequelabs/axe-core/compare/2.2.1...v2.2.2) (2017-05-25)
613
+
614
+ ### Bug fixes
615
+
616
+ - Stabilize incompleteData API for backwards compatibility
617
+ - Change impact of duplicate-id rule to moderate
618
+
619
+ <a name="2.2.2"></a>
620
+
621
+ ## [2.2.1](https://github.com/dequelabs/axe-core/compare/2.2.0...2.2.1) (2017-05-19)
622
+
623
+ ### Bug fixes
624
+
625
+ - Remove nodes from the color contrast incompleteData API to avoid circular references
626
+
627
+ <a name="2.2.0"></a>
628
+
629
+ ## 2.2.0 (2017-04-24)
630
+
631
+ ### Changes
632
+
633
+ - Add configuration options for iframes: false, selectors: false, and elementRef: true
634
+ - Improve color-contrast rule for disabled elements
635
+ - Add webdriver task for testing mobile viewports
636
+ - Improve audio/video captioning rules
637
+ - Improve th-has-data-cells rule
638
+ - Expose incomplete reasons for color contrast rule as part of Needs Review
639
+ - Implement rule groupings as tags
640
+ - Allow building of axe in multiple languages
641
+ - Empty-heading rule has impact: moderate
642
+
643
+ <a name="2.1.8"></a>
644
+
645
+ ## 2.1.8 (2017-05-21)
646
+
647
+ ### Changes
648
+
649
+ - Move from Snyk to Retire.js
650
+ - Make CI run test-fast task instead of parallel
651
+ - Add documentation on writing integration tests and rules
652
+ - Allow a larger list of languages for HTML-valid-lang rule
653
+ - Add support for [role=img] in image-alt rule
654
+ - Fix bug with innerHeight in get-background-color
655
+ - Improve dom.is-offscreen function
656
+ - Integrate optional performance timer
657
+ - Empty include defaults to document
658
+
659
+ <a name="2.1.7"></a>
660
+
661
+ ## 2.1.7 (2016-12-13)
662
+
663
+ ### Changes
664
+
665
+ - Add promise-based axe.run API method in favor of axe.a11yCheck
666
+ - Move TypeScript definition to root of project
667
+ - Add Inapplicable and Can't Tell results
668
+ - New rule: frame-title-unique
669
+ - Improvements to table rules: td-has-header, th-has-data-cells
670
+ - Color contrast rule performance improvements using polyfilled elementsFromPoint
671
+ - Add better support for implicit roles
672
+ - DQElement supports xPath
673
+
674
+ <a name="2.0.7"></a>
675
+
676
+ ## 2.0.7 (2016-09-28)
677
+
678
+ ### Changes
679
+
680
+ - Add TypeScript definition v1
681
+
682
+ <a name="2.0.5"></a>
683
+
684
+ ## 2.0.5 (2016-04-20)
685
+
686
+ ### Changes
687
+
688
+ - Support for UMD pattern
689
+ - Adds 508 tagging for table rules
690
+ - Fixes race condition for iframes
691
+ - Exclude actual nodes from array checking
692
+
693
+ <a name="2.0.5"></a>
694
+
695
+ ## 2.0.5 (2016-04-13)
696
+
697
+ ### Changes
698
+
699
+ - Improvements to messaging for extensions
700
+
701
+ <a name="2.0.3"></a>
702
+
703
+ ## 2.0.3 (2016-04-12)
704
+
705
+ ### Changes
706
+
707
+ - Security improvements
708
+ - Build includes Babel/ES6
709
+ - Improvements to table rules
710
+ - aXe can be loaded in Node
711
+
712
+ <a name="2.0.0"></a>
713
+
714
+ ## 2.0.0 (2016-03-01)
715
+
716
+ ### Changes
717
+
718
+ - Adds support for AMD modules
719
+ - Fixes incompatibility with Webpack
720
+ - Improvements to rules and checks
721
+ - Help urls no longer hard-coded
722
+ - Improved error handling
723
+
724
+ <a name="1.1.1"></a>
725
+
726
+ ## 1.1.1 (2015-09-04)
727
+
728
+ ### Changes
729
+
730
+ - Adds Travis hooks
731
+ - Adds Sauce Labs
732
+ - Encodes HTML in descriptions
733
+ - Updates messages and help URLs
734
+
735
+ <a name="1.0.1"></a>
736
+
737
+ ## 1.0.1 (2015-06-10)
738
+
739
+ ### Changes
740
+
741
+ - Initial public release