OLD | NEW |
| (Empty) |
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
2 <!-- HTML form used by autofill.AutofillTest.testNoAutofillForReadOnlyFields to | |
3 test that Autofill does not fill in read-only fields. --> | |
4 <html> | |
5 <head> | |
6 <title>Autofill Form</title> | |
7 <style> | |
8 [readonly] { border-color: red; } | |
9 </style> | |
10 </head> | |
11 <body> | |
12 <form name="testform" id="testform" method="post"> | |
13 <p> | |
14 <!-- Profile --> | |
15 <label for="firstname">First Name:</label> <input type="text" id="firstnam
e" name="firstname"><br/> | |
16 <label for="middlename">Middle Name:</label> <input type="text" id="middle
name" name="middlename"><br/> | |
17 <label for="lastname">Last Name:</label> <input type="text" id="lastname"
name="lastname"><br/> | |
18 <label for="email">Email:</label> <input type="text" id="email" name="emai
l" readonly><br/> | |
19 <label for="company">Company:</label> <input type="text" id="company" name
="company"><br/> | |
20 <label for="address">Address:</label> <input type="text" id="address" name
="address"><br/> | |
21 <label for="address2">Address 2:</label> <input type="text" id="address2"
name="address2"><br/> | |
22 <label for="city">City:</label> <input type="text" id="city" name="city"><
br/> | |
23 <label for="state">State:</label> <input type="text" id="state" name="stat
e"><br/> | |
24 <label for="zipcode">Zip:</label> <input type="text" id="zipcode" name="zi
pcode"><br/> | |
25 <label for="country">Country:</label> <input type="text" id="country" name
="country"><br/> | |
26 <label for="phone">Phone:</label> <input type="text" id="phone" name="phon
e"><br/> | |
27 <input type="submit" value="Send"> <input type="reset"> | |
28 </p> | |
29 </form> | |
30 </body> | |
31 </html> | |
OLD | NEW |