| OLD | NEW |
| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 | 104 |
| 105 <!-- Retry password form. --> | 105 <!-- Retry password form. --> |
| 106 <form method="POST" action="done.html" onsubmit="return true;" id="retry_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"> | 107 <input type="password" id="retry_password_field" name="retry_password_field"> |
| 108 <input type="submit" id="retry_submit_button" name="retry_submit_button"> | 108 <input type="submit" id="retry_submit_button" name="retry_submit_button"> |
| 109 </form> | 109 </form> |
| 110 |
| 111 <!-- Form with extra text field --> |
| 112 <form method="POST" action="done.html" onsubmit="return true;" id="extra_field_f
orm"> |
| 113 <input type="text" id="ef_extra" name="ef_extra"> |
| 114 <input type="text" id="ef_username" name="ef_username" autocomplete="username"
> |
| 115 <input type="password" id="ef_password" name="ef_password"> |
| 116 <input type="submit" id="ef_submit" name="ef_submit"> |
| 117 </form> |
| 110 </body> | 118 </body> |
| 111 </html> | 119 </html> |
| OLD | NEW |