Bug 1830553 - Extending regex for inferring non username fields in only username login forms to fix mismatch. r=dimi

Differential Revision: https://phabricator.services.mozilla.com/D220378
This commit is contained in:
tessa 2024-08-28 10:28:33 +00:00
Родитель c99c4be852
Коммит bc586c24dc
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1427,7 +1427,7 @@ export const LoginHelper = {
* @returns {boolean} True if any of the rules matches
*/
isInferredNonUsernameField(element) {
const expr = /search|code/i;
const expr = /search|code|add/i;
if (
Logic.elementAttrsMatchRegex(element, expr) ||