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
When using Shift+Tab, the ScrollView container became focusable and user is not able to select the focusable items.
Screen.Recording.2026-01-19.at.18.26.06.mov
Expected behavior
Using Shift+Tab should behave as using Tab key - should focus focusable elements in the page content, but backwards
Steps to reproduce
The issue is related with the accessibility and the ability to navigate through page content via keyboard.
Place a ScrollView into Modal dialog.
When the content of the ScrollView is large enough to become scrollable and there are focusable elements inside of it like buttons, the user is expected to focus each focusable element via hardware keyboard.
Observations:
when using Tab key, it is working as expected, each focusable element is selected:
Screen.Recording.2026-01-19.at.18.30.05.mov
when using Shift+Tab, the ScrollView container became focusable instead and user is not able to select the focusable items. ScrollView itself has the accessible={false} and focusable={false} attributes.
Is there an existing issue for this?
Describe the issue
When using
Shift+Tab, theScrollViewcontainer became focusable and user is not able to select the focusable items.Screen.Recording.2026-01-19.at.18.26.06.mov
Expected behavior
Using
Shift+Tabshould behave as usingTabkey - should focus focusable elements in the page content, but backwardsSteps to reproduce
The issue is related with the accessibility and the ability to navigate through page content via keyboard.
Observations:
Tabkey, it is working as expected, each focusable element is selected:Screen.Recording.2026-01-19.at.18.30.05.mov
Shift+Tab, theScrollViewcontainer became focusable instead and user is not able to select the focusable items.ScrollViewitself has theaccessible={false}andfocusable={false}attributes.Screen.Recording.2026-01-19.at.18.26.06.mov
The issue is reproducible on:
Test case
https://codesandbox.io/p/devbox/amazing-sound-mf2wx7?file=%2Fsrc%2FApp.js%3A67%2C18&workspaceId=ws_BpA2JTLv5X1jcHBMCQ1am6
Additional comments
No response