534 B
534 B
aria-proptypes
ARIA state and property values must be valid.
References
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>