Try tabbing through (focus order may jump around):
Focus jumps: Input 1 → Input 2 → Button, confusing order.
WCAG 2.4.3 (Focus Order) | Tab order doesn't match visual/reading order (misuse of tabindex).
Try tabbing through (focus order may jump around):
Focus jumps: Input 1 → Input 2 → Button, confusing order.
Elements with mix of tabindex="0" and positive values create unpredictable focus order.
Visually buttons appear right-to-left, but tab order goes left-to-right (DOM order).
Focus may jump to invisible elements with tabindex.
When a modal dialog opens, keyboard focus should be trapped within it. HAL ensures tabindex and focus management keeps users within modal.