aria-valid-attr-value
Installation
SKILL.md
Use valid values for ARIA attributes
Invalid attribute values cause ARIA properties to be ignored or misinterpreted by assistive technologies, leading to a broken or confusing user experience.
Quick Reference
- Ensure ARIA attribute values (like
aria-expanded="true") are valid - Avoid using "yes/no" where "true/false" is required
- Check that IDs referenced in
aria-labelledbyoraria-ownsactually exist
Check
Validate that all ARIA attribute values conform to the allowed types (boolean, integer, ID list, etc.).
Fix
Correct any invalid ARIA attribute values to match the expected format defined in the ARIA specification.