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

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

Issue 1473733008: [Autofill] Respect the autocomplete=off attribute. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 PUBLIC "-//W3C//DTD HTML 4.01//EN"> 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <!-- Password test form where autocomplete is off for the password field. --> 2 <!-- Password test form where autocomplete is off for the password field. -->
3 <html> 3 <html>
4 <head> 4 <head>
5 <title>Password Test Form</title> 5 <title>Password Test Form</title>
6 </head> 6 </head>
7 <body> 7 <body>
8 <form id="loginform" action="google.com" method="post"> 8 <form method="POST" action="done.html" id="loginform">
9 <table cellspacing="3" cellpadding="5" border="0"> 9 <input type="text" id="username" autocomplete="off">
10 <tbody> 10 <input type="password" id="password" autocomplete="off">
11 <tr><td>Username:</td><td align="left"><input type="text" name="Email" i d="Email" size="18" value=""></td></tr> 11 <input type="submit" id="submit">
12 <tr><td>Password:</td><td align="left"><input autocomplete="off" type="p assword" name="Passwd" id="Passwd" size="18"></td></tr>
13 <tr><td></td><td align="left"><input type="submit" class="button" name=" signIn" id="signIn" value="Sign in"></td></tr>
14 </tbody>
15 </table>
16 </form> 12 </form>
17 </body> 13 </body>
18 </html> 14 </html>
19
OLDNEW
« no previous file with comments | « chrome/renderer/autofill/form_autofill_browsertest.cc ('k') | components/autofill/core/browser/autofill_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698