Bug 1953469 - Autofill should ignore fields that are marked for password manager on iOS. r=credential-management-reviewers,dimi DONTBUILD

Differential Revision: https://phabricator.services.mozilla.com/D241208
This commit is contained in:
Issam Mani
2025-03-12 15:48:27 +00:00
parent 976a05f20c
commit 687a1fa92e

View File

@@ -111,6 +111,10 @@ export class FormAutofillChild {
onFocusIn(evt) {
const element = evt.target;
if (element.shouldIgnoreAutofill) {
return;
}
this.identifyFieldsWhenFocused(element);
// Only ping swift if current field is either a cc or address field