Skip to content

Files

Latest commit

 

History

History
16 lines (10 loc) · 637 Bytes

a11y-no-interactive-element-to-noninteractive-role.md

File metadata and controls

16 lines (10 loc) · 637 Bytes

Pattern: Malformed non-interactive ARIA role

Issue: -

Description

WAI-ARIA roles should not be used to convert an interactive element to a non-interactive element. Non-interactive ARIA roles include article, banner, complementary, img, listitem, main, region and tooltip.

<!-- A11y: <textarea> cannot have role 'listitem' -->
<textarea role="listitem" />

Further Reading