You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I did open a pull request last week with a fix for this: #451
FOCUSABLE_SELECTOR attempts to make disabled inputs and form controls unfocusable with :not([disabled]), but then matches *[tabindex] as focusable (which should never be allowed on disabled button, input, select, or textarea).
Background:
There is an issue in the Fluent UI repository concerning tab navigation beyond disabled elements and a PR with attempt to fix it. And it appears to be related to Tabster's handling of tab navigation for disabled elements with
tabindex="0"
.Steps to reproduce:
Expected result:
Tab navigation should bypass all disabled elements.
Actual result:
Tab navigation halts after encountering disabled elements with
tabindex="0"
.Screen.Recording.2024-08-14.at.12.40.44.mov
Note: While removing
tabindex="0"
from disabled elements is a workaround, the question remains whether Tabster should inherently support such cases.The text was updated successfully, but these errors were encountered: