| OLD | NEW |
| 1 <div id="autofill-edit-address-overlay" class="page" hidden> | 1 <div id="autofill-edit-address-overlay" class="page" hidden> |
| 2 <div class="close-button"></div> | 2 <div class="close-button"></div> |
| 3 <h1 id="autofill-address-title"></h1> | 3 <h1 id="autofill-address-title"></h1> |
| 4 <div class="content-area"> | 4 <div class="content-area"> |
| 5 <div> | 5 <div id="dynamic-content-area"> |
| 6 <div id="autofill-name-labels"> | |
| 7 <span i18n-content="autofillFirstNameLabel"></span> | |
| 8 <span i18n-content="autofillMiddleNameLabel"></span> | |
| 9 <span i18n-content="autofillLastNameLabel"></span> | |
| 10 </div> | |
| 11 </div> | |
| 12 <div> | |
| 13 <list id="full-name-list"></list> | |
| 14 </div> | |
| 15 | |
| 16 <label class="settings-row"> | |
| 17 <div i18n-content="autofillCompanyNameLabel"></div> | |
| 18 <input id="company-name" type="text"> | |
| 19 </label> | |
| 20 | |
| 21 <label class="settings-row"> | |
| 22 <div i18n-content="autofillAddrLine1Label"></div> | |
| 23 <input id="addr-line-1" type="text"> | |
| 24 </label> | |
| 25 | |
| 26 <label class="settings-row"> | |
| 27 <div i18n-content="autofillAddrLine2Label"></div> | |
| 28 <input id="addr-line-2" type="text"> | |
| 29 </label> | |
| 30 | |
| 31 <div class="input-group settings-row"> | |
| 32 <label> | |
| 33 <div i18n-content="autofillCityLabel"></div> | |
| 34 <input id="city" type="text"> | |
| 35 </label> | |
| 36 | |
| 37 <label> | |
| 38 <div id="state-label"></div> | |
| 39 <input id="state" type="text"> | |
| 40 </label> | |
| 41 | |
| 42 <label> | |
| 43 <div id="postal-code-label"></div> | |
| 44 <input id="postal-code" type="text"> | |
| 45 </label> | |
| 46 </div> | 6 </div> |
| 47 | 7 |
| 48 <div class="settings-row"> | 8 <div class="settings-row"> |
| 49 <div i18n-content="autofillCountryLabel"></div> | 9 <div i18n-content="autofillCountryLabel"></div> |
| 50 <select id="country"></select> | 10 <select id="country"></select> |
| 51 </div> | 11 </div> |
| 52 | 12 |
| 53 <div class="input-group settings-row"> | 13 <div class="input-group settings-row"> |
| 54 <div> | 14 <div> |
| 55 <div i18n-content="autofillPhoneLabel"></div> | 15 <div i18n-content="autofillPhoneLabel"></div> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 66 | 26 |
| 67 </div> | 27 </div> |
| 68 | 28 |
| 69 <div class="action-area button-strip"> | 29 <div class="action-area button-strip"> |
| 70 <button id="autofill-edit-address-cancel-button" type="reset" | 30 <button id="autofill-edit-address-cancel-button" type="reset" |
| 71 i18n-content="cancel"></button> | 31 i18n-content="cancel"></button> |
| 72 <button id="autofill-edit-address-apply-button" type="submit" | 32 <button id="autofill-edit-address-apply-button" type="submit" |
| 73 class="default-button" i18n-content="ok" disabled></button> | 33 class="default-button" i18n-content="ok" disabled></button> |
| 74 </div> | 34 </div> |
| 75 </div> | 35 </div> |
| OLD | NEW |