Vyhľadajte odpoveď

Vyhnite sa podvodom s podporou. Nikdy vás nebudeme žiadať, aby ste zavolali alebo poslali SMS na telefónne číslo alebo zdieľali osobné informácie. Nahláste prosím podozrivú aktivitu použitím voľby “Nahlásiť zneužitie”.

Learn More

Signon autocomplete does not work with hidden "fake" input fields

  • Žiadne odpovede
  • 2 majú tento problém
  • 5 zobrazení
more options

Open this page:

https://my.hypovereinsbank.de/login?view=/de/login.jsp

Enter any login credentials and store them in Password Manager.

Now open the page again and you will see that the username and password input is not autocompleted.

In the source code of the page you will find this:

<input id="invisibleInput" style="display: none;" /> <input id="invisiblePassword" type="password" style="display: none;" />

This prevents firefox (and probably other browsers) to fill the proper username/password fields with the stored credentials.

Firefox uses heuristics to find the proper username/password fields for autocompletion, I think that hidden inputs should be ignored. To fix this situation for me I modified "_isUsernameFieldType" and "_getPasswordFields" functions in LoginManagerContent.jsm to simply ignore input fields that have the style "display: none". After that the username/password fields are properly populated automatically again. Maybe this can be fixed in future versions of firefox so that I do not have to fix it on every new version by myself?

Thank you!

Open this page: https://my.hypovereinsbank.de/login?view=/de/login.jsp Enter any login credentials and store them in Password Manager. Now open the page again and you will see that the username and password input is not autocompleted. In the source code of the page you will find this: <!-- Invisible input fields to prevent autocompletion functionality of Chrome / Edge --> <input id="invisibleInput" style="display: none;" /> <input id="invisiblePassword" type="password" style="display: none;" /> This prevents firefox (and probably other browsers) to fill the proper username/password fields with the stored credentials. Firefox uses heuristics to find the proper username/password fields for autocompletion, I think that hidden inputs should be ignored. To fix this situation for me I modified "_isUsernameFieldType" and "_getPasswordFields" functions in LoginManagerContent.jsm to simply ignore input fields that have the style "display: none". After that the username/password fields are properly populated automatically again. Maybe this can be fixed in future versions of firefox so that I do not have to fix it on every new version by myself? Thank you!