| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
| 2 <!-- HTML credit card form used for testing Autofill preferences. --> | 2 <!-- HTML credit card form used for testing Autofill preferences. --> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <title>Autofill Credit Card Test Form</title> | 5 <title>Autofill Credit Card Test Form</title> |
| 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 7 </head> | 7 </head> |
| 8 <body> | 8 <body> |
| 9 <form id="testform" method="post"> | 9 <form id="testform" method="post"> |
| 10 <table> | 10 <table> |
| 11 <tbody> | 11 <tbody> |
| 12 <tr> | 12 <tr> |
| 13 <td> | 13 <td> |
| 14 <label for="nameoncard">Name on Card</label> | 14 <label for="nameoncard">Name on Card</label> |
| 15 </td> | 15 </td> |
| 16 <td> | 16 <td> |
| 17 <input size="40" id="CREDIT_CARD_NAME"/> | 17 <input size="40" id="CREDIT_CARD_NAME_FULL"/> |
| 18 </td> | 18 </td> |
| 19 </tr> | 19 </tr> |
| 20 <tr> | 20 <tr> |
| 21 <td> | 21 <td> |
| 22 <label for="card_number">Card Number</label> | 22 <label for="card_number">Card Number</label> |
| 23 </td> | 23 </td> |
| 24 <td> | 24 <td> |
| 25 <input size="40" id="CREDIT_CARD_NUMBER" name="card_number"/> | 25 <input size="40" id="CREDIT_CARD_NUMBER" name="card_number"/> |
| 26 </td> | 26 </td> |
| 27 </tr> | 27 </tr> |
| 28 <tr> | 28 <tr> |
| 29 <td> | 29 <td> |
| 30 <label>Expiration Date</label> | 30 <label>Expiration Date</label> |
| 31 </td> | 31 </td> |
| 32 <td> | 32 <td> |
| 33 <input size="2" id="CREDIT_CARD_EXP_MONTH" name="ccmonth"> <input size="4
" id="CREDIT_CARD_EXP_4_DIGIT_YEAR" name="ccyear"/> | 33 <input size="2" id="CREDIT_CARD_EXP_MONTH" name="ccmonth"> <input size="4
" id="CREDIT_CARD_EXP_4_DIGIT_YEAR" name="ccyear"/> |
| 34 </td> | 34 </td> |
| 35 </tr> | 35 </tr> |
| 36 </tbody> | 36 </tbody> |
| 37 </table> | 37 </table> |
| 38 <input type="submit" value="Submit"> | 38 <input type="submit" value="Submit"> |
| 39 </form> | 39 </form> |
| 40 </body> | 40 </body> |
| 41 </html> | 41 </html> |
| 42 | 42 |
| OLD | NEW |