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
The focusable data-tables currently only cover script focusable and keyboard focusable (tabbable). But focus can (obviously) also be shifted by clicking on things (pointer, mouse, touch). Of course script focusable and pointer focusable are not the same.
The <legend> element can redirect focus to another element, but only on element.focus(), not on pointer focus. see demo
The <label> element redirects focus to the referenced control element via element.focus() and pointer focus in Chrome and Firefox. In Internet Explorer focus is not redirected for script focus. see demo
The only tabbable elements are also pointer focusable in Firefox and Internet Explorer.
We should add a third layer of testing to tests/focusable/test.html to cover pointer focus.
The text was updated successfully, but these errors were encountered:
The focusable data-tables currently only cover
script
focusable and keyboard focusable (tabbable). But focus can (obviously) also be shifted by clicking on things (pointer, mouse, touch). Of coursescript
focusable andpointer
focusable are not the same.<legend>
element can redirect focus to another element, but only onelement.focus()
, not on pointer focus. see demo<label>
element redirects focus to the referenced control element viaelement.focus()
and pointer focus in Chrome and Firefox. In Internet Explorer focus is not redirected forscript
focus. see demoonly tabbable
elements are alsopointer
focusable in Firefox and Internet Explorer.We should add a third layer of testing to
tests/focusable/test.html
to cover pointer focus.The text was updated successfully, but these errors were encountered: