[whatwg] tabindexscope

Ojan Vafai ojan at chromium.org
Tue Nov 8 11:07:04 PST 2011


We keep running into the use case where the physical position matters for
the tab order. The problem with just setting tabIndex (or CSS3 tab-index)
is that it takes the thing out of the natural order.

This problem comes up in a lot of places (e.g. absolute positioning). It's
recently come up for CSS flexboxes, e.g. if you set flex-order or a reverse
flow, then the tabindex still being in document order is often not what the
author wants (https://bugs.webkit.org/show_bug.cgi?id=62664).

<button tabindex=0>A</button>
<div tabindex=2 tabindexscope>
<button tabindex=2>C</button>
<button tabindex=1>B</button>
</div>
<button tabindex=1>D</button>

The order for the tabbing would be A-D-B-C.

Ojan


More information about the whatwg mailing list