Skip to content

Files

Latest commit

 

History

History
16 lines (10 loc) · 472 Bytes

a11y-unknown-role.md

File metadata and controls

16 lines (10 loc) · 472 Bytes

Pattern: Unknown ARIA role

Issue: -

Description

Elements with ARIA roles must use a valid, non-abstract ARIA role. A reference to role definitions can be found at WAI-ARIA site.

<!-- A11y: Unknown role 'toooltip' (did you mean 'tooltip'?) -->
<div role="toooltip"></div>

Further Reading