axe-core 4.1.2-canary.ec00dc7 → 4.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (640) hide show
  1. package/CHANGELOG.md +0 -46
  2. package/CONTRIBUTING.md +57 -112
  3. package/README.md +50 -59
  4. package/axe.d.ts +281 -282
  5. package/axe.js +678 -1285
  6. package/axe.min.js +2 -2
  7. package/bower.json +38 -44
  8. package/doc/API.md +133 -178
  9. package/doc/check-message-template.md +3 -3
  10. package/doc/check-options.md +25 -25
  11. package/doc/developer-guide.md +48 -48
  12. package/doc/examples/chrome-debugging-protocol/axe-cdp.js +56 -56
  13. package/doc/examples/chrome-debugging-protocol/package.json +9 -9
  14. package/doc/examples/html-handlebars.md +52 -52
  15. package/doc/examples/jasmine/karma.conf.js +15 -15
  16. package/doc/examples/jasmine/package.json +19 -19
  17. package/doc/examples/jasmine/spec/a11y.js +29 -29
  18. package/doc/examples/jest_react/link.js +3 -3
  19. package/doc/examples/jest_react/link.test.js +15 -15
  20. package/doc/examples/jest_react/package.json +26 -26
  21. package/doc/examples/jest_react/test-helpers.js +12 -12
  22. package/doc/examples/jsdom/package.json +13 -13
  23. package/doc/examples/mocha/karma.conf.js +15 -15
  24. package/doc/examples/mocha/package.json +20 -20
  25. package/doc/examples/phantomjs/axe-phantom.js +36 -36
  26. package/doc/examples/phantomjs/package.json +17 -17
  27. package/doc/examples/puppeteer/axe-puppeteer.js +37 -37
  28. package/doc/examples/puppeteer/package.json +11 -11
  29. package/doc/examples/qunit/package.json +19 -19
  30. package/doc/examples/test-examples.js +22 -22
  31. package/doc/plugins.md +64 -64
  32. package/doc/projects.md +9 -13
  33. package/doc/rule-descriptions.md +100 -104
  34. package/doc/rule-development.md +2 -2
  35. package/doc/standards-object.md +8 -14
  36. package/lib/checks/aria/abstractrole-evaluate.js +8 -8
  37. package/lib/checks/aria/abstractrole.json +12 -12
  38. package/lib/checks/aria/aria-allowed-attr-evaluate.js +25 -24
  39. package/lib/checks/aria/aria-allowed-attr.json +12 -12
  40. package/lib/checks/aria/aria-allowed-role-evaluate.js +21 -21
  41. package/lib/checks/aria/aria-allowed-role.json +20 -20
  42. package/lib/checks/aria/aria-errormessage-evaluate.js +30 -38
  43. package/lib/checks/aria/aria-errormessage.json +16 -16
  44. package/lib/checks/aria/aria-hidden-body-evaluate.js +1 -1
  45. package/lib/checks/aria/aria-hidden-body.json +9 -9
  46. package/lib/checks/aria/aria-required-attr-evaluate.js +34 -34
  47. package/lib/checks/aria/aria-required-attr.json +12 -12
  48. package/lib/checks/aria/aria-required-children-evaluate.js +103 -108
  49. package/lib/checks/aria/aria-required-children.json +30 -30
  50. package/lib/checks/aria/aria-required-parent-evaluate.js +65 -72
  51. package/lib/checks/aria/aria-required-parent.json +12 -12
  52. package/lib/checks/aria/aria-roledescription-evaluate.js +9 -9
  53. package/lib/checks/aria/aria-roledescription.json +21 -21
  54. package/lib/checks/aria/aria-unsupported-attr-evaluate.js +20 -17
  55. package/lib/checks/aria/aria-unsupported-attr.json +9 -9
  56. package/lib/checks/aria/aria-valid-attr-evaluate.js +20 -20
  57. package/lib/checks/aria/aria-valid-attr-value-evaluate.js +71 -82
  58. package/lib/checks/aria/aria-valid-attr-value.json +17 -17
  59. package/lib/checks/aria/aria-valid-attr.json +13 -13
  60. package/lib/checks/aria/fallbackrole-evaluate.js +1 -1
  61. package/lib/checks/aria/fallbackrole.json +9 -9
  62. package/lib/checks/aria/has-global-aria-attribute-evaluate.js +5 -5
  63. package/lib/checks/aria/has-global-aria-attribute.json +12 -12
  64. package/lib/checks/aria/has-widget-role-evaluate.js +6 -6
  65. package/lib/checks/aria/has-widget-role.json +10 -10
  66. package/lib/checks/aria/invalidrole-evaluate.js +12 -12
  67. package/lib/checks/aria/invalidrole.json +12 -12
  68. package/lib/checks/aria/is-element-focusable-evaluate.js +1 -1
  69. package/lib/checks/aria/is-element-focusable.json +9 -9
  70. package/lib/checks/aria/no-implicit-explicit-label-evaluate.js +18 -20
  71. package/lib/checks/aria/no-implicit-explicit-label.json +9 -9
  72. package/lib/checks/aria/unsupportedrole-evaluate.js +2 -2
  73. package/lib/checks/aria/unsupportedrole.json +9 -9
  74. package/lib/checks/aria/valid-scrollable-semantics-evaluate.js +23 -23
  75. package/lib/checks/aria/valid-scrollable-semantics.json +10 -10
  76. package/lib/checks/color/color-contrast-evaluate.js +164 -164
  77. package/lib/checks/color/color-contrast.json +40 -40
  78. package/lib/checks/color/link-in-text-block-evaluate.js +70 -70
  79. package/lib/checks/color/link-in-text-block.json +17 -17
  80. package/lib/checks/forms/autocomplete-appropriate-evaluate.js +68 -68
  81. package/lib/checks/forms/autocomplete-appropriate.json +9 -9
  82. package/lib/checks/forms/autocomplete-valid-evaluate.js +2 -2
  83. package/lib/checks/forms/autocomplete-valid.json +9 -9
  84. package/lib/checks/generic/README.md +5 -5
  85. package/lib/checks/generic/attr-non-space-content-evaluate.js +20 -20
  86. package/lib/checks/generic/has-descendant-after.js +10 -10
  87. package/lib/checks/generic/has-descendant-evaluate.js +12 -12
  88. package/lib/checks/generic/has-text-content-evaluate.js +5 -5
  89. package/lib/checks/generic/matches-definition-evaluate.js +1 -1
  90. package/lib/checks/generic/page-no-duplicate-after.js +2 -2
  91. package/lib/checks/generic/page-no-duplicate-evaluate.js +29 -29
  92. package/lib/checks/keyboard/accesskeys-after.js +19 -19
  93. package/lib/checks/keyboard/accesskeys-evaluate.js +5 -5
  94. package/lib/checks/keyboard/accesskeys.json +10 -10
  95. package/lib/checks/keyboard/focusable-content-evaluate.js +13 -13
  96. package/lib/checks/keyboard/focusable-content.json +9 -9
  97. package/lib/checks/keyboard/focusable-disabled-evaluate.js +30 -30
  98. package/lib/checks/keyboard/focusable-disabled.json +9 -9
  99. package/lib/checks/keyboard/focusable-element-evaluate.js +41 -41
  100. package/lib/checks/keyboard/focusable-element.json +9 -9
  101. package/lib/checks/keyboard/focusable-modal-open-evaluate.js +11 -11
  102. package/lib/checks/keyboard/focusable-modal-open.json +9 -9
  103. package/lib/checks/keyboard/focusable-no-name-evaluate.js +10 -10
  104. package/lib/checks/keyboard/focusable-no-name.json +10 -10
  105. package/lib/checks/keyboard/focusable-not-tabbable-evaluate.js +30 -30
  106. package/lib/checks/keyboard/focusable-not-tabbable.json +9 -9
  107. package/lib/checks/keyboard/landmark-is-top-level-evaluate.js +17 -22
  108. package/lib/checks/keyboard/landmark-is-top-level.json +9 -9
  109. package/lib/checks/keyboard/page-has-heading-one.json +13 -13
  110. package/lib/checks/keyboard/page-has-main.json +13 -13
  111. package/lib/checks/keyboard/page-no-duplicate-banner.json +14 -14
  112. package/lib/checks/keyboard/page-no-duplicate-contentinfo.json +14 -14
  113. package/lib/checks/keyboard/page-no-duplicate-main.json +13 -13
  114. package/lib/checks/keyboard/tabindex-evaluate.js +5 -5
  115. package/lib/checks/keyboard/tabindex.json +9 -9
  116. package/lib/checks/label/alt-space-value-evaluate.js +3 -3
  117. package/lib/checks/label/alt-space-value.json +9 -9
  118. package/lib/checks/label/duplicate-img-label-evaluate.js +12 -12
  119. package/lib/checks/label/duplicate-img-label.json +12 -12
  120. package/lib/checks/label/explicit-evaluate.js +20 -25
  121. package/lib/checks/label/explicit.json +10 -10
  122. package/lib/checks/label/help-same-as-label-evaluate.js +17 -17
  123. package/lib/checks/label/help-same-as-label.json +10 -10
  124. package/lib/checks/label/hidden-explicit-label-evaluate.js +15 -21
  125. package/lib/checks/label/hidden-explicit-label.json +10 -10
  126. package/lib/checks/label/implicit-evaluate.js +9 -9
  127. package/lib/checks/label/implicit.json +10 -10
  128. package/lib/checks/label/label-content-name-mismatch-evaluate.js +42 -42
  129. package/lib/checks/label/label-content-name-mismatch.json +13 -13
  130. package/lib/checks/label/multiple-label-evaluate.js +32 -32
  131. package/lib/checks/label/multiple-label.json +9 -9
  132. package/lib/checks/label/title-only-evaluate.js +4 -4
  133. package/lib/checks/label/title-only.json +9 -9
  134. package/lib/checks/landmarks/landmark-is-unique-after.js +20 -20
  135. package/lib/checks/landmarks/landmark-is-unique-evaluate.js +6 -6
  136. package/lib/checks/landmarks/landmark-is-unique.json +10 -10
  137. package/lib/checks/language/has-lang-evaluate.js +25 -25
  138. package/lib/checks/language/has-lang.json +15 -15
  139. package/lib/checks/language/valid-lang-evaluate.js +25 -25
  140. package/lib/checks/language/valid-lang.json +12 -12
  141. package/lib/checks/language/xml-lang-mismatch-evaluate.js +3 -3
  142. package/lib/checks/language/xml-lang-mismatch.json +9 -9
  143. package/lib/checks/lists/dlitem-evaluate.js +19 -19
  144. package/lib/checks/lists/dlitem.json +9 -9
  145. package/lib/checks/lists/listitem-evaluate.js +17 -17
  146. package/lib/checks/lists/listitem.json +12 -12
  147. package/lib/checks/lists/only-dlitems-evaluate.js +44 -44
  148. package/lib/checks/lists/only-dlitems.json +9 -9
  149. package/lib/checks/lists/only-listitems-evaluate.js +56 -56
  150. package/lib/checks/lists/only-listitems.json +12 -12
  151. package/lib/checks/lists/structured-dlitems-evaluate.js +20 -20
  152. package/lib/checks/lists/structured-dlitems.json +9 -9
  153. package/lib/checks/media/caption-evaluate.js +6 -6
  154. package/lib/checks/media/caption.json +9 -9
  155. package/lib/checks/media/frame-tested-evaluate.js +20 -20
  156. package/lib/checks/media/frame-tested.json +13 -13
  157. package/lib/checks/media/no-autoplay-audio-evaluate.js +81 -81
  158. package/lib/checks/media/no-autoplay-audio.json +13 -13
  159. package/lib/checks/mobile/css-orientation-lock-evaluate.js +250 -250
  160. package/lib/checks/mobile/css-orientation-lock.json +13 -13
  161. package/lib/checks/mobile/meta-viewport-large.json +13 -13
  162. package/lib/checks/mobile/meta-viewport-scale-evaluate.js +56 -56
  163. package/lib/checks/mobile/meta-viewport.json +12 -12
  164. package/lib/checks/navigation/header-present.json +13 -13
  165. package/lib/checks/navigation/heading-order-after.js +11 -134
  166. package/lib/checks/navigation/heading-order-evaluate.js +13 -51
  167. package/lib/checks/navigation/heading-order.json +10 -10
  168. package/lib/checks/navigation/identical-links-same-purpose-after.js +86 -86
  169. package/lib/checks/navigation/identical-links-same-purpose-evaluate.js +23 -23
  170. package/lib/checks/navigation/identical-links-same-purpose.json +10 -10
  171. package/lib/checks/navigation/internal-link-present-evaluate.js +4 -4
  172. package/lib/checks/navigation/internal-link-present.json +9 -9
  173. package/lib/checks/navigation/landmark.json +12 -12
  174. package/lib/checks/navigation/meta-refresh-evaluate.js +3 -3
  175. package/lib/checks/navigation/meta-refresh.json +9 -9
  176. package/lib/checks/navigation/p-as-heading-evaluate.js +72 -72
  177. package/lib/checks/navigation/p-as-heading.json +28 -28
  178. package/lib/checks/navigation/region-evaluate.js +73 -73
  179. package/lib/checks/navigation/region.json +12 -12
  180. package/lib/checks/navigation/skip-link-evaluate.js +5 -5
  181. package/lib/checks/navigation/skip-link.json +10 -10
  182. package/lib/checks/navigation/unique-frame-title-after.js +8 -8
  183. package/lib/checks/navigation/unique-frame-title-evaluate.js +3 -3
  184. package/lib/checks/navigation/unique-frame-title.json +10 -10
  185. package/lib/checks/parsing/duplicate-id-active.json +10 -10
  186. package/lib/checks/parsing/duplicate-id-after.js +8 -8
  187. package/lib/checks/parsing/duplicate-id-aria.json +10 -10
  188. package/lib/checks/parsing/duplicate-id-evaluate.js +15 -15
  189. package/lib/checks/parsing/duplicate-id.json +10 -10
  190. package/lib/checks/shared/aria-label-evaluate.js +1 -1
  191. package/lib/checks/shared/aria-label.json +9 -9
  192. package/lib/checks/shared/aria-labelledby-evaluate.js +5 -5
  193. package/lib/checks/shared/aria-labelledby.json +10 -10
  194. package/lib/checks/shared/avoid-inline-spacing-evaluate.js +10 -10
  195. package/lib/checks/shared/avoid-inline-spacing.json +15 -15
  196. package/lib/checks/shared/button-has-visible-text.json +10 -10
  197. package/lib/checks/shared/doc-has-title-evaluate.js +2 -2
  198. package/lib/checks/shared/doc-has-title.json +9 -9
  199. package/lib/checks/shared/exists-evaluate.js +1 -1
  200. package/lib/checks/shared/exists.json +9 -9
  201. package/lib/checks/shared/has-alt-evaluate.js +5 -5
  202. package/lib/checks/shared/has-alt.json +9 -9
  203. package/lib/checks/shared/has-visible-text.json +10 -10
  204. package/lib/checks/shared/is-on-screen-evaluate.js +2 -2
  205. package/lib/checks/shared/is-on-screen.json +9 -9
  206. package/lib/checks/shared/non-empty-alt.json +15 -15
  207. package/lib/checks/shared/non-empty-if-present-evaluate.js +13 -13
  208. package/lib/checks/shared/non-empty-if-present.json +12 -12
  209. package/lib/checks/shared/non-empty-placeholder.json +15 -15
  210. package/lib/checks/shared/non-empty-title.json +15 -15
  211. package/lib/checks/shared/non-empty-value.json +15 -15
  212. package/lib/checks/shared/presentational-role-evaluate.js +29 -29
  213. package/lib/checks/shared/presentational-role.json +14 -14
  214. package/lib/checks/shared/role-none.json +17 -17
  215. package/lib/checks/shared/role-presentation.json +17 -17
  216. package/lib/checks/shared/svg-non-empty-title-evaluate.js +20 -24
  217. package/lib/checks/shared/svg-non-empty-title.json +13 -13
  218. package/lib/checks/tables/caption-faked-evaluate.js +8 -8
  219. package/lib/checks/tables/caption-faked.json +9 -9
  220. package/lib/checks/tables/html5-scope-evaluate.js +4 -4
  221. package/lib/checks/tables/html5-scope.json +9 -9
  222. package/lib/checks/tables/same-caption-summary-evaluate.js +6 -6
  223. package/lib/checks/tables/same-caption-summary.json +9 -9
  224. package/lib/checks/tables/scope-value-evaluate.js +2 -2
  225. package/lib/checks/tables/scope-value.json +12 -12
  226. package/lib/checks/tables/td-has-header-evaluate.js +21 -21
  227. package/lib/checks/tables/td-has-header.json +9 -9
  228. package/lib/checks/tables/td-headers-attr-evaluate.js +48 -48
  229. package/lib/checks/tables/td-headers-attr.json +10 -10
  230. package/lib/checks/tables/th-has-data-cells-evaluate.js +64 -64
  231. package/lib/checks/tables/th-has-data-cells.json +10 -10
  232. package/lib/checks/visibility/hidden-content-evaluate.js +28 -28
  233. package/lib/checks/visibility/hidden-content.json +10 -10
  234. package/lib/commons/aria/allowed-attr.js +12 -12
  235. package/lib/commons/aria/arialabel-text.js +7 -7
  236. package/lib/commons/aria/arialabelledby-text.js +41 -41
  237. package/lib/commons/aria/get-accessible-refs.js +41 -41
  238. package/lib/commons/aria/get-element-unallowed-roles.js +69 -69
  239. package/lib/commons/aria/get-explicit-role.js +14 -14
  240. package/lib/commons/aria/get-owned-virtual.js +14 -14
  241. package/lib/commons/aria/get-role-type.js +5 -5
  242. package/lib/commons/aria/get-role.js +89 -89
  243. package/lib/commons/aria/get-roles-by-type.js +1 -1
  244. package/lib/commons/aria/get-roles-with-name-from-contents.js +1 -1
  245. package/lib/commons/aria/implicit-nodes.js +6 -6
  246. package/lib/commons/aria/implicit-role.js +32 -32
  247. package/lib/commons/aria/is-accessible-ref.js +1 -1
  248. package/lib/commons/aria/is-aria-role-allowed-on-element.js +12 -12
  249. package/lib/commons/aria/is-unsupported-role.js +2 -2
  250. package/lib/commons/aria/is-valid-role.js +6 -6
  251. package/lib/commons/aria/label-virtual.js +24 -24
  252. package/lib/commons/aria/label.js +2 -2
  253. package/lib/commons/aria/lookup-table.js +2395 -2395
  254. package/lib/commons/aria/named-from-contents.js +19 -19
  255. package/lib/commons/aria/required-attr.js +5 -5
  256. package/lib/commons/aria/required-context.js +5 -5
  257. package/lib/commons/aria/required-owned.js +5 -5
  258. package/lib/commons/aria/validate-attr-value.js +40 -44
  259. package/lib/commons/aria/validate-attr.js +2 -2
  260. package/lib/commons/color/center-point-of-rect.js +15 -15
  261. package/lib/commons/color/color.js +224 -224
  262. package/lib/commons/color/element-has-image.js +14 -14
  263. package/lib/commons/color/element-is-distinct.js +56 -55
  264. package/lib/commons/color/filtered-rect-stack.js +32 -32
  265. package/lib/commons/color/flatten-colors.js +6 -6
  266. package/lib/commons/color/get-background-color.js +40 -40
  267. package/lib/commons/color/get-background-stack.js +71 -71
  268. package/lib/commons/color/get-contrast.js +9 -9
  269. package/lib/commons/color/get-foreground-color.js +34 -34
  270. package/lib/commons/color/get-own-background-color.js +7 -7
  271. package/lib/commons/color/get-rect-stack.js +14 -14
  272. package/lib/commons/color/get-text-shadow-colors.js +87 -87
  273. package/lib/commons/color/has-valid-contrast-ratio.js +10 -10
  274. package/lib/commons/color/incomplete-data.js +37 -37
  275. package/lib/commons/dom/find-elms-in-context.js +11 -11
  276. package/lib/commons/dom/find-up-virtual.js +31 -31
  277. package/lib/commons/dom/find-up.js +1 -1
  278. package/lib/commons/dom/focus-disabled.js +13 -13
  279. package/lib/commons/dom/get-composed-parent.js +14 -14
  280. package/lib/commons/dom/get-element-by-reference.js +18 -18
  281. package/lib/commons/dom/get-element-coordinates.js +12 -12
  282. package/lib/commons/dom/get-element-stack.js +10 -10
  283. package/lib/commons/dom/get-rect-stack.js +427 -427
  284. package/lib/commons/dom/get-scroll-offset.js +17 -17
  285. package/lib/commons/dom/get-tabbable-elements.js +9 -9
  286. package/lib/commons/dom/get-text-element-stack.js +49 -64
  287. package/lib/commons/dom/get-viewport-size.js +19 -19
  288. package/lib/commons/dom/has-content-virtual.js +29 -29
  289. package/lib/commons/dom/has-content.js +2 -2
  290. package/lib/commons/dom/idrefs.js +15 -15
  291. package/lib/commons/dom/inserted-into-focus-order.js +6 -6
  292. package/lib/commons/dom/is-focusable.js +12 -16
  293. package/lib/commons/dom/is-hidden-with-css.js +47 -47
  294. package/lib/commons/dom/is-html5.js +5 -5
  295. package/lib/commons/dom/is-in-text-block.js +74 -74
  296. package/lib/commons/dom/is-modal-open.js +78 -78
  297. package/lib/commons/dom/is-natively-focusable.js +22 -22
  298. package/lib/commons/dom/is-node.js +1 -1
  299. package/lib/commons/dom/is-offscreen.js +43 -43
  300. package/lib/commons/dom/is-opaque.js +4 -4
  301. package/lib/commons/dom/is-skip-link.js +27 -27
  302. package/lib/commons/dom/is-visible.js +147 -147
  303. package/lib/commons/dom/is-visual-content.js +33 -33
  304. package/lib/commons/dom/reduce-to-elements-below-floating.js +18 -18
  305. package/lib/commons/dom/shadow-elements-from-point.js +29 -29
  306. package/lib/commons/dom/url-props-from-attribute.js +100 -100
  307. package/lib/commons/dom/visually-contains.js +77 -77
  308. package/lib/commons/dom/visually-overlaps.js +29 -29
  309. package/lib/commons/forms/is-aria-combobox.js +2 -2
  310. package/lib/commons/forms/is-aria-listbox.js +2 -2
  311. package/lib/commons/forms/is-aria-range.js +2 -2
  312. package/lib/commons/forms/is-aria-textbox.js +2 -2
  313. package/lib/commons/forms/is-disabled.js +20 -20
  314. package/lib/commons/forms/is-native-select.js +3 -3
  315. package/lib/commons/forms/is-native-textbox.js +17 -17
  316. package/lib/commons/index.js +9 -9
  317. package/lib/commons/matches/attributes.js +4 -4
  318. package/lib/commons/matches/condition.js +1 -1
  319. package/lib/commons/matches/explicit-role.js +1 -1
  320. package/lib/commons/matches/from-definition.js +30 -30
  321. package/lib/commons/matches/from-function.js +12 -12
  322. package/lib/commons/matches/from-primative.js +20 -20
  323. package/lib/commons/matches/implicit-role.js +1 -1
  324. package/lib/commons/matches/matches.js +1 -1
  325. package/lib/commons/matches/node-name.js +4 -4
  326. package/lib/commons/matches/properties.js +4 -4
  327. package/lib/commons/matches/semantic-role.js +1 -1
  328. package/lib/commons/standards/get-aria-roles-by-type.js +3 -3
  329. package/lib/commons/standards/get-aria-roles-supporting-name-from-content.js +8 -8
  330. package/lib/commons/standards/get-element-spec.js +42 -42
  331. package/lib/commons/standards/get-elements-by-content-type.js +15 -15
  332. package/lib/commons/standards/get-global-aria-attrs.js +8 -8
  333. package/lib/commons/standards/implicit-html-roles.js +140 -140
  334. package/lib/commons/table/get-all-cells.js +16 -16
  335. package/lib/commons/table/get-cell-position.js +15 -15
  336. package/lib/commons/table/get-headers.js +65 -72
  337. package/lib/commons/table/get-scope.js +42 -42
  338. package/lib/commons/table/is-column-header.js +1 -1
  339. package/lib/commons/table/is-data-cell.js +10 -10
  340. package/lib/commons/table/is-data-table.js +176 -176
  341. package/lib/commons/table/is-header.js +8 -8
  342. package/lib/commons/table/is-row-header.js +1 -1
  343. package/lib/commons/table/to-grid.js +20 -31
  344. package/lib/commons/table/traverse.js +55 -55
  345. package/lib/commons/text/accessible-text-virtual.js +90 -90
  346. package/lib/commons/text/accessible-text.js +2 -2
  347. package/lib/commons/text/form-control-value.js +112 -113
  348. package/lib/commons/text/has-unicode.js +17 -17
  349. package/lib/commons/text/index.js +4 -4
  350. package/lib/commons/text/is-human-interpretable.js +34 -34
  351. package/lib/commons/text/is-icon-ligature.js +194 -194
  352. package/lib/commons/text/is-valid-autocomplete.js +104 -104
  353. package/lib/commons/text/label-text.js +39 -39
  354. package/lib/commons/text/label-virtual.js +26 -26
  355. package/lib/commons/text/label.js +2 -2
  356. package/lib/commons/text/native-element-type.js +97 -97
  357. package/lib/commons/text/native-text-alternative.js +19 -19
  358. package/lib/commons/text/native-text-methods.js +113 -113
  359. package/lib/commons/text/remove-unicode.js +15 -15
  360. package/lib/commons/text/sanitize.js +8 -8
  361. package/lib/commons/text/subtree-text.js +89 -47
  362. package/lib/commons/text/title-text.js +14 -14
  363. package/lib/commons/text/unicode.js +56 -56
  364. package/lib/commons/text/unsupported.js +1 -1
  365. package/lib/commons/text/visible-text-nodes.js +12 -12
  366. package/lib/commons/text/visible-virtual.js +21 -21
  367. package/lib/commons/text/visible.js +2 -2
  368. package/lib/core/base/audit.js +613 -613
  369. package/lib/core/base/cache.js +22 -22
  370. package/lib/core/base/check-result.js +20 -20
  371. package/lib/core/base/check.js +132 -132
  372. package/lib/core/base/context.js +175 -179
  373. package/lib/core/base/metadata-function-map.js +167 -179
  374. package/lib/core/base/rule-result.js +25 -25
  375. package/lib/core/base/rule.js +473 -475
  376. package/lib/core/base/virtual-node/abstract-virtual-node.js +33 -37
  377. package/lib/core/base/virtual-node/serial-virtual-node.js +76 -85
  378. package/lib/core/base/virtual-node/virtual-node.js +151 -177
  379. package/lib/core/constants.js +50 -50
  380. package/lib/core/core.js +7 -11
  381. package/lib/core/imports/index.js +14 -14
  382. package/lib/core/index.js +21 -19
  383. package/lib/core/log.js +4 -4
  384. package/lib/core/public/cleanup.js +43 -41
  385. package/lib/core/public/configure.js +112 -112
  386. package/lib/core/public/get-rules.js +19 -19
  387. package/lib/core/public/load.js +49 -47
  388. package/lib/core/public/plugins.js +24 -22
  389. package/lib/core/public/reporter.js +12 -12
  390. package/lib/core/public/reset.js +6 -6
  391. package/lib/core/public/run-rules.js +76 -61
  392. package/lib/core/public/run-virtual-rule.js +42 -47
  393. package/lib/core/public/run.js +154 -154
  394. package/lib/core/reporters/helpers/failure-summary.js +22 -22
  395. package/lib/core/reporters/helpers/get-environment-data.js +29 -29
  396. package/lib/core/reporters/helpers/incomplete-fallback-msg.js +3 -3
  397. package/lib/core/reporters/helpers/index.js +8 -8
  398. package/lib/core/reporters/helpers/process-aggregate.js +69 -69
  399. package/lib/core/reporters/na.js +16 -16
  400. package/lib/core/reporters/no-passes.js +12 -12
  401. package/lib/core/reporters/raw-env.js +9 -9
  402. package/lib/core/reporters/raw.js +24 -24
  403. package/lib/core/reporters/v1.js +23 -23
  404. package/lib/core/reporters/v2.js +13 -13
  405. package/lib/core/utils/aggregate-checks.js +63 -63
  406. package/lib/core/utils/aggregate-node-results.js +44 -44
  407. package/lib/core/utils/aggregate-result.js +24 -24
  408. package/lib/core/utils/aggregate.js +6 -6
  409. package/lib/core/utils/are-styles-set.js +14 -14
  410. package/lib/core/utils/assert.js +3 -3
  411. package/lib/core/utils/check-helper.js +23 -23
  412. package/lib/core/utils/clone.js +18 -18
  413. package/lib/core/utils/closest.js +12 -12
  414. package/lib/core/utils/collect-results-from-frames.js +45 -63
  415. package/lib/core/utils/contains.js +29 -29
  416. package/lib/core/utils/css-parser.js +0 -1
  417. package/lib/core/utils/deep-merge.js +18 -18
  418. package/lib/core/utils/dq-element.js +88 -88
  419. package/lib/core/utils/element-matches.js +29 -29
  420. package/lib/core/utils/escape-selector.js +63 -63
  421. package/lib/core/utils/extend-meta-data.js +11 -11
  422. package/lib/core/utils/finalize-result.js +13 -15
  423. package/lib/core/utils/find-by.js +3 -3
  424. package/lib/core/utils/get-all-checks.js +5 -5
  425. package/lib/core/utils/get-ancestry.js +16 -16
  426. package/lib/core/utils/get-base-lang.js +7 -7
  427. package/lib/core/utils/get-check-message.js +9 -9
  428. package/lib/core/utils/get-check-option.js +26 -26
  429. package/lib/core/utils/get-flattened-tree.js +88 -88
  430. package/lib/core/utils/get-friendly-uri-end.js +87 -87
  431. package/lib/core/utils/get-node-attributes.js +9 -10
  432. package/lib/core/utils/get-node-from-tree.js +2 -2
  433. package/lib/core/utils/get-root-node.js +6 -6
  434. package/lib/core/utils/get-scroll-state.js +26 -26
  435. package/lib/core/utils/get-scroll.js +26 -26
  436. package/lib/core/utils/get-selector.js +256 -256
  437. package/lib/core/utils/get-shadow-selector.js +19 -19
  438. package/lib/core/utils/get-stylesheet-factory.js +32 -32
  439. package/lib/core/utils/get-xpath.js +65 -65
  440. package/lib/core/utils/index.js +3 -6
  441. package/lib/core/utils/inject-style.js +24 -24
  442. package/lib/core/utils/is-hidden.js +41 -41
  443. package/lib/core/utils/is-html-element.js +122 -122
  444. package/lib/core/utils/is-node-in-context.js +24 -24
  445. package/lib/core/utils/is-shadow-root.js +28 -28
  446. package/lib/core/utils/is-xhtml.js +4 -4
  447. package/lib/core/utils/matches.js +170 -176
  448. package/lib/core/utils/memoize.js +7 -7
  449. package/lib/core/utils/merge-results.js +91 -91
  450. package/lib/core/utils/node-sorter.js +11 -11
  451. package/lib/core/utils/parse-crossorigin-stylesheet.js +41 -41
  452. package/lib/core/utils/parse-sameorigin-stylesheet.js +70 -70
  453. package/lib/core/utils/parse-stylesheet.js +41 -41
  454. package/lib/core/utils/performance-timer.js +112 -112
  455. package/lib/core/utils/pollyfills.js +263 -263
  456. package/lib/core/utils/preload-cssom.js +134 -134
  457. package/lib/core/utils/preload-media.js +42 -42
  458. package/lib/core/utils/preload.js +110 -110
  459. package/lib/core/utils/process-message.js +43 -45
  460. package/lib/core/utils/publish-metadata.js +68 -68
  461. package/lib/core/utils/query-selector-all-filter.js +77 -79
  462. package/lib/core/utils/query-selector-all.js +1 -1
  463. package/lib/core/utils/queue.js +113 -113
  464. package/lib/core/utils/respondable.js +218 -119
  465. package/lib/core/utils/rule-should-run.js +53 -53
  466. package/lib/core/utils/select.js +54 -54
  467. package/lib/core/utils/send-command-to-frame.js +43 -43
  468. package/lib/core/utils/set-scroll-state.js +7 -7
  469. package/lib/core/utils/to-array.js +1 -1
  470. package/lib/core/utils/token-list.js +4 -4
  471. package/lib/core/utils/unique-array.js +3 -3
  472. package/lib/core/utils/uuid.js +161 -170
  473. package/lib/core/utils/valid-input-type.js +25 -25
  474. package/lib/core/utils/valid-langs.js +30 -30
  475. package/lib/misc/any-failure-summary.json +4 -4
  476. package/lib/misc/incomplete-fallback.json +1 -1
  477. package/lib/misc/none-failure-summary.json +4 -4
  478. package/lib/rules/accesskeys.json +11 -11
  479. package/lib/rules/area-alt.json +20 -20
  480. package/lib/rules/aria-allowed-attr-matches.js +13 -11
  481. package/lib/rules/aria-allowed-attr.json +10 -10
  482. package/lib/rules/aria-allowed-role-matches.js +6 -6
  483. package/lib/rules/aria-allowed-role.json +12 -12
  484. package/lib/rules/aria-command-name.json +16 -16
  485. package/lib/rules/aria-dialog-name.json +11 -11
  486. package/lib/rules/aria-has-attr-matches.js +10 -10
  487. package/lib/rules/aria-hidden-body.json +12 -12
  488. package/lib/rules/aria-hidden-focus-matches.js +8 -8
  489. package/lib/rules/aria-hidden-focus.json +16 -16
  490. package/lib/rules/aria-input-field-name.json +11 -11
  491. package/lib/rules/aria-meter-name.json +11 -11
  492. package/lib/rules/aria-progressbar-name.json +11 -11
  493. package/lib/rules/aria-required-attr.json +10 -10
  494. package/lib/rules/aria-required-children.json +10 -11
  495. package/lib/rules/aria-required-parent.json +10 -11
  496. package/lib/rules/aria-roledescription.json +10 -10
  497. package/lib/rules/aria-roles.json +11 -11
  498. package/lib/rules/aria-toggle-field-name.json +16 -16
  499. package/lib/rules/aria-tooltip-name.json +16 -16
  500. package/lib/rules/aria-treeitem-name.json +16 -16
  501. package/lib/rules/aria-valid-attr-value.json +10 -10
  502. package/lib/rules/aria-valid-attr.json +10 -10
  503. package/lib/rules/audio-caption.json +18 -18
  504. package/lib/rules/autocomplete-matches.js +50 -50
  505. package/lib/rules/autocomplete-valid.json +10 -10
  506. package/lib/rules/avoid-inline-spacing.json +10 -10
  507. package/lib/rules/blink.json +17 -17
  508. package/lib/rules/button-name.json +24 -24
  509. package/lib/rules/bypass-matches.js +7 -7
  510. package/lib/rules/bypass.json +18 -19
  511. package/lib/rules/color-contrast-matches.js +137 -145
  512. package/lib/rules/color-contrast.json +11 -11
  513. package/lib/rules/css-orientation-lock.json +11 -11
  514. package/lib/rules/data-table-large-matches.js +10 -10
  515. package/lib/rules/data-table-matches.js +1 -1
  516. package/lib/rules/definition-list.json +11 -11
  517. package/lib/rules/dlitem.json +11 -11
  518. package/lib/rules/document-title.json +11 -11
  519. package/lib/rules/duplicate-id-active-matches.js +6 -6
  520. package/lib/rules/duplicate-id-active.json +12 -12
  521. package/lib/rules/duplicate-id-aria-matches.js +1 -1
  522. package/lib/rules/duplicate-id-aria.json +12 -12
  523. package/lib/rules/duplicate-id-misc-matches.js +8 -8
  524. package/lib/rules/duplicate-id.json +12 -12
  525. package/lib/rules/empty-heading.json +17 -17
  526. package/lib/rules/focus-order-semantics.json +11 -11
  527. package/lib/rules/form-field-multiple-labels.json +11 -11
  528. package/lib/rules/frame-tested.json +10 -10
  529. package/lib/rules/frame-title-has-text-matches.js +2 -2
  530. package/lib/rules/frame-title-unique.json +11 -11
  531. package/lib/rules/frame-title.json +22 -22
  532. package/lib/rules/heading-matches.js +14 -14
  533. package/lib/rules/heading-order.json +11 -11
  534. package/lib/rules/hidden-content.json +11 -11
  535. package/lib/rules/html-has-lang.json +11 -11
  536. package/lib/rules/html-lang-valid.json +10 -10
  537. package/lib/rules/html-namespace-matches.js +1 -1
  538. package/lib/rules/html-xml-lang-mismatch.json +11 -11
  539. package/lib/rules/identical-links-same-purpose-matches.js +9 -9
  540. package/lib/rules/identical-links-same-purpose.json +12 -12
  541. package/lib/rules/image-alt.json +24 -24
  542. package/lib/rules/img-redundant-alt.json +10 -10
  543. package/lib/rules/input-button-name.json +24 -24
  544. package/lib/rules/input-image-alt.json +18 -18
  545. package/lib/rules/inserted-into-focus-order-matches.js +1 -1
  546. package/lib/rules/is-initiator-matches.js +1 -1
  547. package/lib/rules/label-content-name-mismatch-matches.js +38 -38
  548. package/lib/rules/label-content-name-mismatch.json +10 -10
  549. package/lib/rules/label-matches.js +10 -10
  550. package/lib/rules/label-title-only.json +11 -11
  551. package/lib/rules/label.json +27 -27
  552. package/lib/rules/landmark-banner-is-top-level.json +11 -11
  553. package/lib/rules/landmark-complementary-is-top-level.json +10 -10
  554. package/lib/rules/landmark-contentinfo-is-top-level.json +11 -11
  555. package/lib/rules/landmark-has-body-context-matches.js +6 -6
  556. package/lib/rules/landmark-main-is-top-level.json +10 -10
  557. package/lib/rules/landmark-no-duplicate-banner.json +10 -10
  558. package/lib/rules/landmark-no-duplicate-contentinfo.json +10 -10
  559. package/lib/rules/landmark-no-duplicate-main.json +10 -10
  560. package/lib/rules/landmark-one-main.json +10 -10
  561. package/lib/rules/landmark-unique-matches.js +36 -36
  562. package/lib/rules/landmark-unique.json +11 -11
  563. package/lib/rules/layout-table-matches.js +2 -1
  564. package/lib/rules/link-in-text-block-matches.js +12 -12
  565. package/lib/rules/link-in-text-block.json +12 -12
  566. package/lib/rules/link-name.json +23 -23
  567. package/lib/rules/list.json +11 -11
  568. package/lib/rules/listitem.json +11 -11
  569. package/lib/rules/marquee.json +11 -11
  570. package/lib/rules/meta-refresh.json +18 -18
  571. package/lib/rules/meta-viewport-large.json +11 -11
  572. package/lib/rules/meta-viewport.json +11 -11
  573. package/lib/rules/no-autoplay-audio-matches.js +16 -16
  574. package/lib/rules/no-autoplay-audio.json +13 -13
  575. package/lib/rules/no-empty-role-matches.js +7 -7
  576. package/lib/rules/no-explicit-name-required-matches.js +9 -9
  577. package/lib/rules/no-naming-method-matches.js +12 -12
  578. package/lib/rules/no-role-matches.js +1 -1
  579. package/lib/rules/not-html-matches.js +2 -2
  580. package/lib/rules/object-alt.json +22 -22
  581. package/lib/rules/p-as-heading-matches.js +14 -14
  582. package/lib/rules/p-as-heading.json +11 -11
  583. package/lib/rules/page-has-heading-one.json +10 -10
  584. package/lib/rules/presentation-role-conflict.json +10 -10
  585. package/lib/rules/region.json +10 -10
  586. package/lib/rules/role-img-alt.json +18 -18
  587. package/lib/rules/scope-attr-valid.json +10 -10
  588. package/lib/rules/scrollable-region-focusable-matches.js +59 -59
  589. package/lib/rules/scrollable-region-focusable.json +10 -10
  590. package/lib/rules/select-name.json +25 -25
  591. package/lib/rules/server-side-image-map.json +16 -16
  592. package/lib/rules/skip-link-matches.js +1 -1
  593. package/lib/rules/skip-link.json +11 -11
  594. package/lib/rules/svg-img-alt.json +23 -23
  595. package/lib/rules/svg-namespace-matches.js +10 -10
  596. package/lib/rules/tabindex.json +10 -10
  597. package/lib/rules/table-duplicate-name.json +10 -10
  598. package/lib/rules/table-fake-caption.json +18 -18
  599. package/lib/rules/td-has-header.json +18 -18
  600. package/lib/rules/td-headers-attr.json +10 -10
  601. package/lib/rules/th-has-data-cells.json +11 -11
  602. package/lib/rules/valid-lang.json +11 -11
  603. package/lib/rules/video-caption.json +17 -17
  604. package/lib/rules/window-is-top-matches.js +3 -3
  605. package/lib/rules/xml-lang-mismatch-matches.js +6 -6
  606. package/lib/standards/aria-attrs.js +195 -204
  607. package/lib/standards/aria-roles.js +781 -812
  608. package/lib/standards/css-colors.js +148 -148
  609. package/lib/standards/dpub-roles.js +213 -214
  610. package/lib/standards/html-elms.js +912 -914
  611. package/lib/standards/index.js +16 -18
  612. package/locales/de.json +572 -909
  613. package/package.json +151 -174
  614. package/sri-history.json +1 -5
  615. package/typings/axe-core/axe-core-tests.ts +144 -144
  616. package/.eslintrc.js +0 -111
  617. package/lib/checks/aria/aria-prohibited-attr-evaluate.js +0 -67
  618. package/lib/checks/aria/aria-prohibited-attr.json +0 -12
  619. package/lib/checks/keyboard/frame-focusable-content.json +0 -12
  620. package/lib/checks/keyboard/no-focusable-content-evaluate.js +0 -35
  621. package/lib/checks/keyboard/no-focusable-content.json +0 -12
  622. package/lib/core/public/setup.js +0 -20
  623. package/lib/core/public/teardown.js +0 -21
  624. package/lib/core/utils/filter-html-attrs.js +0 -75
  625. package/lib/core/utils/get-rule.js +0 -17
  626. package/lib/core/utils/respondable/assert-window.js +0 -21
  627. package/lib/core/utils/respondable/callback-store.js +0 -36
  628. package/lib/core/utils/respondable/message-id.js +0 -22
  629. package/lib/core/utils/respondable/message-parser.js +0 -109
  630. package/lib/core/utils/respondable/post.js +0 -32
  631. package/lib/rules/aria-required-children-matches.js +0 -8
  632. package/lib/rules/aria-required-parent-matches.js +0 -8
  633. package/lib/rules/aria-text.json +0 -12
  634. package/lib/rules/empty-table-header.json +0 -13
  635. package/lib/rules/frame-focusable-content-matches.js +0 -9
  636. package/lib/rules/frame-focusable-content.json +0 -13
  637. package/lib/rules/nested-interactive-matches.js +0 -13
  638. package/lib/rules/nested-interactive.json +0 -12
  639. package/lib/standards/graphics-roles.js +0 -22
  640. package/locales/pl.json +0 -911
