Skip to content

Files

Latest commit

 

History

History
19 lines (12 loc) · 549 Bytes

a11y-no-redundant-roles.md

File metadata and controls

19 lines (12 loc) · 549 Bytes

Pattern: Redundant ARIA role

Issue: -

Description

Some HTML elements have default ARIA roles. Giving these elements an ARIA role that is already set by the browser has no effect and is redundant.

<!-- A11y: Redundant role 'button' -->
<button role="button" />

<!-- A11y: Redundant role 'img' -->
<img role="img" src="foo.jpg" />

Further Reading