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

Side by Side Diff: chrome/test/data/autofill/functional/duplicate_profiles_test.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 <html>
3 <head>
4 <title>Autofill Form</title>
5 </head>
6 <body>
7 <form id="testform" method="post">
8 <p>
9 <!-- Profile -->
10 <!-- The form element names must match the keys in
11 dataset_duplicate-profiles.txt -->
12 <label for="NAME_FIRST">First Name:</label>
13 <input type="text" id="NAME_FIRST" name="firstname"><br/>
14 <label for="NAME_MIDDLE">Middle Name:</label>
15 <input type="text" id="NAME_MIDDLE" name="middlename"><br/>
16 <label for="NAME_LAST">Last Name:</label>
17 <input type="text" id="NAME_LAST" name="lastname"><br/>
18 <label for="EMAIL_ADDRESS">Email:</label>
19 <input type="text" id="EMAIL_ADDRESS" name="email"><br/>
20 <label for="COMPANY_NAME">Company:</label>
21 <input type="text" id="COMPANY_NAME" name="company"><br/>
22
23 <label for="ADDRESS_HOME_LINE1">Address:</label>
24 <input type="text" id="ADDRESS_HOME_LINE1" name="address"><br/>
25 <label for="ADDRESS_HOME_LINE2">Address 2:</label>
26 <input type="text" id="ADDRESS_HOME_LINE2" name="address2"><br/>
27 <label for="ADDRESS_HOME_CITY">City:</label>
28 <input type="text" id="ADDRESS_HOME_CITY" name="city"><br/>
29 <label for="ADDRESS_HOME_STATE">State:</label>
30 <input type="text" id="ADDRESS_HOME_STATE" name="state"><br/>
31 <label for="ADDRESS_HOME_ZIP">Zip:</label>
32 <input type="text" id="ADDRESS_HOME_ZIP" name="zipcode"><br/>
33
34 <label for="ADDRESS_HOME_COUNTRY">Country:</label>
35 <input type="text" id="ADDRESS_HOME_COUNTRY" name="country"><br/>
36 <label for="PHONE_HOME_WHOLE_NUMBER">Phone:</label>
37 <input type="text" id="PHONE_HOME_WHOLE_NUMBER" name="phone"><br/>
38 <input type="submit" value="send"> <input type="reset">
39 </p>
40 </form>
41 </body>
42 </html>
OLDNEW
« no previous file with comments | « chrome/test/data/autofill/functional/dataset_no_address.txt ('k') | chrome/test/data/autofill/functional/form_phones.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698