You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Autocompletion option descriptions not announced by screen readers
Description
When autocompletion list items contain additional descriptions, these descriptions are not announced by screen readers. The reason is that there is no semantic connection between the description and the corresponding autocompletion option.
As a result, screen readers only announce the label (for example, “hello”) but not the additional detail (for example, “world”), leaving out critical context.
Describe the issue
Autocompletion option descriptions not announced by screen readers
Description
When autocompletion list items contain additional descriptions, these descriptions are not announced by screen readers. The reason is that there is no semantic connection between the description and the corresponding autocompletion option.
As a result, screen readers only announce the label (for example, “hello”) but not the additional detail (for example, “world”), leaving out critical context.
Steps to Reproduce
Ctrl + Space) and navigate through the options with a screen reader enabled.Expected Behavior
When a completion option has an additional description, the screen reader should announce both the label and the description.
Actual Behavior
Only the label is announced, while the description is ignored.
Suggested Fix
Associate the description with its option using
aria-describedbyto connect the detail with the option element.Browser and platform
Chrome, MacOS
Reproduction link
No response