radix-ui / primitives

Radix Primitives is an open-source UI component library for building high-quality, accessible design systems and web apps. Maintained by @workos.
https://radix-ui.com/primitives
MIT License
15.93k stars 833 forks source link

`Toast`: Inappropriate `role` #3190

Open jussirantala opened 1 month ago

jussirantala commented 1 month ago

Bug report

Current Behavior

Toast is a <li> element with role="status" and a children of <ol> which has default role (list). image

Expected behavior

<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

This would make it pass jest-axe a11y tests.