This application is designed to test the ability of password managers to handle various login / password change forms and page content changes at runtime. The source code for this web page was created as a single HTML file with all resources embedded in it, so the file can be easily copied anywhere.
- test-pm-1 - original test page with mutable page content
- test-pm-2 - test login with a different URL path under the same domain
- test-pm-3 - test to match domain path names
Autocomplete attributes help password managers to infer the purpose of a field in a form, saving them from accidentally saving or autofilling the wrong data. A little annotation can go a long way: some common values for text fields are “username”, “current-password” (login forms and change password forms) and “new-password” (registration and change password forms). See a detailed write-up with examples.
Fields that are not passwords, but should be obscured, such as credit card numbers, may also have a type="password" attribute, but should contain the relevant autocomplete attribute, such as "cc-number" or "cc-csc".
Password Form Styles that Chromium Understands
Help users checkout faster with Autofill
4.10.18.7.1 Autofilling form controls: the autocomplete attribute
User agents sometimes have features for helping users fill forms in, for example prefilling the user's address based on earlier user input. The autocomplete content attribute can be used to hint to the user agent how to, or indeed whether to, provide such a feature.
OS X Password Manager/Keychain Integration
Note: As of version 45, the password manager is no longer integrated with Keychain, since the interoperability goal discussed in the Background section is no longer possible. This document is here for historical purposes only.
Issue 466638: Remove OS X Keychain integration for saved passwords
Starting in OS X 10.9, Apple introduced the iCloud Keychain. This manifests itself as the “Local Items” keychain in Keychain Access. Items in this keychain are only accessible to applications with the keychain-access-groups entitlement [1][2]. This, like other iCloud entitlements, is “available only to apps submitted to the App Store or to the Mac App Store” [3].
jsfiddle: $emit and $on events <- started with Vue 3: Start Using it Today
- TODO: Firefox is grabbing credentials when value is changed (has -> clear)
[...$0.children].map((_) => _.value)
// activated only when somebody asked
computed: {
allData: function() {
let q = this.opt_hasUsername;
let s = JSON.stringify(this.$data);
console.log(s + q);
}
},
This app does not use any bundlers (just for fun, because we can)
and uses Vue 2 to build components at runtime.
Just open the Live Server
on testcase16-password-change.html
and
run the Watch Sass
VSCode extension.