aria-required-parent
Installation
SKILL.md
Ensure ARIA roles are contained by required parent roles
If an ARIA child role (like a menu item) is not contained within its required parent role (like a menu), screen readers may fail to announce the item as part of a group, breaking navigation.
Quick Reference
- Certain roles (like
listitem) must be owned by specific parent roles (likelist) - Ensure children elements are not orphaned from their semantic containers
- Maintain valid ARIA hierarchies for menu items, tabs, and list items
Check
Verify that elements with roles like listitem, tab, or menuitem are correctly nested within their required parent roles.
Fix
Wrap elements with roles that require a specific parent in the appropriate container role (e.g., wrap role="listitem" in role="list").