-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ally.query.tabsequence: tabindex sorting within ShadowRoot #6
Labels
Milestone
Comments
rodneyrehm
changed the title
Shadowed tabindex only matter within a ShadowRoot
ally.query.tabsequence: tabindex sorting withing ShadowRoot
Nov 21, 2015
::shadow [tabindex="123"]
rodneyrehm
changed the title
ally.query.tabsequence: tabindex sorting withing ShadowRoot
ally.query.tabsequence: tabindex sorting within ShadowRoot
Nov 21, 2015
Of course it is only Chrome sorting |
rodneyrehm
added a commit
that referenced
this issue
Dec 10, 2015
rodneyrehm
added a commit
that referenced
this issue
Dec 10, 2015
rodneyrehm
added a commit
that referenced
this issue
Dec 12, 2015
rodneyrehm
added a commit
that referenced
this issue
Dec 12, 2015
rodneyrehm
added a commit
that referenced
this issue
Dec 12, 2015
rodneyrehm
added a commit
that referenced
this issue
Dec 12, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because
ally.query.focusable
can find shadowed elements,util/sort-element-by-tabindex
must be extended.tabindex
of an element within a ShadowRoot does not affect the global tabbing order, only the one within the ShadowRoot.Firefox (currently) ignores positive tabindexFirefox sorts tabindex globally, not limited to ShadowRoot.[tabindex="1"]
within ShadowRoot - these elements are not added to the tabbing order.util/sort-element-by-tabindex
should sort the children of a ShadowRoot independently of the document. Within a document, the ShadowRoot must be treated as an immutable group.The text was updated successfully, but these errors were encountered: