Index: chrome/test/data/password/form_and_link.html |
diff --git a/chrome/test/data/password/form_and_link.html b/chrome/test/data/password/form_and_link.html |
index bf31b44a824637700bf79ca94e6bf90d4b735685..6bac0cc04246e476180a25f397cefb12625db8ad 100644 |
--- a/chrome/test/data/password/form_and_link.html |
+++ b/chrome/test/data/password/form_and_link.html |
@@ -1,9 +1,23 @@ |
<html> |
+<head> |
+<style> |
+/* The submit button's position and size is fixed, so that it's easy to specify |
+ * tap/click coordinates for it. */ |
+#input_submit_button { |
+ top: 100px; |
+ left: 0px; |
+ position: absolute; |
+ height: 300px; |
+ width: 700px; |
+} |
+</style> |
+</head> |
<body> |
-<form method="POST" action="done.html" id="testform"> |
+<!-- Use GET, so that the password is visible in the URL after submitting. --> |
+<form method="GET" action="done.html" id="testform"> |
<input type="text" id="username_field" name="username_field"> |
<input type="password" id="password_field" name="password_field"> |
- <input type="submit" id="input_submit_button" name="input_submit_button"> |
+ <input type="submit" id="input_submit_button"> |
</form> |
<a href="done.html" id="testlink" target="_blank">Link</a> |
</body> |