Published at
Updated at
Reading time
3min
This post is part of my Today I learned series in which I share all my web development learnings.

Focus order is a success criterion defined in the Web Content Accessibility Guidelines (WCAG). Website visitors have to be able to navigate content and focusable element sequentially.

Success Criterion 2.4.3 Focus Order (Level A): If a Web page can be navigated sequentially and the navigation sequences affect meaning or operation, focusable components receive focus in an order that preserves meaning and operability.

How can you test for this accessibility success criterion most effectively?

The first option, tab around your web pages manually and see where the focus wanders. While there's nothing wrong with this, browser dev tools (mainly Firefox) offer valuable alternatives to manual testing these days.

Let's have a look!

Firefox โ€“ "show tabbing order" of all focusable elements

Firefox DevTools with an Open Accessibility panel that includes the "Show Tabbing Order" checkbox

I rediscovered the "Show tabbing order" functionality in Firefox's accessibility dev tools last week. It is such a beautiful feature!

Instead of "tabbing around" to evaluate the focus order, the developer tools show you the order. Turn on the visual tabbing order, scroll through the page, and see if the focus order makes sense!

Chrome (starting 92) โ€“ "show source order" in the DOM tree

Chrome DevTools showing the Elements panel with open Accesibility pane that include a "Show source order" checkbox

After sharing this Firefox functionality on Twitter, Jecelyn Yeen replied and mentioned that Chrome will have a similar feature starting with Chrome 92 (I tested it in the current Chrome beta). When inspecting DOM elements, open the accessibility pane on the right side and enable "Show source order".

And while the feature looks almost identical to Firefox's "Show tab order", they're two pretty different features...

The difference between "Show tabbing order" (Firefox) and "Show source order" (Chromium)

As the different labels reveal, the features look alike but have other purposes.

Firefox shows the focus order of all interactive elements, which is what you test when tabbing around on a web page. You can use the displayed order to debug and improve focus order.

On the other hand, Chrome shows the source order of the currently selected DOM element's children. This visualization can be helpful when you analyse flex or grid layouts that change the visual elements order.

Chrome source order feature showing the visual order is reversed

How do you test that your focusable elements are accessible?

I like this Firefox feature, and I'd love to learn how you test and debug focus order? Do you tab around manually, or do you have a more sophisticated approach?

If you do, I'd love to hear about it!

Edit: Polypane shows the tab order across device sizes, too

Tab order visualization across device sies in polypane

Kilian Valkhof pointed out that Polypane supports "tab order visualization", too. What I like about this implementation is that it shows the focus order across various device sizes. That's very useful!

Another edit: the Taba11y extension visiualizes focus order in Chrome

Website with visualized Focus order. Each element includes a focus index and lines are drawn between all interactive elements.

I discovered the Taba11y browser extension and it brings the same functionaliy to Chrome. ๐ŸŽ‰

Was this TIL post helpful?
Yes? Cool! You might want to check out Web Weekly for more quick learnings. The last edition went out 3 days ago.
Stefan standing in the park in front of a green background

About Stefan Judis

Frontend nerd with over ten years of experience, freelance dev, "Today I Learned" blogger, conference speaker, and Open Source maintainer.

Related Topics

Related Articles