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 link in aria-hidden:
This anchor element is visually hidden using CSS positioning and marked
as aria-hidden="true", yet it is still focusable by
keyboard navigation, which is incorrect.