Skip to content

Commit

Permalink
fix(aria-allowed-attr): allow aria-activedescendant on role=applicati…
Browse files Browse the repository at this point in the history
…on (#2304)
  • Loading branch information
straker authored Jun 18, 2020
1 parent b8ffb39 commit 2554f5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/commons/aria/lookup-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ lookupTable.role = {
application: {
type: 'landmark',
attributes: {
allowed: ['aria-expanded', 'aria-errormessage']
allowed: ['aria-expanded', 'aria-errormessage', 'aria-activedescendant']
},
owned: null,
nameFrom: ['author'],
Expand Down
1 change: 1 addition & 0 deletions test/integration/rules/aria-allowed-attr/passes.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
<div
role="application"
id="pass3"
aria-activedescendant="value"
aria-expanded="value"
aria-atomic="value"
aria-busy="value"
Expand Down

0 comments on commit 2554f5c

Please sign in to comment.