Skip to content

Files

Latest commit

 

History

History
25 lines (19 loc) · 586 Bytes

aria-unsupported-elements.md

File metadata and controls

25 lines (19 loc) · 586 Bytes

Pattern: ARIA on unsupported element

Issue: -

Description

Certain DOM elements like meta, html, script, and style do not support ARIA attributes because they are not visible or interactive. Adding ARIA roles or properties to these elements has no effect.

Examples

Example of incorrect code:

<meta charset="UTF-8" aria-hidden="true" />
<html role="application" />
<script aria-label="script" />
<style role="text" />

Example of correct code:

<meta charset="UTF-8" />
<html lang="en" />
<script type="text/javascript" />
<style type="text/css" />