Radix Primitives is an open-source UI component library for building high-quality, accessible design systems and web apps. Maintained by @workos.
15.93k
stars
833
forks
source link
`Toast`: Inappropriate `role` #3190
Open
jussirantala opened 1 month ago
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.