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

Unified Diff: chrome/test/data/password/ambiguous_password_form.html

Issue 1292693004: [Password Manager] Autofill forms with field name and id attributes missing. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a browser_tests for suggestion popup. Created 5 years, 3 months 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/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..0150055c2c94eca3dcf630fb3cce3d3c7a7af919
--- /dev/null
+++ b/chrome/test/data/password/ambiguous_password_form.html
@@ -0,0 +1,22 @@
+<!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_name_id_form" method="POST" action="done.html">
+ <label>Username: </label> <input type="text" placeholder="username" />
+ <label>Password: </label> <input type="password" placeholder="password" />
+ <input type="submit" />
+</form>
+
+<!-- change password form having username and password fields without name and id attribute. -->
+ <form id="change_pwd_no_name_id" method="POST" action="done.html">
+ <label>Username: </label> <input type="text" placeholder="username" />
vabr (Chromium) 2015/09/18 14:41:38 This looks like a sign-up form, not a change passw
Pritam Nikam 2015/09/21 10:51:17 Done.
+ <label>Password: </label> <input type="password" placeholder="password" />
+ <label>Confirm Password: </label> <input type="password" placeholder="confirm password" />
+ <input type="submit" />
+</form>

Powered by Google App Engine
This is Rietveld 408576698