-
Notifications
You must be signed in to change notification settings - Fork 81
Browser don't autocomplete credentials #197
Comments
Yeah, I think we've done testing on Safari and autocomplete doesn't work with the shadow DOM (the problem is that the input is hidden in the paper-input's shadow root, and it can't fill in the value). The form is detected fine, but the nested input inside the To test that's the problem, try turning off Shadow DOM (if you're using Polyserve, try Unfortunately, if that's the underlying problem, there's nothing we can do here -- it's a browser bug |
Hi @notwaldorf ! I can not use I put: <script>window.ShadyDOM = { force: true };</script> In my index.html, the ShadyDOM is forced BUT I still have the issue ! (Whereas with Polymer 1 all was good, I don't know why :( ). Thx for your response. |
@notwaldorf can you please point to an open issue about supporting HTML forms across Shadow DOM boundaries for Chrome and / or Safari? [these are the only two browsers that currently have native support for Shadow DOM] Recently I've hit this same issue (in Chrome) and spent some time investigating and comparing browsers. It appears that at this point HTML forms are broken when form elements are scattered across several Shadow DOM boundaries. I would be happy to pass the investigation results to the people who could actually make HTML forms work again--be it the Polymer Elements team of the browser dev teams. This can be seen either as a browser issue, or a Polymer Elements' issue. It depends on how you would like to look at things:
|
@notwaldorf @tkochi Is there a way to make autofill work on safari on iPhone devices? Thanks |
This recently came up on |
@notwaldorf: the same issue for WebKit is https://bugs.webkit.org/show_bug.cgi?id=172567 |
Currently I made autofill work on safari on iPhone using following code on index.html
|
any updates on this? |
Thank you very much! |
Since the upgrade to Polymer 2, the form no longer autocomplete credentials from the browser (chrome, safari, firefox). The browser seems to don't detect the form (shadow-dom ??).
I don't know if it is an issue or a normal case ?
Example of my usage:
We use 2.0-preview branch.
The text was updated successfully, but these errors were encountered: