What should the focus order of the generated scroll markers be? Currently what's implemented in the polyfill puts them immediately after the scrollable area, but the tree order for pseudo elements would usually place them immediately after their originating element.
there are a few options here:
- Immediately before the scrollable area.
- Immediately after the scrollable area.
- In the order of their originating DOM elements.
I suspect that there are use cases where you would expect 1 (tab-like interfaces) or 2 (marker-like interfaces) depending on where visually the scroll markers appear.
This could be a little odd in that the only tabbable scroll marker, the active one, could be either before or after the content you have focused in the scroller.