The “Inappropriate Focus Blur Check” evaluates whether there is any JavaScript code used to remove focus from a field (e.g., using element.blur()) when that field is focused.
Example outcome
I found 1 case where javascript is used to remove the focus from the field, whenever the field receives the focus.
Impact
Visual Impairments: The visually impaired user may be unaware that the field even exists or think it is broken, because it loses focus instantly before it can be announced or interacted with.
Motor Impairments: People with motor impairments often rely solely on keyboard navigation. Automatically removing focus makes the field inaccessible.
Cognitive Disabilities: Users may become confused or frustrated when focus seems to “jump away” or when input elements behave inconsistently.
Fixes
To address inappropriately removed focus from a field by javascript code:
Remove any JavaScript code that intentionally triggers element.blur() or similar methods on focus. These scripts violate user expectations and accessibility requirements.
Locate the element that had the focus removed from it by the javascript.
To obtain a similar behaviour using an accessible variant, try some of these alternatives:
Use disabled or readonly for non-editable fields.
Explain via ARIA and visible instructions if interaction is limited.
Use tabindex="-1" only when you do not want the element in the tab order, not to remove focus once it’s received.