Implementation of aria-hidden (aria-hidden)
All aria-hidden attributes are correctly implemented with valid values and are not applied to elements that can receive focus or are interactable.
Note: A focusable element inside a container with aria-hidden="true" should not be reachable via keyboard navigation (e.g., Tab key), as this contradicts the intention of hiding the element from assistive technologies.
Focusable input in aria-hidden:
This input element is part of the sequential focus navigation because it was incorrectly disabled using
aria-disabled="true" instead of the native disabled attribute, while being inside a
container
marked as aria-hidden="true".