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

Side by Side Diff: chrome/test/data/password/password_form.html

Issue 1476523004: Implementation of new behaviour of Password Manager on retry password forms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments clean up Created 5 years 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 unified diff | Download patch
OLDNEW
1 <html> 1 <html>
2 <body> 2 <body>
3 <form method="POST" action="done.html" onsubmit="return true;" id="testform"> 3 <form method="POST" action="done.html" onsubmit="return true;" id="testform">
4 <input type="text" id="username_field" name="username_field"> 4 <input type="text" id="username_field" name="username_field">
5 <input type="password" id="password_field" name="password_field"> 5 <input type="password" id="password_field" name="password_field">
6 <input type="submit" id="input_submit_button" name="input_submit_button"> 6 <input type="submit" id="input_submit_button" name="input_submit_button">
7 </form> 7 </form>
8 8
9 <button id="submit_button" name="submit_button" 9 <button id="submit_button" name="submit_button"
10 onclick="document.getElementById('testform').submit()"> 10 onclick="document.getElementById('testform').submit()">
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 <input type='password' id="form_with_hidden_password_password" placeholder='Pa ssword' /> 94 <input type='password' id="form_with_hidden_password_password" placeholder='Pa ssword' />
95 <input type='submit' /> 95 <input type='submit' />
96 </form> 96 </form>
97 97
98 <!-- Invisible password form. --> 98 <!-- Invisible password form. -->
99 <form id='hidden_password_form' method='POST' action='done.html' style="display: none;"> 99 <form id='hidden_password_form' method='POST' action='done.html' style="display: none;">
100 <input type='text' id="hidden_password_form_username" placeholder='Username' / > 100 <input type='text' id="hidden_password_form_username" placeholder='Username' / >
101 <input type='password' id="hidden_password_form_password" placeholder='Passwor d' /> 101 <input type='password' id="hidden_password_form_password" placeholder='Passwor d' />
102 <input type='submit' /> 102 <input type='submit' />
103 </form> 103 </form>
104
105 <!-- Retry password form. -->
106 <form method="POST" action="done.html" onsubmit="return true;" id="retry_form">
107 <input type="password" id="retry_password_field" name="retry_password_field">
108 <input type="submit" id="retry_submit_button" name="retry_submit_button">
109 </form>
104 </body> 110 </body>
105 </html> 111 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698