| OLD | NEW |
| (Empty) |
| 1 <div id="autofill-edit-credit-card-overlay" class="page" hidden> | |
| 2 <div class="close-button"></div> | |
| 3 <h1 id="autofill-credit-card-title"></h1> | |
| 4 <div class="content-area"> | |
| 5 <div class="input"> | |
| 6 <label> | |
| 7 <span i18n-content="nameOnCardLabel"></span><br> | |
| 8 <input id="name-on-card" type="text"> | |
| 9 </label> | |
| 10 </div> | |
| 11 <div class="input"> | |
| 12 <label> | |
| 13 <span i18n-content="creditCardNumberLabel"></span><br> | |
| 14 <input id="credit-card-number" type="text"> | |
| 15 </label> | |
| 16 </div> | |
| 17 <div class="input"> | |
| 18 <label> | |
| 19 <span i18n-content="creditCardExpirationDateLabel"></span><br> | |
| 20 <select id="expiration-month"></select> | |
| 21 <select id="expiration-year"></select> | |
| 22 </label> | |
| 23 </div> | |
| 24 </div> | |
| 25 <div class="action-area button-strip"> | |
| 26 <button id="autofill-edit-credit-card-cancel-button" type="reset" | |
| 27 i18n-content="cancel"></button> | |
| 28 <button id="autofill-edit-credit-card-apply-button" type="submit" | |
| 29 i18n-content="ok" disabled></button> | |
| 30 </div> | |
| 31 </div> | |
| OLD | NEW |