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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/autofill/functional/form_phones.html
===================================================================
--- chrome/test/data/autofill/functional/form_phones.html (revision 152427)
+++ chrome/test/data/autofill/functional/form_phones.html (working copy)
@@ -1,55 +0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <meta charset="UTF-8">
- <title>Autofill phone fields test form</title>
- </head>
- <body>
- <form id="testform" method="post">
- <label for="NAME_FIRST">First name:</label>
- <input type="text" id="NAME_FIRST"><br/>
- <label for="NAME_LAST">Last name:</label>
- <input type="text" id="NAME_LAST"><br/>
- <label for="ADDRESS_HOME_LINE1">Address:</label>
- <input type="text" id="ADDRESS_HOME_LINE1"><br/>
- <label for="ADDRESS_HOME_CITY">City:</label>
- <input type="text" id="ADDRESS_HOME_CITY"><br/>
- <label for="ADDRESS_HOME_STATE">State:</label>
- <input type="text" id="ADDRESS_HOME_STATE"><br/>
- <label for="ADDRESS_HOME_ZIP">Zip:</label>
- <input type="text" id="ADDRESS_HOME_ZIP"><br/>
-
- <!-- Basic phone field. -->
- <label for="PHONE_HOME_WHOLE_NUMBER">Phone:</label>
- <input type="text" id="PHONE_HOME_WHOLE_NUMBER"><br/>
-
- <!-- Set of phone fields with area code and phone number. -->
- <label for="PHONE_HOME_CITY_CODE-1">Area Code:</label>
- <input type="text" id="PHONE_HOME_CITY_CODE-1">
- <label for="PHONE_HOME_NUMBER">Phone:</label>
- <input type="text" id="PHONE_HOME_NUMBER"><br/>
-
- <!-- Set of phone fields with area code, ###, ####, and ext. -->
- <label for="PHONE_HOME_CITY_CODE-2">Phone:</label>
- <input type="text" maxlength="3" id="PHONE_HOME_CITY_CODE-2">
- <label for="PHONE_HOME_NUMBER_3-1"> - </label>
- <input type="text" maxlength="3" id="PHONE_HOME_NUMBER_3-1">
- <label for="PHONE_HOME_NUMBER_4-1"> - </label>
- <input type="text" maxlength="4" id="PHONE_HOME_NUMBER_4-1">
- <label for="PHONE_HOME_EXT-1">ext.:</label>
- <input type="text" maxlength="5" id="PHONE_HOME_EXT-1"><br/>
-
- <!-- Set of phone fields with country code, area code, ###, ####, and ext. -->
- <label for="PHONE_HOME_COUNTRY_CODE-1">Phone:</label>
- <input type="text" maxlength="2" id="PHONE_HOME_COUNTRY_CODE-1">
- <label for="PHONE_HOME_CITY_CODE-3"> - </label>
- <input type="text" maxlength="3" id="PHONE_HOME_CITY_CODE-3">
- <label for="PHONE_HOME_NUMBER_3-2"> - </label>
- <input type="text" maxlength="3" id="PHONE_HOME_NUMBER_3-2">
- <label for="PHONE_HOME_NUMBER_4-2"> - </label>
- <input type="text" maxlength="4" id="PHONE_HOME_NUMBER_4-2">
- <label for="PHONE_HOME_EXT-2">ext.:</label>
- <input type="text" maxlength="5" id="PHONE_HOME_EXT-2"><br/>
- </form>
- </body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698