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

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

Issue 548953002: [Password Manager] Modified to support saving passwords on forms without username fields. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed breakages. Created 6 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/form_with_only_password_field.html
diff --git a/chrome/test/data/password/form_with_only_password_field.html b/chrome/test/data/password/form_with_only_password_field.html
new file mode 100644
index 0000000000000000000000000000000000000000..723ce19f2317008b945617dd8b9591ff02c3a6e6
--- /dev/null
+++ b/chrome/test/data/password/form_with_only_password_field.html
@@ -0,0 +1,14 @@
+<html>
+ <body>
+ <div id="contains-form">
+ <form action="done.html">
+ <!-- Please note that username input field is
+ intentionally excluded here from this form
+ (http://crbug.com/406343). -->
+ <label for="password">Password</label>
+ <input type="password" id="password" name="password"/>
+ <input type="submit" id="submit-button" value="Click!"/>
+ </form>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698