Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 484 Bytes

aria-props.md

File metadata and controls

17 lines (12 loc) · 484 Bytes

aria-props

Elements cannot use an invalid ARIA attribute. This will fail if it finds an aria-* property that is not listed in WAI-ARIA States and Properties spec.

Rule details

This rule takes no arguments.

Succeed

<input aria-labelledby="address_label">

Fail

<input aria-labeledby="address_label"> <!-- Bad: Labeled using incorrectly spelled aria-labeledby -->