Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: chrome/test/data/password/ambiguous_password_form.html

Issue 1408423003: [Password Manager] Ignore autofilling invisible password fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addresses Vaclav's inputs. Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- Password form with the username and password fields having ambiguity in id attribute. --> 2 <!-- Password form with the username and password fields having ambiguity in id attribute. -->
3 <form id='ambiguous_form' method='POST' action='done.html'> 3 <form id='ambiguous_form' method='POST' action='done.html'>
4 <label>Username: </label><input type='text' id='ambiguous_id' /> 4 <label>Username: </label><input type='text' id='ambiguous_id' />
5 <label>Password: </label><input type='password' id='ambiguous_id' /> 5 <label>Password: </label><input type='password' id='ambiguous_id' />
6 <input type='submit' /> 6 <input type='submit' />
7 </form> 7 </form>
8 8
9 <!-- Password form having username and password fields without name and id attri bute. --> 9 <!-- Password form having username and password fields without name and id attri bute. -->
10 <form id='no_name_id_form' method='POST' action='done.html'> 10 <form id='no_name_id_form' method='POST' action='done.html'>
(...skipping 18 matching lines...) Expand all
29 <input type='submit' /> 29 <input type='submit' />
30 </form> 30 </form>
31 31
32 <!-- Change password form having username and password fields with empty names b ut no |autocomplete='xxx'| attributes. --> 32 <!-- Change password form having username and password fields with empty names b ut no |autocomplete='xxx'| attributes. -->
33 <form id='change_pwd_but_no_autocomplete' method='POST' action='done.html'> 33 <form id='change_pwd_but_no_autocomplete' method='POST' action='done.html'>
34 <label>Username: </label> <input type='text' placeholder='username' /> 34 <label>Username: </label> <input type='text' placeholder='username' />
35 <label>Old Password: </label> <input type='password' placeholder='Old Password ' /> 35 <label>Old Password: </label> <input type='password' placeholder='Old Password ' />
36 <label>New Password: </label> <input type='password' placeholder='New password ' /> 36 <label>New Password: </label> <input type='password' placeholder='New password ' />
37 <input type='submit' /> 37 <input type='submit' />
38 </form> 38 </form>
39
40 <!-- Ambiguous password form with problematic invisible password field. -->
41 <form id='hidden_password_form' method='POST' action='done.html'>
42 <label>Username: </label><input type='text' placeholder='Username' />
43 <input type='password' placeholder='Password' style="display:none;" autocomple te="off" />
44 <label>Password: </label><input type='password' placeholder='Password' />
45 <input type='submit' />
46 </form>
OLDNEW
« no previous file with comments | « chrome/browser/password_manager/password_manager_browsertest.cc ('k') | chrome/test/data/password/password_form.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698