Fix: Always use aria-selected for ActionList items with role="option"
#3893
+7
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What are you trying to accomplish?
Ensures that ActionList items with
role="option"(i.e., items in a listbox) always usearia-selectedinstead ofaria-checked.Related issue: https://github.com/github/accessibility-audits/issues/14576
My previous fix in #3875 addressed the double announcement issue ("not selected not checked") for SelectPanel by changing
aria_selection_variantto always use:selected. It only applies when usingSelectPanel::ItemList.This follow-up fix enforces correct ARIA semantics at the
ActionList::Itemlevel by checking if the parent list hasrole="listbox". Per WAI-ARIA 1.2 specification, theoptionrole requiresaria-selectedas its selection state,aria-checkedis only a supported attribute, not the primary selection indicator.Integration
Risk Assessment
What approach did you choose and why?
Anything you want to highlight for special attention from reviewers?
Accessibility
Merge checklist
Take a look at the What we look for in reviews section of the contributing guidelines for more information on how we review PRs.