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
This is effectively a duplicate of #549. That issue is marked as closed but the issue persists.
Expectation:
The code below should pass.
It is a copy paste of Example 1 of ARIA 1.1 Combobox with Listbox Popup Examples except I replaced input[type=text] with input[type=search]
<labelfor="ex1-input"
id="ex1-label"
class="combobox-label">
Choice 1 Fruit or Vegetable
</label><divclass="combobox-wrapper"><divrole="combobox"
aria-expanded="false"
aria-owns="ex1-listbox"
aria-haspopup="listbox"
id="ex1-combobox"><inputtype="search"
aria-autocomplete="list"
aria-controls="ex1-listbox"
id="ex1-input"></div><ularia-labelledby="ex1-label"
role="listbox"
id="ex1-listbox"
class="listbox hidden"></ul></div>
Actual: aXe audit fails with Required ARIA child role not present: textbox for the #ex1-combobox element.
This is effectively a duplicate of #549. That issue is marked as closed but the issue persists.
Expectation:
The code below should pass.
It is a copy paste of Example 1 of ARIA 1.1 Combobox with Listbox Popup Examples except I replaced input[type=text] with input[type=search]
Actual: aXe audit fails with
Required ARIA child role not present: textbox
for the#ex1-combobox
element.Motivation: As per the WAI-ARIA 1.1 recommendations for combobox:
input[type=search] should satisfy this requirement.
Here is a minimal page containing the above snippet: https://srvpf.codesandbox.io/
axe-core version: 3.2.2-canary.2390925
axe-coconut extension version 3.8.1
The text was updated successfully, but these errors were encountered: