[Bug 23870] FKA: No defined way to get keyboard focus into and out of a shadow DOM component

https://www.w3.org/Bugs/Public/show_bug.cgi?id=23870

--- Comment #4 from James Craig <jcraig@apple.com> ---
(In reply to James Craig from comment #3)

> <button id="tabstop1">A button *before* the input element</button>
> <input type="number">
>   <shadow-root id="video-shadow-root">
>     <input type="text">
>     <!-- b/c the functions of the next two elements are already handled by
> UP/DOWN arrow key events on the text input, these next two are focusable, so
> the shadow DOM only gets one tab stop (#tabstop2). (Could be specified using
> tabindex like so.) -->
>     <button aria-label="increment" tabindex="-1">+</button>
>     <button aria-label="decrement" tabindex="-1">-</button>
>   </shadow-root>
> </input>
> <button id="tabstop3">A button *after* the input element</button>

I left off the referenced ID. 

  <input type="text">

Should be:

  <input type="text" id="tabstop2">

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Monday, 2 December 2013 19:04:03 UTC