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

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

Issue 19705013: [password autofill] Remove references to PasswordForm from RenderViewImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Callback Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <body>
3 <form action="done.html" onsubmit="return true;" id="testform">
4 <input type="text" id="username_field" name="username_field">
5 <input type="password" id="password_field" name="password_field">
6 <input type="submit" id="input_submit_button" name="input_submit_button">
Ilya Sherman 2013/07/27 01:09:48 nit: Do you really need ids for the <input>s? Doe
Garrett Casto 2013/08/03 00:38:42 I use GetElementById() in the test.
7 </form>
8
9 <button id="submit_button" name="submit_button"
10 onclick="document.getElementById('testform').submit()">
11 Submit!
12 </button>
13
14 </body>
15 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698