-
-
Notifications
You must be signed in to change notification settings - Fork 641
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
Handling ARIA 1.1 Combobox is broken in Chrome and Firefox #9616
Comments
@mshoho: Please add all webbrowsers (incl. version), where this issue occurs, to the issue description. Thanks. |
I am currently reproing it in Chrome Version 74.0.3729.169 (Official Build) (64-bit) and in Firefox 67.0 (64-bit). |
cc: @jcsteh is this exposed accordingly by Firefox? I think there was a discussion about this in another issue but I cannot find it just now. |
Firefox exposes this correctly as far as I can see. This will require some changes to NVDA. |
I tried adding a tabindex="0" attribute on the div with combobox role. It's better but it till not work as it should. It's not possible to type text into the input. |
The only thing that seems broken about the 1.1 combobox in Firefox is that it never announces "combobox" when textbox gains focus. Try the official w3c examples here: https://www.w3.org/TR/wai-aria-practices/examples/combobox/aria1.1pattern/listbox-combo.html They seem to work well in Firefox with the above noted exception. |
No. I have just specifically upgraded Firefox to 67.0.4 and retested. The combobox is skipped in the browse mode, the focus/browse mode switching doesn't work when the input of the combobox has focus, next combobox shortcut (C) says «no next combobox». |
ARIA 1.0 combobox role should be applied to
<input>
, but ARIA 1.1 combobox role is being applied to a container.NVDA seems to handle ARIA 1.0 comboboxes ok. But handling ARIA 1.1 comboboxes is broken:
<input>
inside the container withrole=combobox
.<input>
inside the container withrole=combobox
, but when that<input>
has focus, switching between Browse/Focus modes doesn't work.The reference example: https://www.w3.org/TR/wai-aria-practices/examples/combobox/aria1.1pattern/listbox-combo.html.
Installed NVDA 2019.1.1, Windows 10.
I am currently reproing it in Chrome Version 74.0.3729.169 (Official Build) (64-bit) and in Firefox 67.0 (64-bit).
The text was updated successfully, but these errors were encountered: