Skip to content

Files

Latest commit

 

History

History
16 lines (10 loc) · 496 Bytes

a11y-role-has-required-aria-props.md

File metadata and controls

16 lines (10 loc) · 496 Bytes

Pattern: Missing required ARIA prop

Issue: -

Description

Elements with ARIA roles must have all required attributes for that role.

<!-- A11y: A11y: Elements with the ARIA role "checkbox" must have the following attributes defined: "aria-checked" -->
<span role="checkbox" aria-labelledby="foo" tabindex="0"></span>

Further Reading