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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/password/password_autocomplete_off_test.html
diff --git a/chrome/test/data/password/password_autocomplete_off_test.html b/chrome/test/data/password/password_autocomplete_off_test.html
index 902409ade13725f83fa6e3801ce4f02462dd47b0..1ae4cf4031380b7581b72b841a2542f235250e01 100644
--- a/chrome/test/data/password/password_autocomplete_off_test.html
+++ b/chrome/test/data/password/password_autocomplete_off_test.html
@@ -4,16 +4,11 @@
<head>
<title>Password Test Form</title>
</head>
- <body>
- <form id="loginform" action="google.com" method="post">
- <table cellspacing="3" cellpadding="5" border="0">
- <tbody>
- <tr><td>Username:</td><td align="left"><input type="text" name="Email" id="Email" size="18" value=""></td></tr>
- <tr><td>Password:</td><td align="left"><input autocomplete="off" type="password" name="Passwd" id="Passwd" size="18"></td></tr>
- <tr><td></td><td align="left"><input type="submit" class="button" name="signIn" id="signIn" value="Sign in"></td></tr>
- </tbody>
- </table>
+ <body>
+ <form method="POST" action="done.html" id="loginform">
+ <input type="text" id="username" autocomplete="off">
+ <input type="password" id="password" autocomplete="off">
+ <input type="submit" id="submit">
</form>
</body>
-</html>
-
+</html>
« 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