Skip to main content

no-aria-hidden-on-hidden-until-found

Disallows aria-hidden="true" on an element whose hidden attribute is in the Hidden Until Found state.

❌ Examples of incorrect code for this rule

<div hidden="until-found" aria-hidden="true">Hidden content</div>

✅ Examples of correct code for this rule

<div hidden="until-found">Hidden content</div>

Interface

{
"no-aria-hidden-on-hidden-until-found": boolean
}

Default Severity

error