Open
Bug 1691418
Opened 5 years ago
Updated 4 years ago
[suning.com[Login] Credentials are autofilled/autocompleted only upon field focus event
Categories
(Toolkit :: Password Manager: Site Compatibility, defect, P3)
Tracking
()
NEW
People
(Reporter: tbabos, Unassigned)
References
(Blocks 2 open bugs, )
Details
Affected Versions:
- Nigthly 87.0a1 (2021-02-04)
- Beta 86.0b5
- Release 85.0
Tested On:
- MacOS 10.15
Steps to Reproduce:
- Go to suning.com login form (have 1 or multiple credentials saved - via about:logins)
- If you have 1 credentials saved check if the field are autofilled
Autofill Bug: click on each field - If you have multiple credentials saved choose 1 from the username field
Autocomplete Bug: click on the password field
Expected:
The field should be correctly autofilled on page load or autocompleted upon selecting a choice from the dropdown.
Actual:
Autofill: The fields will be autofilled only upon focusing them
Autocomplete: Only the username is autocompleted, the user has to click the password field in order to see that autocompleted as well.
Recording: https://streamable.com/f9mun5
Notes:
- Reproducible on Chrome? NO
- Regression-range: not a regression, can be reproduced back to FX70
Comment 1•5 years ago
|
||
We do autofill in this case, however, the username and password field is covered by the <label>.
The site hides the label once you focus on the field, but we don't do focus->blur on fields we autofill, so it looks like we don't autofill the fields.
<input id="userName" type="text" autocomplete="off" value="" tabindex="1" maxlength="64">
<label style="display: block;">用户名/手机/邮箱</label>
You need to log in
before you can comment on or make changes to this bug.
Description
•