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> |