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 (like list)
  • 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").

Explain

Installs
8
GitHub Stars
73.9K
First Seen
Jul 31, 2026
aria-required-parent — thedaviddias/front-end-checklist