Product: axe Extension
Expectation: An input that is inside a <fieldset> that has been disabled should not be treated as focusable by the aria-hidden-focus rule
Actual: An input that is inside a <fieldset> that has been disabled is still treated as focusable by the aria-hidden-focus rule
Motivation: The aria-hidden-focus rule returns a false positive when aria-hidden is used with a disabled fieldset
Example:
The aria-hidden-focus rule flags the following as a serious issue, despite the input not actually being focusable.
<fieldset disabled="disabled" aria-hidden="true">
<input />
</fieldset>
axe-core version: 4.2.0
axe extension version: 4.9.3
Product: axe Extension
Expectation: An input that is inside a
<fieldset>that has been disabled should not be treated as focusable by the aria-hidden-focus ruleActual: An input that is inside a
<fieldset>that has been disabled is still treated as focusable by the aria-hidden-focus ruleMotivation: The aria-hidden-focus rule returns a false positive when aria-hidden is used with a disabled fieldset
Example:
The aria-hidden-focus rule flags the following as a serious issue, despite the input not actually being focusable.