Skip to content

Files

Latest commit

 

History

History
24 lines (18 loc) · 450 Bytes

no-redundant-roles.md

File metadata and controls

24 lines (18 loc) · 450 Bytes

Pattern: Redundant ARIA role

Issue: -

Description

Elements should not be given explicit ARIA roles that match their implicit roles. These redundant roles add unnecessary verbosity to the accessibility tree.

Examples

Example of incorrect code:

<nav role="navigation" />
<button role="button" />
<img role="img" alt="Logo" />

Example of correct code:

<nav />
<button />
<img alt="Logo" />
<div role="button" />