We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Toast
role
Toast is a <li> element with role="status" and a children of <ol> which has default role (list).
<li>
role="status"
<ol>
list
<ol> role is not list because <li> can't have any other role than listitem if it's a children of a element with list role. https://www.w3.org/TR/html-aria/#docconformance
listitem
This would make it pass jest-axe a11y tests.
jest-axe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report
Current Behavior
Toast
is a<li>
element withrole="status"
and a children of<ol>
which has default role (list
).Expected behavior
<ol>
role is notlist
because<li>
can't have any other role thanlistitem
if it's a children of a element withlist
role. https://www.w3.org/TR/html-aria/#docconformanceThis would make it pass
jest-axe
a11y tests.The text was updated successfully, but these errors were encountered: