-
Notifications
You must be signed in to change notification settings - Fork 21
tabindex behaving erratically inside a paper-dialog #47
Comments
From @cdata on December 8, 2015 23:49 Setting You can actually tab to the Google link, but you have to go in reverse tab order. I believe that the problem is that Yeah, I think this issue needs to be moved. Maybe to |
The issue is on |
I was able to reproduce this also without using Polymer, see here http://jsbin.com/papuwi/4/edit?html,output |
@Kilometers42 this gets solved by setting the <paper-dialog id="overlay">
<a href="http://www.w3schools.com/" tabindex="2">W3Schools</a>
<a href="http://www.google.com/" tabindex="1" autofocus>Google</a>
<a href="http://www.microsoft.com/" tabindex="3">Microsoft</a>
</paper-dialog> |
Closing this as a solution has been provided & is an issue present in the browser even without using Polymer. |
I still can't tab between paper-input fields inside a paper-dialog. |
I second this issue is still a problem even with |
First off, I wanted to point out that using tabindex > 0 is an anti-pattern, and can kill a11y http://adrianroselli.com/2014/11/dont-use-tabindex-greater-than-0.html That said, you can still tab through |
From @Kilometers42 on November 6, 2015 16:51
It seems like setting tabindex for elements inside a paper-dialog doesn't work. In the example below, in Chrome, when you tab through it goes W3Schools then Microsoft and never hits Google while in Internet Explorer it never tabs to any of them. Any ideas of what is causing this and how to fix it? Thanks!
Copied from original issue: PolymerElements/paper-dialog#61
The text was updated successfully, but these errors were encountered: