Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 683 Bytes

aria-proptypes.md

File metadata and controls

26 lines (19 loc) · 683 Bytes

aria-proptypes

ARIA state and property values must be valid.

Rule details

This rule takes no arguments.

Succeed

<!-- Good: the aria-hidden state is of type true/false -->
<span aria-hidden="true">foo</span>

Fail

<!-- Bad: the aria-hidden state is of type true/false -->
<span aria-hidden="yes">foo</span>

Accessibility guidelines

Resources