Chromium Code Reviews| Index: chrome/test/data/password/password_form.html |
| diff --git a/chrome/test/data/password/password_form.html b/chrome/test/data/password/password_form.html |
| index 473600be951cbd8ed1c0aeb31347d27cf31cea29..602bd3d80809fc97d90c355b9809ce50290d919b 100644 |
| --- a/chrome/test/data/password/password_form.html |
| +++ b/chrome/test/data/password/password_form.html |
| @@ -86,5 +86,13 @@ needs to access them by their offsets in the array of the form children. |
| <input type="password" id="chg_new_password_withtext_username_2" name="chg_new_password_withtext_username_2"> |
| <input type="submit" id="chg_submit_withtext_button" name="chg_submit_withtext_button"> |
| </form> |
| + |
| +<!-- Password form with problematic invisible password field. --> |
| +<form id='hidden_password_form' method='POST' action='done.html'> |
| + <input type='password' id="hidden_password" style="display:none;" autocomplete="off" /> |
|
vabr (Chromium)
2015/10/20 16:40:22
Also here, please move the hidden field in between
Pritam Nikam
2015/10/22 09:00:08
Done.
|
| + <input type='text' id="username" placeholder='Username' /> |
| + <input type='password' id="password" placeholder='Password' /> |
| + <input type='submit' /> |
| +</form> |
| </body> |
| -</html> |
| +</html> |