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

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

Issue 1151373006: Update Confirmation UI for saved password change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Test fixes Created 5 years, 4 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 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 <input type="password" id="mark_chg_password_field" 80 <input type="password" id="mark_chg_password_field"
81 name="mark_chg_password_field" autocomplete="current-password"> 81 name="mark_chg_password_field" autocomplete="current-password">
82 <input type="password" id="mark_chg_new_password_1" 82 <input type="password" id="mark_chg_new_password_1"
83 name="mark_chg_new_password_1" autocomplete="new-password"> 83 name="mark_chg_new_password_1" autocomplete="new-password">
84 <input type="password" id="mark_chg_new_password_2" 84 <input type="password" id="mark_chg_new_password_2"
85 name="mark_chg_new_password_2" autocomplete="new-password"> 85 name="mark_chg_new_password_2" autocomplete="new-password">
86 <input type="submit" id="mark_chg_submit_button" 86 <input type="submit" id="mark_chg_submit_button"
87 name="mark_chg_submit_button"> 87 name="mark_chg_submit_button">
88 </form> 88 </form>
89 89
90
91 <!-- Change password form without the username. -->
92 <form action="done.html" id="chg_testform_wo_username">
93 <input type="password" id="chg_password_wo_username_field" name="chg_password_ wo_username_field">
94 <input type="password" id="chg_new_password_wo_username_1" name="chg_new_passw ord_wo_username_1">
95 <input type="password" id="chg_new_password_wo_username_2" name="chg_new_passw ord_wo_username_2">
96 <input type="submit" id="chg_submit_wo_username_button" name="chg_submit_butto n">
97 </form>
90 </body> 98 </body>
91 </html> 99 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698