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

Side by Side Diff: chrome/test/data/autofill/functional/form_phones.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>
2 <html>
3 <head>
4 <meta charset="UTF-8">
5 <title>Autofill phone fields test form</title>
6 </head>
7 <body>
8 <form id="testform" method="post">
9 <label for="NAME_FIRST">First name:</label>
10 <input type="text" id="NAME_FIRST"><br/>
11 <label for="NAME_LAST">Last name:</label>
12 <input type="text" id="NAME_LAST"><br/>
13 <label for="ADDRESS_HOME_LINE1">Address:</label>
14 <input type="text" id="ADDRESS_HOME_LINE1"><br/>
15 <label for="ADDRESS_HOME_CITY">City:</label>
16 <input type="text" id="ADDRESS_HOME_CITY"><br/>
17 <label for="ADDRESS_HOME_STATE">State:</label>
18 <input type="text" id="ADDRESS_HOME_STATE"><br/>
19 <label for="ADDRESS_HOME_ZIP">Zip:</label>
20 <input type="text" id="ADDRESS_HOME_ZIP"><br/>
21
22 <!-- Basic phone field. -->
23 <label for="PHONE_HOME_WHOLE_NUMBER">Phone:</label>
24 <input type="text" id="PHONE_HOME_WHOLE_NUMBER"><br/>
25
26 <!-- Set of phone fields with area code and phone number. -->
27 <label for="PHONE_HOME_CITY_CODE-1">Area Code:</label>
28 <input type="text" id="PHONE_HOME_CITY_CODE-1">
29 <label for="PHONE_HOME_NUMBER">Phone:</label>
30 <input type="text" id="PHONE_HOME_NUMBER"><br/>
31
32 <!-- Set of phone fields with area code, ###, ####, and ext. -->
33 <label for="PHONE_HOME_CITY_CODE-2">Phone:</label>
34 <input type="text" maxlength="3" id="PHONE_HOME_CITY_CODE-2">
35 <label for="PHONE_HOME_NUMBER_3-1"> - </label>
36 <input type="text" maxlength="3" id="PHONE_HOME_NUMBER_3-1">
37 <label for="PHONE_HOME_NUMBER_4-1"> - </label>
38 <input type="text" maxlength="4" id="PHONE_HOME_NUMBER_4-1">
39 <label for="PHONE_HOME_EXT-1">ext.:</label>
40 <input type="text" maxlength="5" id="PHONE_HOME_EXT-1"><br/>
41
42 <!-- Set of phone fields with country code, area code, ###, ####, and ext. -->
43 <label for="PHONE_HOME_COUNTRY_CODE-1">Phone:</label>
44 <input type="text" maxlength="2" id="PHONE_HOME_COUNTRY_CODE-1">
45 <label for="PHONE_HOME_CITY_CODE-3"> - </label>
46 <input type="text" maxlength="3" id="PHONE_HOME_CITY_CODE-3">
47 <label for="PHONE_HOME_NUMBER_3-2"> - </label>
48 <input type="text" maxlength="3" id="PHONE_HOME_NUMBER_3-2">
49 <label for="PHONE_HOME_NUMBER_4-2"> - </label>
50 <input type="text" maxlength="4" id="PHONE_HOME_NUMBER_4-2">
51 <label for="PHONE_HOME_EXT-2">ext.:</label>
52 <input type="text" maxlength="5" id="PHONE_HOME_EXT-2"><br/>
53 </form>
54 </body>
55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698