Index: chrome/test/data/password/ambiguous_password_form.html |
diff --git a/chrome/test/data/password/ambiguous_password_form.html b/chrome/test/data/password/ambiguous_password_form.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5eac2be6e94e074da31b86f0f105c4eec11205ea |
--- /dev/null |
+++ b/chrome/test/data/password/ambiguous_password_form.html |
@@ -0,0 +1,14 @@ |
+<!DOCTYPE html> |
+<!-- Password form with the username and password fields having ambiguity in id attribute. --> |
+ <form id="ambiguous_form" method="POST" action="done.html"> |
+ <label>Username: </label><input type="text" id="ambiguous_id" /> |
+ <label>Password: </label><input type="password" id="ambiguous_id"/> |
+ <input type="submit" /> |
+</form> |
+ |
+<!-- Password form having username and password fields without name and id attribute. --> |
+ <form id="no_username_id_form" method="POST" action="done.html"> |
+ <input type="text" placeholder="username" /> |
+ <input type="password" placeholder="password" /> |
+ <input type="submit" /> |
+</form> |