Bug 224406 - secure.tibia.com password manager recipe for login and registration. r=ckarlof

The login form uses type=password for the account name so we force it to be detected as the username field.
The registration form has the email address directly before the first password field so we override that.
This commit is contained in:
Matthew Noorenberghe 2015-07-15 21:21:54 -07:00
parent 449bb0ddc9
commit e3559f44d9

View File

@ -14,6 +14,13 @@
"description": "An ephemeral password-shim field is incorrectly selected as the username field.",
"hosts": ["www.discover.com"],
"usernameSelector": "#login-account"
},
{
"description": "Tibia uses type=password for its username field and puts the email address before the password field during registration",
"hosts": ["secure.tibia.com"],
"usernameSelector": "#accountname, input[name='loginname']",
"passwordSelector": "#password1, input[name='loginpassword']",
"pathRegex": "^\/account\/"
}
]
}