@@ -16,818 +16,787 @@
16
16
  globalRoleAttrs.forEach(li => li.style.display = 'none');
17
17
  */
18
18
  const ariaRoles = {
19
- alert: {
20
- type: 'widget',
21
- allowedAttrs: ['aria-expanded'],
22
- superclassRole: ['section']
23
- },
24
- alertdialog: {
25
- type: 'widget',
26
- allowedAttrs: ['aria-expanded', 'aria-modal'],
27
- superclassRole: ['alert', 'dialog'],
28
- accessibleNameRequired: true
29
- },
30
- application: {
31
- // Note: spec difference
32
- type: 'landmark',
33
- // Note: aria-expanded is not in the 1.1 spec but is
34
- // consistently supported in ATs and was added in 1.2
35
- allowedAttrs: ['aria-activedescendant', 'aria-expanded'],
36
- superclassRole: ['structure'],
37
- accessibleNameRequired: true
38
- },
39
- article: {
40
- type: 'structure',
41
- allowedAttrs: ['aria-posinset', 'aria-setsize', 'aria-expanded'],
42
- superclassRole: ['document']
43
- },
44
- banner: {
45
- type: 'landmark',
46
- allowedAttrs: ['aria-expanded'],
47
- superclassRole: ['landmark']
48
- },
49
- blockquote: {
50
- type: 'structure',
51
- superclassRole: ['section']
52
- },
53
- button: {
54
- type: 'widget',
55
- allowedAttrs: ['aria-expanded', 'aria-pressed'],
56
- superclassRole: ['command'],
57
- accessibleNameRequired: true,
58
- nameFromContent: true,
59
- childrenPresentational: true
60
- },
61
- caption: {
62
- type: 'structure',
63
- requiredContext: ['figure', 'table', 'grid', 'treegrid'],
64
- superclassRole: ['section'],
65
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
66
- },
67
- cell: {
68
- type: 'structure',
69
- requiredContext: ['row'],
70
- allowedAttrs: [
71
- 'aria-colindex',
72
- 'aria-colspan',
73
- 'aria-rowindex',
74
- 'aria-rowspan',
75
- 'aria-expanded'
76
- ],
77
- superclassRole: ['section'],
78
- nameFromContent: true
79
- },
80
- checkbox: {
81
- type: 'widget',
82
- // Note: since the checkbox role has an implicit
83
- // aria-checked value it is not required to be added by
84
- // the user
85
- //
86
- // Note: aria-required is not in the 1.1 spec but is
87
- // consistently supported in ATs and was added in 1.2
88
- allowedAttrs: ['aria-checked', 'aria-readonly', 'aria-required'],
89
- superclassRole: ['input'],
90
- accessibleNameRequired: true,
91
- nameFromContent: true,
92
- childrenPresentational: true
93
- },
94
- code: {
95
- type: 'structure',
96
- superclassRole: ['section'],
97
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
98
- },
99
- columnheader: {
100
- type: 'structure',
101
- requiredContext: ['row'],
102
- allowedAttrs: [
103
- 'aria-sort',
104
- 'aria-colindex',
105
- 'aria-colspan',
106
- 'aria-expanded',
107
- 'aria-readonly',
108
- 'aria-required',
109
- 'aria-rowindex',
110
- 'aria-rowspan',
111
- 'aria-selected'
112
- ],
113
- superclassRole: ['cell', 'gridcell', 'sectionhead'],
114
- // Note: spec difference
115
- accessibleNameRequired: false,
116
- nameFromContent: true
117
- },
118
- combobox: {
119
- type: 'composite',
120
- requiredOwned: ['listbox', 'tree', 'grid', 'dialog', 'textbox'],
121
- requiredAttrs: ['aria-expanded'],
122
- // Note: because aria-controls is not well supported we will not
123
- // make it a required attribute even though it is required in the
124
- // spec
125
- allowedAttrs: [
126
- 'aria-controls',
127
- 'aria-autocomplete',
128
- 'aria-readonly',
129
- 'aria-required',
130
- 'aria-activedescendant',
131
- 'aria-orientation'
132
- ],
133
- superclassRole: ['select'],
134
- accessibleNameRequired: true
135
- },
136
- command: {
137
- type: 'abstract',
138
- superclassRole: ['widget']
139
- },
140
- complementary: {
141
- type: 'landmark',
142
- allowedAttrs: ['aria-expanded'],
143
- superclassRole: ['landmark']
144
- },
145
- composite: {
146
- type: 'abstract',
147
- superclassRole: ['widget']
148
- },
149
- contentinfo: {
150
- type: 'landmark',
151
- allowedAttrs: ['aria-expanded'],
152
- superclassRole: ['landmark']
153
- },
154
- definition: {
155
- type: 'structure',
156
- allowedAttrs: ['aria-expanded'],
157
- superclassRole: ['section']
158
- },
159
- deletion: {
160
- type: 'structure',
161
- superclassRole: ['section'],
162
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
163
- },
164
- dialog: {
165
- type: 'widget',
166
- allowedAttrs: ['aria-expanded', 'aria-modal'],
167
- superclassRole: ['window'],
168
- accessibleNameRequired: true
169
- },
170
- directory: {
171
- type: 'structure',
172
- allowedAttrs: ['aria-expanded'],
173
- superclassRole: ['list'],
174
- // Note: spec difference
175
- nameFromContent: true
176
- },
177
- document: {
178
- type: 'structure',
179
- allowedAttrs: ['aria-expanded'],
180
- superclassRole: ['structure']
181
- },
182
- emphasis: {
183
- type: 'structure',
184
- superclassRole: ['section'],
185
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
186
- },
187
- feed: {
188
- type: 'structure',
189
- requiredOwned: ['article'],
190
- allowedAttrs: ['aria-expanded'],
191
- superclassRole: ['list']
192
- },
193
- figure: {
194
- type: 'structure',
195
- allowedAttrs: ['aria-expanded'],
196
- superclassRole: ['section'],
197
- // Note: spec difference
198
- nameFromContent: true
199
- },
200
- form: {
201
- type: 'landmark',
202
- allowedAttrs: ['aria-expanded'],
203
- superclassRole: ['landmark']
204
- },
205
- grid: {
206
- type: 'composite',
207
- requiredOwned: ['rowgroup', 'row'],
208
- allowedAttrs: [
209
- 'aria-level',
210
- 'aria-multiselectable',
211
- 'aria-readonly',
212
- 'aria-activedescendant',
213
- 'aria-colcount',
214
- 'aria-expanded',
215
- 'aria-rowcount'
216
- ],
217
- superclassRole: ['composite', 'table'],
218
- // Note: spec difference
219
- accessibleNameRequired: false
220
- },
221
- gridcell: {
222
- type: 'widget',
223
- requiredContext: ['row'],
224
- allowedAttrs: [
225
- 'aria-readonly',
226
- 'aria-required',
227
- 'aria-selected',
228
- 'aria-colindex',
229
- 'aria-colspan',
230
- 'aria-expanded',
231
- 'aria-rowindex',
232
- 'aria-rowspan'
233
- ],
234
- superclassRole: ['cell', 'widget'],
235
- nameFromContent: true
236
- },
237
- group: {
238
- type: 'structure',
239
- allowedAttrs: ['aria-activedescendant', 'aria-expanded'],
240
- superclassRole: ['section']
241
- },
242
- heading: {
243
- type: 'structure',
244
- requiredAttrs: ['aria-level'],
245
- allowedAttrs: ['aria-expanded'],
246
- superclassRole: ['sectionhead'],
247
- // Note: spec difference
248
- accessibleNameRequired: false,
249
- nameFromContent: true
250
- },
251
- img: {
252
- type: 'structure',
253
- allowedAttrs: ['aria-expanded'],
254
- superclassRole: ['section'],
255
- accessibleNameRequired: true,
256
- childrenPresentational: true
257
- },
258
- input: {
259
- type: 'abstract',
260
- superclassRole: ['widget']
261
- },
262
- insertion: {
263
- type: 'structure',
264
- superclassRole: ['section'],
265
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
266
- },
267
- landmark: {
268
- type: 'abstract',
269
- superclassRole: ['section']
270
- },
271
- link: {
272
- type: 'widget',
273
- allowedAttrs: ['aria-expanded'],
274
- superclassRole: ['command'],
275
- accessibleNameRequired: true,
276
- nameFromContent: true
277
- },
278
- list: {
279
- type: 'structure',
280
- requiredOwned: ['group', 'listitem'],
281
- allowedAttrs: ['aria-expanded'],
282
- superclassRole: ['section']
283
- },
284
- listbox: {
285
- type: 'composite',
286
- requiredOwned: ['option'],
287
- allowedAttrs: [
288
- 'aria-multiselectable',
289
- 'aria-readonly',
290
- 'aria-required',
291
- 'aria-activedescendant',
292
- 'aria-expanded',
293
- 'aria-orientation'
294
- ],
295
- superclassRole: ['select'],
296
- accessibleNameRequired: true
297
- },
298
- listitem: {
299
- type: 'structure',
300
- requiredContext: ['list'],
301
- allowedAttrs: [
302
- 'aria-level',
303
- 'aria-posinset',
304
- 'aria-setsize',
305
- 'aria-expanded'
306
- ],
307
- superclassRole: ['section'],
308
- // Note: spec difference
309
- nameFromContent: true
310
- },
311
- log: {
312
- type: 'widget',
313
- allowedAttrs: ['aria-expanded'],
314
- superclassRole: ['section']
315
- },
316
- main: {
317
- type: 'landmark',
318
- allowedAttrs: ['aria-expanded'],
319
- superclassRole: ['landmark']
320
- },
321
- marquee: {
322
- type: 'widget',
323
- allowedAttrs: ['aria-expanded'],
324
- superclassRole: ['section']
325
- },
326
- math: {
327
- type: 'structure',
328
- allowedAttrs: ['aria-expanded'],
329
- superclassRole: ['section'],
330
- childrenPresentational: true
331
- },
332
- menu: {
333
- type: 'composite',
334
- requiredOwned: ['group', 'menuitemradio', 'menuitem', 'menuitemcheckbox'],
335
- allowedAttrs: [
336
- 'aria-activedescendant',
337
- 'aria-expanded',
338
- 'aria-orientation'
339
- ],
340
- superclassRole: ['select']
341
- },
342
- menubar: {
343
- type: 'composite',
344
- requiredOwned: ['group', 'menuitemradio', 'menuitem', 'menuitemcheckbox'],
345
- allowedAttrs: [
346
- 'aria-activedescendant',
347
- 'aria-expanded',
348
- 'aria-orientation'
349
- ],
350
- superclassRole: ['menu']
351
- },
352
- menuitem: {
353
- type: 'widget',
354
- requiredContext: ['menu', 'menubar', 'group'],
355
- // Note: aria-expanded is not in the 1.1 spec but is
356
- // consistently supported in ATs and was added in 1.2
357
- allowedAttrs: ['aria-posinset', 'aria-setsize', 'aria-expanded'],
358
- superclassRole: ['command'],
359
- accessibleNameRequired: true,
360
- nameFromContent: true
361
- },
362
- menuitemcheckbox: {
363
- type: 'widget',
364
- requiredContext: ['menu', 'menubar', 'group'],
365
- allowedAttrs: [
366
- 'aria-checked',
367
- 'aria-posinset',
368
- 'aria-readonly',
369
- 'aria-setsize'
370
- ],
371
- superclassRole: ['checkbox', 'menuitem'],
372
- accessibleNameRequired: true,
373
- nameFromContent: true,
374
- childrenPresentational: true
375
- },
376
- menuitemradio: {
377
- type: 'widget',
378
- requiredContext: ['menu', 'menubar', 'group'],
379
- allowedAttrs: [
380
- 'aria-checked',
381
- 'aria-posinset',
382
- 'aria-readonly',
383
- 'aria-setsize'
384
- ],
385
- superclassRole: ['menuitemcheckbox', 'radio'],
386
- accessibleNameRequired: true,
387
- nameFromContent: true,
388
- childrenPresentational: true
389
- },
390
- meter: {
391
- type: 'structure',
392
- allowedAttrs: ['aria-valuetext'],
393
- requiredAttrs: ['aria-valuemax', 'aria-valuemin', 'aria-valuenow'],
394
- superclassRole: ['range'],
395
- accessibleNameRequired: true,
396
- childrenPresentational: true
397
- },
398
- navigation: {
399
- type: 'landmark',
400
- allowedAttrs: ['aria-expanded'],
401
- superclassRole: ['landmark']
402
- },
403
- none: {
404
- type: 'structure',
405
- superclassRole: ['structure'],
406
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
407
- },
408
- note: {
409
- type: 'structure',
410
- allowedAttrs: ['aria-expanded'],
411
- superclassRole: ['section']
412
- },
413
- option: {
414
- type: 'widget',
415
- requiredContext: ['listbox'],
416
- // Note: since the option role has an implicit
417
- // aria-selected value it is not required to be added by
418
- // the user
419
- allowedAttrs: [
420
- 'aria-selected',
421
- 'aria-checked',
422
- 'aria-posinset',
423
- 'aria-setsize'
424
- ],
425
- superclassRole: ['input'],
426
- accessibleNameRequired: true,
427
- nameFromContent: true,
428
- childrenPresentational: true
429
- },
430
- paragraph: {
431
- type: 'structure',
432
- superclassRole: ['section'],
433
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
434
- },
435
- presentation: {
436
- type: 'structure',
437
- superclassRole: ['structure'],
438
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
439
- },
440
- progressbar: {
441
- type: 'widget',
442
- allowedAttrs: [
443
- 'aria-expanded',
444
- 'aria-valuemax',
445
- 'aria-valuemin',
446
- 'aria-valuenow',
447
- 'aria-valuetext'
448
- ],
449
- superclassRole: ['range'],
450
- accessibleNameRequired: true,
451
- childrenPresentational: true
452
- },
453
- radio: {
454
- type: 'widget',
455
- // Note: since the radio role has an implicit
456
- // aria-check value it is not required to be added by
457
- // the user
458
- //
459
- // Note: aria-required is not in the 1.1 or 1.2 specs but is
460
- // consistently supported in ATs on the individual radio element
461
- allowedAttrs: [
462
- 'aria-checked',
463
- 'aria-posinset',
464
- 'aria-setsize',
465
- 'aria-required'
466
- ],
467
- superclassRole: ['input'],
468
- accessibleNameRequired: true,
469
- nameFromContent: true,
470
- childrenPresentational: true
471
- },
472
- radiogroup: {
473
- type: 'composite',
474
- requiredOwned: ['radio'],
475
- allowedAttrs: [
476
- 'aria-readonly',
477
- 'aria-required',
478
- 'aria-activedescendant',
479
- 'aria-expanded',
480
- 'aria-orientation'
481
- ],
482
- superclassRole: ['select'],
483
- // Note: spec difference
484
- accessibleNameRequired: false
485
- },
486
- range: {
487
- type: 'abstract',
488
- superclassRole: ['widget']
489
- },
490
- region: {
491
- type: 'landmark',
492
- allowedAttrs: ['aria-expanded'],
493
- superclassRole: ['landmark'],
494
- // Note: spec difference
495
- accessibleNameRequired: false
496
- },
497
- roletype: {
498
- type: 'abstract',
499
- superclassRole: []
500
- },
501
- row: {
502
- type: 'structure',
503
- requiredContext: ['grid', 'rowgroup', 'table', 'treegrid'],
504
- requiredOwned: ['cell', 'columnheader', 'gridcell', 'rowheader'],
505
- allowedAttrs: [
506
- 'aria-colindex',
507
- 'aria-level',
508
- 'aria-rowindex',
509
- 'aria-selected',
510
- 'aria-activedescendant',
511
- 'aria-expanded'
512
- ],
513
- superclassRole: ['group', 'widget'],
514
- nameFromContent: true
515
- },
516
- rowgroup: {
517
- type: 'structure',
518
- requiredContext: ['grid', 'table', 'treegrid'],
519
- requiredOwned: ['row'],
520
- superclassRole: ['structure'],
521
- nameFromContent: true
522
- },
523
- rowheader: {
524
- type: 'structure',
525
- requiredContext: ['row'],
526
- allowedAttrs: [
527
- 'aria-sort',
528
- 'aria-colindex',
529
- 'aria-colspan',
530
- 'aria-expanded',
531
- 'aria-readonly',
532
- 'aria-required',
533
- 'aria-rowindex',
534
- 'aria-rowspan',
535
- 'aria-selected'
536
- ],
537
- superclassRole: ['cell', 'gridcell', 'sectionhead'],
538
- // Note: spec difference
539
- accessibleNameRequired: false,
540
- nameFromContent: true
541
- },
542
- scrollbar: {
543
- type: 'widget',
544
- requiredAttrs: ['aria-valuenow'],
545
- // Note: since the scrollbar role has implicit
546
- // aria-orientation, aria-valuemax, aria-valuemin values it
547
- // is not required to be added by the user
548
- //
549
- // Note: because aria-controls is not well supported we will not
550
- // make it a required attribute even though it is required in the
551
- // spec
552
- allowedAttrs: [
553
- 'aria-controls',
554
- 'aria-orientation',
555
- 'aria-valuemax',
556
- 'aria-valuemin',
557
- 'aria-valuetext'
558
- ],
559
- superclassRole: ['range'],
560
- childrenPresentational: true
561
- },
562
- search: {
563
- type: 'landmark',
564
- allowedAttrs: ['aria-expanded'],
565
- superclassRole: ['landmark']
566
- },
567
- searchbox: {
568
- type: 'widget',
569
- allowedAttrs: [
570
- 'aria-activedescendant',
571
- 'aria-autocomplete',
572
- 'aria-multiline',
573
- 'aria-placeholder',
574
- 'aria-readonly',
575
- 'aria-required'
576
- ],
577
- superclassRole: ['textbox'],
578
- accessibleNameRequired: true
579
- },
580
- section: {
581
- type: 'abstract',
582
- superclassRole: ['structure'],
583
- // Note: spec difference
584
- nameFromContent: true
585
- },
586
- sectionhead: {
587
- type: 'abstract',
588
- superclassRole: ['structure'],
589
- // Note: spec difference
590
- nameFromContent: true
591
- },
592
- select: {
593
- type: 'abstract',
594
- superclassRole: ['composite', 'group']
595
- },
596
- separator: {
597
- type: 'structure',
598
- // Note: since the separator role has implicit
599
- // aria-orientation, aria-valuemax, aria-valuemin, and
600
- // aria-valuenow values it is not required to be added by
601
- // the user
602
- allowedAttrs: [
603
- 'aria-valuemax',
604
- 'aria-valuemin',
605
- 'aria-valuenow',
606
- 'aria-orientation',
607
- 'aria-valuetext'
608
- ],
609
- superclassRole: ['structure', 'widget'],
610
- childrenPresentational: true
611
- },
612
- slider: {
613
- type: 'widget',
614
- requiredAttrs: ['aria-valuenow'],
615
- // Note: since the slider role has implicit
616
- // aria-orientation, aria-valuemax, aria-valuemin values it
617
- // is not required to be added by the user
618
- allowedAttrs: [
619
- 'aria-valuemax',
620
- 'aria-valuemin',
621
- 'aria-orientation',
622
- 'aria-readonly',
623
- 'aria-valuetext'
624
- ],
625
- superclassRole: ['input', 'range'],
626
- accessibleNameRequired: true,
627
- childrenPresentational: true
628
- },
629
- spinbutton: {
630
- type: 'widget',
631
- requiredAttrs: ['aria-valuenow'],
632
- // Note: since the spinbutton role has implicit
633
- // aria-orientation, aria-valuemax, aria-valuemin values it
634
- // is not required to be added by the user
635
- allowedAttrs: [
636
- 'aria-valuemax',
637
- 'aria-valuemin',
638
- 'aria-readonly',
639
- 'aria-required',
640
- 'aria-activedescendant',
641
- 'aria-valuetext'
642
- ],
643
- superclassRole: ['composite', 'input', 'range'],
644
- accessibleNameRequired: true
645
- },
646
- status: {
647
- type: 'widget',
648
- allowedAttrs: ['aria-expanded'],
649
- superclassRole: ['section']
650
- },
651
- strong: {
652
- type: 'structure',
653
- superclassRole: ['section'],
654
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
655
- },
656
- structure: {
657
- type: 'abstract',
658
- superclassRole: ['roletype']
659
- },
660
- subscript: {
661
- type: 'structure',
662
- superclassRole: ['section'],
663
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
664
- },
665
- superscript: {
666
- type: 'structure',
667
- superclassRole: ['section'],
668
- prohibitedAttrs: ['aria-label', 'aria-labelledby']
669
- },
670
- switch: {
671
- type: 'widget',
672
- requiredAttrs: ['aria-checked'],
673
- allowedAttrs: ['aria-readonly'],
674
- superclassRole: ['checkbox'],
675
- accessibleNameRequired: true,
676
- nameFromContent: true,
677
- childrenPresentational: true
678
- },
679
- tab: {
680
- type: 'widget',
681
- requiredContext: ['tablist'],
682
- allowedAttrs: [
683
- 'aria-posinset',
684
- 'aria-selected',
685
- 'aria-setsize',
686
- 'aria-expanded'
687
- ],
688
- superclassRole: ['sectionhead', 'widget'],
689
- nameFromContent: true,
690
- childrenPresentational: true
691
- },
692
- table: {
693
- type: 'structure',
694
- requiredOwned: ['rowgroup', 'row'],
695
- allowedAttrs: ['aria-colcount', 'aria-rowcount', 'aria-expanded'],
696
- // NOTE: although the spec says this is not named from contents,
697
- // the accessible text acceptance tests (#139 and #140) require
698
- // table be named from content (we even had to special case
699
- // table in commons/aria/named-from-contents)
700
- superclassRole: ['section'],
701
- // Note: spec difference
702
- accessibleNameRequired: false,
703
- nameFromContent: true
704
- },
705
- tablist: {
706
- type: 'composite',
707
- requiredOwned: ['tab'],
708
- // NOTE: aria-expanded is from the 1.0 spec but is still
709
- // consistently supported in ATs
710
- allowedAttrs: [
711
- 'aria-level',
712
- 'aria-multiselectable',
713
- 'aria-orientation',
714
- 'aria-activedescendant',
715
- 'aria-expanded'
716
- ],
717
- superclassRole: ['composite']
718
- },
719
- tabpanel: {
720
- type: 'widget',
721
- allowedAttrs: ['aria-expanded'],
722
- superclassRole: ['section'],
723
- // Note: spec difference
724
- accessibleNameRequired: false
725
- },
726
- term: {
727
- type: 'structure',
728
- allowedAttrs: ['aria-expanded'],
729
- superclassRole: ['section'],
730
- // Note: spec difference
731
- nameFromContent: true
732
- },
733
- text: {
734
- type: 'structure',
735
- superclassRole: ['section'],
736
- nameFromContent: true
737
- },
738
- textbox: {
739
- type: 'widget',
740
- allowedAttrs: [
741
- 'aria-activedescendant',
742
- 'aria-autocomplete',
743
- 'aria-multiline',
744
- 'aria-placeholder',
745
- 'aria-readonly',
746
- 'aria-required'
747
- ],
748
- superclassRole: ['input'],
749
- accessibleNameRequired: true
750
- },
751
- time: {
752
- type: 'structure',
753
- superclassRole: ['section']
754
- },
755
- timer: {
756
- type: 'widget',
757
- allowedAttrs: ['aria-expanded'],
758
- superclassRole: ['status']
759
- },
760
- toolbar: {
761
- type: 'structure',
762
- allowedAttrs: [
763
- 'aria-orientation',
764
- 'aria-activedescendant',
765
- 'aria-expanded'
766
- ],
767
- superclassRole: ['group'],
768
- accessibleNameRequired: true
769
- },
770
- tooltip: {
771
- type: 'structure',
772
- allowedAttrs: ['aria-expanded'],
773
- superclassRole: ['section'],
774
- nameFromContent: true
775
- },
776
- tree: {
777
- type: 'composite',
778
- requiredOwned: ['group', 'treeitem'],
779
- allowedAttrs: [
780
- 'aria-multiselectable',
781
- 'aria-required',
782
- 'aria-activedescendant',
783
- 'aria-expanded',
784
- 'aria-orientation'
785
- ],
786
- superclassRole: ['select'],
787
- // Note: spec difference
788
- accessibleNameRequired: false
789
- },
790
- treegrid: {
791
- type: 'composite',
792
- requiredOwned: ['rowgroup', 'row'],
793
- allowedAttrs: [
794
- 'aria-activedescendant',
795
- 'aria-colcount',
796
- 'aria-expanded',
797
- 'aria-level',
798
- 'aria-multiselectable',
799
- 'aria-orientation',
800
- 'aria-readonly',
801
- 'aria-required',
802
- 'aria-rowcount'
803
- ],
804
- superclassRole: ['grid', 'tree'],
805
- // Note: spec difference
806
- accessibleNameRequired: false
807
- },
808
- treeitem: {
809
- type: 'widget',
810
- requiredContext: ['group', 'tree'],
811
- allowedAttrs: [
812
- 'aria-checked',
813
- 'aria-expanded',
814
- 'aria-level',
815
- 'aria-posinset',
816
- 'aria-selected',
817
- 'aria-setsize'
818
- ],
819
- superclassRole: ['listitem', 'option'],
820
- accessibleNameRequired: true,
821
- nameFromContent: true
822
- },
823
- widget: {
824
- type: 'abstract',
825
- superclassRole: ['roletype']
826
- },
827
- window: {
828
- type: 'abstract',
829
- superclassRole: ['roletype']
830
- }
19
+ alert: {
20
+ type: 'widget',
21
+ allowedAttrs: ['aria-expanded'],
22
+ superclassRole: ['section']
23
+ },
24
+ alertdialog: {
25
+ type: 'widget',
26
+ allowedAttrs: ['aria-expanded', 'aria-modal'],
27
+ superclassRole: ['alert', 'dialog'],
28
+ accessibleNameRequired: true
29
+ },
30
+ application: {
31
+ // Note: spec difference
32
+ type: 'landmark',
33
+ // Note: aria-expanded is not in the 1.1 spec but is
34
+ // consistently supported in ATs and was added in 1.2
35
+ allowedAttrs: ['aria-activedescendant', 'aria-expanded'],
36
+ superclassRole: ['structure'],
37
+ accessibleNameRequired: true
38
+ },
39
+ article: {
40
+ type: 'structure',
41
+ allowedAttrs: ['aria-posinset', 'aria-setsize', 'aria-expanded'],
42
+ superclassRole: ['document']
43
+ },
44
+ banner: {
45
+ type: 'landmark',
46
+ allowedAttrs: ['aria-expanded'],
47
+ superclassRole: ['landmark']
48
+ },
49
+ blockquote: {
50
+ type: 'structure',
51
+ superclassRole: ['section']
52
+ },
53
+ button: {
54
+ type: 'widget',
55
+ allowedAttrs: ['aria-expanded', 'aria-pressed'],
56
+ superclassRole: ['command'],
57
+ accessibleNameRequired: true,
58
+ nameFromContent: true
59
+ },
60
+ caption: {
61
+ type: 'structure',
62
+ requiredContext: ['figure', 'table', 'grid', 'treegrid'],
63
+ superclassRole: ['section']
64
+ },
65
+ cell: {
66
+ type: 'structure',
67
+ requiredContext: ['row'],
68
+ allowedAttrs: [
69
+ 'aria-colindex',
70
+ 'aria-colspan',
71
+ 'aria-rowindex',
72
+ 'aria-rowspan',
73
+ 'aria-expanded'
74
+ ],
75
+ superclassRole: ['section'],
76
+ nameFromContent: true
77
+ },
78
+ checkbox: {
79
+ type: 'widget',
80
+ // Note: since the checkbox role has an implicit
81
+ // aria-checked value it is not required to be added by
82
+ // the user
83
+ //
84
+ // Note: aria-required is not in the 1.1 spec but is
85
+ // consistently supported in ATs and was added in 1.2
86
+ allowedAttrs: ['aria-checked', 'aria-readonly', 'aria-required'],
87
+ superclassRole: ['input'],
88
+ accessibleNameRequired: true,
89
+ nameFromContent: true
90
+ },
91
+ code: {
92
+ type: 'structure',
93
+ superclassRole: ['section']
94
+ },
95
+ columnheader: {
96
+ type: 'structure',
97
+ requiredContext: ['row'],
98
+ allowedAttrs: [
99
+ 'aria-sort',
100
+ 'aria-colindex',
101
+ 'aria-colspan',
102
+ 'aria-expanded',
103
+ 'aria-readonly',
104
+ 'aria-required',
105
+ 'aria-rowindex',
106
+ 'aria-rowspan',
107
+ 'aria-selected'
108
+ ],
109
+ superclassRole: ['cell', 'gridcell', 'sectionhead'],
110
+ // Note: spec difference
111
+ accessibleNameRequired: false,
112
+ nameFromContent: true
113
+ },
114
+ combobox: {
115
+ type: 'composite',
116
+ requiredOwned: ['listbox', 'tree', 'grid', 'dialog', 'textbox'],
117
+ requiredAttrs: ['aria-expanded'],
118
+ // Note: because aria-controls is not well supported we will not
119
+ // make it a required attribute even though it is required in the
120
+ // spec
121
+ allowedAttrs: [
122
+ 'aria-controls',
123
+ 'aria-autocomplete',
124
+ 'aria-readonly',
125
+ 'aria-required',
126
+ 'aria-activedescendant',
127
+ 'aria-orientation'
128
+ ],
129
+ superclassRole: ['select'],
130
+ accessibleNameRequired: true
131
+ },
132
+ command: {
133
+ type: 'abstract',
134
+ superclassRole: ['widget']
135
+ },
136
+ complementary: {
137
+ type: 'landmark',
138
+ allowedAttrs: ['aria-expanded'],
139
+ superclassRole: ['landmark']
140
+ },
141
+ composite: {
142
+ type: 'abstract',
143
+ superclassRole: ['widget']
144
+ },
145
+ contentinfo: {
146
+ type: 'landmark',
147
+ allowedAttrs: ['aria-expanded'],
148
+ superclassRole: ['landmark']
149
+ },
150
+ definition: {
151
+ type: 'structure',
152
+ allowedAttrs: ['aria-expanded'],
153
+ superclassRole: ['section']
154
+ },
155
+ deletion: {
156
+ type: 'structure',
157
+ superclassRole: ['section']
158
+ },
159
+ dialog: {
160
+ type: 'widget',
161
+ allowedAttrs: ['aria-expanded', 'aria-modal'],
162
+ superclassRole: ['window'],
163
+ accessibleNameRequired: true
164
+ },
165
+ directory: {
166
+ type: 'structure',
167
+ allowedAttrs: ['aria-expanded'],
168
+ superclassRole: ['list'],
169
+ // Note: spec difference
170
+ nameFromContent: true
171
+ },
172
+ document: {
173
+ type: 'structure',
174
+ allowedAttrs: ['aria-expanded'],
175
+ superclassRole: ['structure']
176
+ },
177
+ emphasis: {
178
+ type: 'structure',
179
+ superclassRole: ['section']
180
+ },
181
+ feed: {
182
+ type: 'structure',
183
+ requiredOwned: ['article'],
184
+ allowedAttrs: ['aria-expanded'],
185
+ superclassRole: ['list']
186
+ },
187
+ figure: {
188
+ type: 'structure',
189
+ allowedAttrs: ['aria-expanded'],
190
+ superclassRole: ['section'],
191
+ // Note: spec difference
192
+ nameFromContent: true
193
+ },
194
+ form: {
195
+ type: 'landmark',
196
+ allowedAttrs: ['aria-expanded'],
197
+ superclassRole: ['landmark']
198
+ },
199
+ grid: {
200
+ type: 'composite',
201
+ requiredOwned: ['rowgroup', 'row'],
202
+ allowedAttrs: [
203
+ 'aria-level',
204
+ 'aria-multiselectable',
205
+ 'aria-readonly',
206
+ 'aria-activedescendant',
207
+ 'aria-colcount',
208
+ 'aria-expanded',
209
+ 'aria-rowcount'
210
+ ],
211
+ superclassRole: ['composite', 'table'],
212
+ // Note: spec difference
213
+ accessibleNameRequired: false
214
+ },
215
+ gridcell: {
216
+ type: 'widget',
217
+ requiredContext: ['row'],
218
+ allowedAttrs: [
219
+ 'aria-readonly',
220
+ 'aria-required',
221
+ 'aria-selected',
222
+ 'aria-colindex',
223
+ 'aria-colspan',
224
+ 'aria-expanded',
225
+ 'aria-rowindex',
226
+ 'aria-rowspan'
227
+ ],
228
+ superclassRole: ['cell', 'widget'],
229
+ nameFromContent: true
230
+ },
231
+ group: {
232
+ type: 'structure',
233
+ allowedAttrs: ['aria-activedescendant', 'aria-expanded'],
234
+ superclassRole: ['section']
235
+ },
236
+ heading: {
237
+ type: 'structure',
238
+ requiredAttrs: ['aria-level'],
239
+ allowedAttrs: ['aria-expanded'],
240
+ superclassRole: ['sectionhead'],
241
+ // Note: spec difference
242
+ accessibleNameRequired: false,
243
+ nameFromContent: true
244
+ },
245
+ img: {
246
+ type: 'structure',
247
+ allowedAttrs: ['aria-expanded'],
248
+ superclassRole: ['section'],
249
+ accessibleNameRequired: true
250
+ },
251
+ input: {
252
+ type: 'abstract',
253
+ superclassRole: ['widget']
254
+ },
255
+ insertion: {
256
+ type: 'structure',
257
+ superclassRole: ['section']
258
+ },
259
+ landmark: {
260
+ type: 'abstract',
261
+ superclassRole: ['section']
262
+ },
263
+ link: {
264
+ type: 'widget',
265
+ allowedAttrs: ['aria-expanded'],
266
+ superclassRole: ['command'],
267
+ accessibleNameRequired: true,
268
+ nameFromContent: true
269
+ },
270
+ list: {
271
+ type: 'structure',
272
+ requiredOwned: ['listitem'],
273
+ allowedAttrs: ['aria-expanded'],
274
+ superclassRole: ['section']
275
+ },
276
+ listbox: {
277
+ type: 'composite',
278
+ requiredOwned: ['option'],
279
+ allowedAttrs: [
280
+ 'aria-multiselectable',
281
+ 'aria-readonly',
282
+ 'aria-required',
283
+ 'aria-activedescendant',
284
+ 'aria-expanded',
285
+ 'aria-orientation'
286
+ ],
287
+ superclassRole: ['select'],
288
+ accessibleNameRequired: true
289
+ },
290
+ listitem: {
291
+ type: 'structure',
292
+ requiredContext: ['list'],
293
+ allowedAttrs: [
294
+ 'aria-level',
295
+ 'aria-posinset',
296
+ 'aria-setsize',
297
+ 'aria-expanded'
298
+ ],
299
+ superclassRole: ['section'],
300
+ // Note: spec difference
301
+ nameFromContent: true
302
+ },
303
+ log: {
304
+ type: 'widget',
305
+ allowedAttrs: ['aria-expanded'],
306
+ superclassRole: ['section']
307
+ },
308
+ main: {
309
+ type: 'landmark',
310
+ allowedAttrs: ['aria-expanded'],
311
+ superclassRole: ['landmark']
312
+ },
313
+ marquee: {
314
+ type: 'widget',
315
+ allowedAttrs: ['aria-expanded'],
316
+ superclassRole: ['section']
317
+ },
318
+ math: {
319
+ type: 'structure',
320
+ allowedAttrs: ['aria-expanded'],
321
+ superclassRole: ['section']
322
+ },
323
+ menu: {
324
+ type: 'composite',
325
+ requiredOwned: ['menuitemradio', 'menuitem', 'menuitemcheckbox'],
326
+ allowedAttrs: [
327
+ 'aria-activedescendant',
328
+ 'aria-expanded',
329
+ 'aria-orientation'
330
+ ],
331
+ superclassRole: ['select']
332
+ },
333
+ menubar: {
334
+ type: 'composite',
335
+ requiredOwned: ['menuitemradio', 'menuitem', 'menuitemcheckbox'],
336
+ allowedAttrs: [
337
+ 'aria-activedescendant',
338
+ 'aria-expanded',
339
+ 'aria-orientation'
340
+ ],
341
+ superclassRole: ['menu']
342
+ },
343
+ menuitem: {
344
+ type: 'widget',
345
+ requiredContext: ['menu', 'menubar'],
346
+ // Note: aria-expanded is not in the 1.1 spec but is
347
+ // consistently supported in ATs and was added in 1.2
348
+ allowedAttrs: ['aria-posinset', 'aria-setsize', 'aria-expanded'],
349
+ superclassRole: ['command'],
350
+ accessibleNameRequired: true,
351
+ nameFromContent: true
352
+ },
353
+ menuitemcheckbox: {
354
+ type: 'widget',
355
+ requiredContext: ['menu', 'menubar'],
356
+ allowedAttrs: [
357
+ 'aria-checked',
358
+ 'aria-posinset',
359
+ 'aria-readonly',
360
+ 'aria-setsize'
361
+ ],
362
+ superclassRole: ['checkbox', 'menuitem'],
363
+ accessibleNameRequired: true,
364
+ nameFromContent: true
365
+ },
366
+ menuitemradio: {
367
+ type: 'widget',
368
+ requiredContext: ['menu', 'menubar', 'group'],
369
+ allowedAttrs: [
370
+ 'aria-checked',
371
+ 'aria-posinset',
372
+ 'aria-readonly',
373
+ 'aria-setsize'
374
+ ],
375
+ superclassRole: ['menuitemcheckbox', 'radio'],
376
+ accessibleNameRequired: true,
377
+ nameFromContent: true
378
+ },
379
+ meter: {
380
+ type: 'structure',
381
+ allowedAttrs: ['aria-valuetext'],
382
+ requiredAttrs: ['aria-valuemax', 'aria-valuemin', 'aria-valuenow'],
383
+ superclassRole: ['range'],
384
+ accessibleNameRequired: true
385
+ },
386
+ navigation: {
387
+ type: 'landmark',
388
+ allowedAttrs: ['aria-expanded'],
389
+ superclassRole: ['landmark']
390
+ },
391
+ none: {
392
+ type: 'structure',
393
+ superclassRole: ['structure']
394
+ },
395
+ note: {
396
+ type: 'structure',
397
+ allowedAttrs: ['aria-expanded'],
398
+ superclassRole: ['section']
399
+ },
400
+ option: {
401
+ type: 'widget',
402
+ requiredContext: ['listbox'],
403
+ // Note: since the option role has an implicit
404
+ // aria-selected value it is not required to be added by
405
+ // the user
406
+ allowedAttrs: [
407
+ 'aria-selected',
408
+ 'aria-checked',
409
+ 'aria-posinset',
410
+ 'aria-setsize'
411
+ ],
412
+ superclassRole: ['input'],
413
+ accessibleNameRequired: true,
414
+ nameFromContent: true
415
+ },
416
+ paragraph: {
417
+ type: 'structure',
418
+ superclassRole: ['section']
419
+ },
420
+ presentation: {
421
+ type: 'structure',
422
+ superclassRole: ['structure']
423
+ },
424
+ progressbar: {
425
+ type: 'widget',
426
+ allowedAttrs: [
427
+ 'aria-expanded',
428
+ 'aria-valuemax',
429
+ 'aria-valuemin',
430
+ 'aria-valuenow',
431
+ 'aria-valuetext'
432
+ ],
433
+ superclassRole: ['range'],
434
+ accessibleNameRequired: true
435
+ },
436
+ radio: {
437
+ type: 'widget',
438
+ // Note: since the radio role has an implicit
439
+ // aria-check value it is not required to be added by
440
+ // the user
441
+ //
442
+ // Note: aria-required is not in the 1.1 or 1.2 specs but is
443
+ // consistently supported in ATs on the individual radio element
444
+ allowedAttrs: [
445
+ 'aria-checked',
446
+ 'aria-posinset',
447
+ 'aria-setsize',
448
+ 'aria-required'
449
+ ],
450
+ superclassRole: ['input'],
451
+ accessibleNameRequired: true,
452
+ nameFromContent: true
453
+ },
454
+ radiogroup: {
455
+ type: 'composite',
456
+ requiredOwned: ['radio'],
457
+ allowedAttrs: [
458
+ 'aria-readonly',
459
+ 'aria-required',
460
+ 'aria-activedescendant',
461
+ 'aria-expanded',
462
+ 'aria-orientation'
463
+ ],
464
+ superclassRole: ['select'],
465
+ // Note: spec difference
466
+ accessibleNameRequired: false
467
+ },
468
+ range: {
469
+ type: 'abstract',
470
+ superclassRole: ['widget']
471
+ },
472
+ region: {
473
+ type: 'landmark',
474
+ allowedAttrs: ['aria-expanded'],
475
+ superclassRole: ['landmark'],
476
+ // Note: spec difference
477
+ accessibleNameRequired: false
478
+ },
479
+ roletype: {
480
+ type: 'abstract',
481
+ superclassRole: []
482
+ },
483
+ row: {
484
+ type: 'structure',
485
+ requiredContext: ['grid', 'rowgroup', 'table', 'treegrid'],
486
+ requiredOwned: ['cell', 'columnheader', 'gridcell', 'rowheader'],
487
+ allowedAttrs: [
488
+ 'aria-colindex',
489
+ 'aria-level',
490
+ 'aria-rowindex',
491
+ 'aria-selected',
492
+ 'aria-activedescendant',
493
+ 'aria-expanded'
494
+ ],
495
+ superclassRole: ['group', 'widget'],
496
+ nameFromContent: true
497
+ },
498
+ rowgroup: {
499
+ type: 'structure',
500
+ requiredContext: ['grid', 'table', 'treegrid'],
501
+ requiredOwned: ['row'],
502
+ superclassRole: ['structure'],
503
+ nameFromContent: true
504
+ },
505
+ rowheader: {
506
+ type: 'structure',
507
+ requiredContext: ['row'],
508
+ allowedAttrs: [
509
+ 'aria-sort',
510
+ 'aria-colindex',
511
+ 'aria-colspan',
512
+ 'aria-expanded',
513
+ 'aria-readonly',
514
+ 'aria-required',
515
+ 'aria-rowindex',
516
+ 'aria-rowspan',
517
+ 'aria-selected'
518
+ ],
519
+ superclassRole: ['cell', 'gridcell', 'sectionhead'],
520
+ // Note: spec difference
521
+ accessibleNameRequired: false,
522
+ nameFromContent: true
523
+ },
524
+ scrollbar: {
525
+ type: 'widget',
526
+ requiredAttrs: ['aria-valuenow'],
527
+ // Note: since the scrollbar role has implicit
528
+ // aria-orientation, aria-valuemax, aria-valuemin values it
529
+ // is not required to be added by the user
530
+ //
531
+ // Note: because aria-controls is not well supported we will not
532
+ // make it a required attribute even though it is required in the
533
+ // spec
534
+ allowedAttrs: [
535
+ 'aria-controls',
536
+ 'aria-orientation',
537
+ 'aria-valuemax',
538
+ 'aria-valuemin',
539
+ 'aria-valuetext'
540
+ ],
541
+ superclassRole: ['range']
542
+ },
543
+ search: {
544
+ type: 'landmark',
545
+ allowedAttrs: ['aria-expanded'],
546
+ superclassRole: ['landmark']
547
+ },
548
+ searchbox: {
549
+ type: 'widget',
550
+ allowedAttrs: [
551
+ 'aria-activedescendant',
552
+ 'aria-autocomplete',
553
+ 'aria-multiline',
554
+ 'aria-placeholder',
555
+ 'aria-readonly',
556
+ 'aria-required'
557
+ ],
558
+ superclassRole: ['textbox'],
559
+ accessibleNameRequired: true
560
+ },
561
+ section: {
562
+ type: 'abstract',
563
+ superclassRole: ['structure'],
564
+ // Note: spec difference
565
+ nameFromContent: true
566
+ },
567
+ sectionhead: {
568
+ type: 'abstract',
569
+ superclassRole: ['structure'],
570
+ // Note: spec difference
571
+ nameFromContent: true
572
+ },
573
+ select: {
574
+ type: 'abstract',
575
+ superclassRole: ['composite', 'group']
576
+ },
577
+ separator: {
578
+ type: 'structure',
579
+ // Note: since the separator role has implicit
580
+ // aria-orientation, aria-valuemax, aria-valuemin, and
581
+ // aria-valuenow values it is not required to be added by
582
+ // the user
583
+ allowedAttrs: [
584
+ 'aria-valuemax',
585
+ 'aria-valuemin',
586
+ 'aria-valuenow',
587
+ 'aria-orientation',
588
+ 'aria-valuetext'
589
+ ],
590
+ superclassRole: ['structure', 'widget']
591
+ },
592
+ slider: {
593
+ type: 'widget',
594
+ requiredAttrs: ['aria-valuenow'],
595
+ // Note: since the slider role has implicit
596
+ // aria-orientation, aria-valuemax, aria-valuemin values it
597
+ // is not required to be added by the user
598
+ allowedAttrs: [
599
+ 'aria-valuemax',
600
+ 'aria-valuemin',
601
+ 'aria-orientation',
602
+ 'aria-readonly',
603
+ 'aria-valuetext'
604
+ ],
605
+ superclassRole: ['input', 'range'],
606
+ accessibleNameRequired: true
607
+ },
608
+ spinbutton: {
609
+ type: 'widget',
610
+ requiredAttrs: ['aria-valuenow'],
611
+ // Note: since the spinbutton role has implicit
612
+ // aria-orientation, aria-valuemax, aria-valuemin values it
613
+ // is not required to be added by the user
614
+ allowedAttrs: [
615
+ 'aria-valuemax',
616
+ 'aria-valuemin',
617
+ 'aria-readonly',
618
+ 'aria-required',
619
+ 'aria-activedescendant',
620
+ 'aria-valuetext'
621
+ ],
622
+ superclassRole: ['composite', 'input', 'range'],
623
+ accessibleNameRequired: true
624
+ },
625
+ status: {
626
+ type: 'widget',
627
+ allowedAttrs: ['aria-expanded'],
628
+ superclassRole: ['section']
629
+ },
630
+ strong: {
631
+ type: 'structure',
632
+ superclassRole: ['section']
633
+ },
634
+ structure: {
635
+ type: 'abstract',
636
+ superclassRole: ['roletype']
637
+ },
638
+ subscript: {
639
+ type: 'structure',
640
+ superclassRole: ['section']
641
+ },
642
+ superscript: {
643
+ type: 'structure',
644
+ superclassRole: ['section']
645
+ },
646
+ switch: {
647
+ type: 'widget',
648
+ requiredAttrs: ['aria-checked'],
649
+ allowedAttrs: ['aria-readonly'],
650
+ superclassRole: ['checkbox'],
651
+ accessibleNameRequired: true,
652
+ nameFromContent: true
653
+ },
654
+ tab: {
655
+ type: 'widget',
656
+ requiredContext: ['tablist'],
657
+ allowedAttrs: [
658
+ 'aria-posinset',
659
+ 'aria-selected',
660
+ 'aria-setsize',
661
+ 'aria-expanded'
662
+ ],
663
+ superclassRole: ['sectionhead', 'widget'],
664
+ nameFromContent: true
665
+ },
666
+ table: {
667
+ type: 'structure',
668
+ requiredOwned: ['rowgroup', 'row'],
669
+ allowedAttrs: ['aria-colcount', 'aria-rowcount', 'aria-expanded'],
670
+ // NOTE: although the spec says this is not named from contents,
671
+ // the accessible text acceptance tests (#139 and #140) require
672
+ // table be named from content (we even had to special case
673
+ // table in commons/aria/named-from-contents)
674
+ superclassRole: ['section'],
675
+ // Note: spec difference
676
+ accessibleNameRequired: false,
677
+ nameFromContent: true
678
+ },
679
+ tablist: {
680
+ type: 'composite',
681
+ requiredOwned: ['tab'],
682
+ // NOTE: aria-expanded is from the 1.0 spec but is still
683
+ // consistently supported in ATs
684
+ allowedAttrs: [
685
+ 'aria-level',
686
+ 'aria-multiselectable',
687
+ 'aria-orientation',
688
+ 'aria-activedescendant',
689
+ 'aria-expanded'
690
+ ],
691
+ superclassRole: ['composite']
692
+ },
693
+ tabpanel: {
694
+ type: 'widget',
695
+ allowedAttrs: ['aria-expanded'],
696
+ superclassRole: ['section'],
697
+ // Note: spec difference
698
+ accessibleNameRequired: false
699
+ },
700
+ term: {
701
+ type: 'structure',
702
+ allowedAttrs: ['aria-expanded'],
703
+ superclassRole: ['section'],
704
+ // Note: spec difference
705
+ nameFromContent: true
706
+ },
707
+ textbox: {
708
+ type: 'widget',
709
+ allowedAttrs: [
710
+ 'aria-activedescendant',
711
+ 'aria-autocomplete',
712
+ 'aria-multiline',
713
+ 'aria-placeholder',
714
+ 'aria-readonly',
715
+ 'aria-required'
716
+ ],
717
+ superclassRole: ['input'],
718
+ accessibleNameRequired: true
719
+ },
720
+ time: {
721
+ type: 'structure',
722
+ superclassRole: ['section']
723
+ },
724
+ timer: {
725
+ type: 'widget',
726
+ allowedAttrs: ['aria-expanded'],
727
+ superclassRole: ['status']
728
+ },
729
+ toolbar: {
730
+ type: 'structure',
731
+ allowedAttrs: [
732
+ 'aria-orientation',
733
+ 'aria-activedescendant',
734
+ 'aria-expanded'
735
+ ],
736
+ superclassRole: ['group'],
737
+ accessibleNameRequired: true
738
+ },
739
+ tooltip: {
740
+ type: 'structure',
741
+ allowedAttrs: ['aria-expanded'],
742
+ superclassRole: ['section'],
743
+ nameFromContent: true
744
+ },
745
+ tree: {
746
+ type: 'composite',
747
+ requiredOwned: ['treeitem'],
748
+ allowedAttrs: [
749
+ 'aria-multiselectable',
750
+ 'aria-required',
751
+ 'aria-activedescendant',
752
+ 'aria-expanded',
753
+ 'aria-orientation'
754
+ ],
755
+ superclassRole: ['select'],
756
+ // Note: spec difference
757
+ accessibleNameRequired: false
758
+ },
759
+ treegrid: {
760
+ type: 'composite',
761
+ requiredOwned: ['rowgroup', 'row'],
762
+ allowedAttrs: [
763
+ 'aria-activedescendant',
764
+ 'aria-colcount',
765
+ 'aria-expanded',
766
+ 'aria-level',
767
+ 'aria-multiselectable',
768
+ 'aria-orientation',
769
+ 'aria-readonly',
770
+ 'aria-required',
771
+ 'aria-rowcount'
772
+ ],
773
+ superclassRole: ['grid', 'tree'],
774
+ // Note: spec difference
775
+ accessibleNameRequired: false
776
+ },
777
+ treeitem: {
778
+ type: 'widget',
779
+ requiredContext: ['group', 'tree'],
780
+ allowedAttrs: [
781
+ 'aria-checked',
782
+ 'aria-expanded',
783
+ 'aria-level',
784
+ 'aria-posinset',
785
+ 'aria-selected',
786
+ 'aria-setsize'
787
+ ],
788
+ superclassRole: ['listitem', 'option'],
789
+ accessibleNameRequired: true,
790
+ nameFromContent: true
791
+ },
792
+ widget: {
793
+ type: 'abstract',
794
+ superclassRole: ['roletype']
795
+ },
796
+ window: {
797
+ type: 'abstract',
798
+ superclassRole: ['roletype']
799
+ }
831
800
  };
832
801
 
833
802
  export default ariaRoles;