Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 937 Bytes

File metadata and controls

31 lines (20 loc) · 937 Bytes

ember/template-no-aria-hidden-body

🔧 This rule is automatically fixable by the --fix CLI option.

The aria-hidden attribute should never be present on the <body> element, as it hides the entire document from assistive technology.

Examples

This rule forbids the following:

<template><body aria-hidden></template>
<template><body aria-hidden="true"></template>

This rule allows the following:

<template><body></template>

References