-
Notifications
You must be signed in to change notification settings - Fork 780
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
roles that allow aria-expanded and aria-roles.js question #3339
Closed
Labels
Milestone
Comments
Thanks for the update Scott. It's a little late for 4.4, but putting it on the list for 4.5. |
WilcoFiers
added
fix
Bug fixes
standards
Issues in the ARIA standards objects (lib/standards)
feat
New feature or enhancement
and removed
fix
Bug fixes
labels
Jan 10, 2022
scottaohara
added a commit
to scottaohara/axe-core
that referenced
this issue
Jan 10, 2022
All roles reviewed to largely remove (but in a few cases add) `aria-expanded` as a supported attribute. This matches both work done in ARIA 1.2 to correct for roles that should not have allowed the attribute, while also incorporating some ARIA 1.2 updates where some roles had support for the attribute added. closes dequelabs#3339
WilcoFiers
added a commit
that referenced
this issue
Aug 8, 2023
* update role allowances for aria-expanded All roles reviewed to largely remove (but in a few cases add) `aria-expanded` as a supported attribute. This matches both work done in ARIA 1.2 to correct for roles that should not have allowed the attribute, while also incorporating some ARIA 1.2 updates where some roles had support for the attribute added. closes #3339 * fix(aria-allowed-attr): allow aria-expanded on more roles * Integration tests * Update lib/standards/aria-roles.js Co-authored-by: Steven Lambert <[email protected]> * Tweak comments --------- Co-authored-by: Scott O'Hara <[email protected]> Co-authored-by: Steven Lambert <[email protected]>
Validated using axe-core develop branch code base,
Not seeing any failure even Environment:
|
Merged
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ARIA 1.2 has fixed an error where ARIA 1.1 allowed
aria-expanded
on a number of elements that didn't make sense. e.g.,role=alert aria-expanded=...
. ARIA issue where this topic was discussed - fixed in 2019, so has been part of the initial and current ARIA 1.2 CR draft.I noticed in the aria-roles.js file that
aria-expanded
is still marked as an allowed attribute on these roles, which at first made sense to me because the file notes on the first line that it is referencing ARIA 1.1... so since they were allowed then, if axe is still referencing ARIA 1.1 then they would still be allowed, though their use by authors is suspect / probably incorrect.However, upon further review of the file, there are a number of roles that were introduces in ARIA 1.2 that are also included... which again also makes sense as many of them have been implemented by browsers... but this then made me wonder if it would be a good idea for axe to also correct the
aria-expanded
allowances, even though the correction is tied to ARIA 1.2.Regardless of when axe might want to pull in the correction, I'd be happy to create a PR to remove the
aria-expanded
allowances from the necessary roles in this file.The text was updated successfully, but these errors were encountered: