| OLD | NEW |
| (Empty) |
| 1 <div id="autofill-edit-address-overlay" class="page" hidden> | |
| 2 <div class="close-button"></div> | |
| 3 <h1 id="autofill-address-title"></h1> | |
| 4 <div class="content-area"> | |
| 5 <div id="autofill-name-labels"> | |
| 6 <label for="first-name"> | |
| 7 <span i18n-content="autofillFirstNameLabel"></span> | |
| 8 </label> | |
| 9 <label for="middle-name"> | |
| 10 <span i18n-content="autofillMiddleNameLabel"></span> | |
| 11 </label> | |
| 12 <label for="last-name"> | |
| 13 <span i18n-content="autofillLastNameLabel"></span> | |
| 14 </label> | |
| 15 </div> | |
| 16 <list id="full-name-list"></list> | |
| 17 <div class="input"> | |
| 18 <label> | |
| 19 <div><span i18n-content="autofillCompanyNameLabel"></span></div> | |
| 20 <input id="company-name" type="text" class="autofill-form"> | |
| 21 </label> | |
| 22 </div> | |
| 23 <div class="input"> | |
| 24 <label> | |
| 25 <div><span i18n-content="autofillAddrLine1Label"></span></div> | |
| 26 <input id="addr-line-1" type="text" class="autofill-form"> | |
| 27 </label> | |
| 28 </div> | |
| 29 <div class="input"> | |
| 30 <label> | |
| 31 <div><span i18n-content="autofillAddrLine2Label"></span></div> | |
| 32 <input id="addr-line-2" type="text" class="autofill-form"> | |
| 33 </label> | |
| 34 </div> | |
| 35 <div class="table"> | |
| 36 <div class="row"> | |
| 37 <div class="input cell"> | |
| 38 <label for="city"> | |
| 39 <span i18n-content="autofillCityLabel"></span> | |
| 40 </label> | |
| 41 </div> | |
| 42 <div class="input cell"> | |
| 43 <label id="state-label" for="state"></label> | |
| 44 </div> | |
| 45 <div class="input cell"> | |
| 46 <label id="postal-code-label" for="postal-code"></label> | |
| 47 </div> | |
| 48 </div> | |
| 49 <div class="row"> | |
| 50 <div class="input cell"> | |
| 51 <input id="city" type="text" class="autofill-form"> | |
| 52 </div> | |
| 53 <div class="input cell"> | |
| 54 <input id="state" type="text" class="autofill-form"> | |
| 55 </div> | |
| 56 <div class="input cell"> | |
| 57 <input id="postal-code" type="text" class="autofill-form"> | |
| 58 </div> | |
| 59 </div> | |
| 60 </div> | |
| 61 <div class="input"> | |
| 62 <label> | |
| 63 <div> | |
| 64 <span i18n-content="autofillCountryLabel"></span> | |
| 65 </div> | |
| 66 <select id="country"></select> | |
| 67 </label> | |
| 68 </div> | |
| 69 <div class="table"> | |
| 70 <div class="row"> | |
| 71 <div class="input cell"> | |
| 72 <label for="phone-list"> | |
| 73 <span i18n-content="autofillPhoneLabel"></span> | |
| 74 </label> | |
| 75 </div> | |
| 76 <div class="input cell"> | |
| 77 <label for="email-list"> | |
| 78 <span i18n-content="autofillEmailLabel"></span> | |
| 79 </label> | |
| 80 </div> | |
| 81 </div> | |
| 82 <div class="row"> | |
| 83 <div class="input cell"> | |
| 84 <list id="phone-list" | |
| 85 i18n-values="placeholder:autofillAddPhonePlaceholder"></list> | |
| 86 </div> | |
| 87 <div class="input cell"> | |
| 88 <list id="email-list" | |
| 89 i18n-values="placeholder:autofillAddEmailPlaceholder"></list> | |
| 90 </div> | |
| 91 </div> | |
| 92 </div> | |
| 93 </div> | |
| 94 <div class="action-area button-strip"> | |
| 95 <button id="autofill-edit-address-cancel-button" type="reset" | |
| 96 i18n-content="cancel"></button> | |
| 97 <button id="autofill-edit-address-apply-button" type="submit" | |
| 98 i18n-content="ok" disabled></button> | |
| 99 </div> | |
| 100 </div> | |
| OLD | NEW |