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

Side by Side Diff: chrome/test/data/autofill/functional/autofill_middleinit_form.html

Issue 10855253: Convert the autofill pyauto tests to browser tests, and remove all the supporting automation hooks … (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: review comments Created 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
2 <!-- Autofill test form to verify middle initial is distinguished in a name. -->
3 <html>
4 <head>
5 <title>Autofill Test Middle Initial Form</title>
6 </head>
7 <body>
8 <h3>Autofill Test Middle Initial Form</h3>
9 <form name="testform" method="post" id="testform">
10 <p>
11 <label for="firstname">First Name:</label> <input type="text" id="NAME_FIR ST"><br>
12 <label for="middleinitial">Middle Initial:</label> <input type="text" id=" NAME_MIDDLE"><br>
13 <label for="lastname">Last Name:</label> <input type="text" id="NAME_LAST" ><br>
14 <label for="address">Address:</label> <input type="text" id="ADDRESS_HOME_ LINE1"><br>
15 <label for="city">City:</label> <input type="text" id="ADDRESS_HOME_CITY" ><br>
16 <label for="email">Email:</label> <input type="text" id="EMAIL_ADDRESS"><b r>
17 <label for="phone">Phone:</label> <input type="text" id="PHONE_HOME_WHOLE_ NUMBER"><br>
18 <input type="submit" value="send"> <input type="reset">
19 </p>
20 </form>
21 </body>
22 </html>
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698