Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: chrome/browser/resources/options/autofill_edit_address_overlay.html

Issue 1166563002: Remove support for variant info in chrome://settings/autofill (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix tests Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 id="autofill-edit-address-fields"> 5 <div id="autofill-edit-address-fields">
6 </div> 6 </div>
7 7
8 <div class="settings-row"> 8 <div class="settings-row">
9 <label> 9 <label>
10 <div i18n-content="autofillCountryLabel"></div> 10 <div i18n-content="autofillCountryLabel"></div>
11 <select class="country" field="country"></select> 11 <select class="country" field="country"></select>
12 </label> 12 </label>
13 </div> 13 </div>
14 14
15 <div class="input-group settings-row"> 15 <div class="input-group settings-row">
16 <div> 16 <div>
17 <div i18n-content="autofillPhoneLabel"></div> 17 <label>
18 <list class="short" field="phone" 18 <div i18n-content="autofillPhoneLabel"></div>
19 i18n-values="placeholder:autofillAddPhonePlaceholder"></list> 19 <input class="short" field="phone"></input>
20 </label>
20 </div> 21 </div>
21 22
22 <div> 23 <div>
23 <div i18n-content="autofillEmailLabel"></div> 24 <label>
24 <list class="short" field="email" 25 <div i18n-content="autofillEmailLabel"></div>
25 i18n-values="placeholder:autofillAddEmailPlaceholder"></list> 26 <input class="short" field="email"></input>
27 </label>
26 </div> 28 </div>
27 </div> 29 </div>
28 30
29 </div> 31 </div>
30 32
31 <div class="action-area button-strip"> 33 <div class="action-area button-strip">
32 <button id="autofill-edit-address-cancel-button" type="reset" 34 <button id="autofill-edit-address-cancel-button" type="reset"
33 i18n-content="cancel"></button> 35 i18n-content="cancel"></button>
34 <button id="autofill-edit-address-apply-button" type="submit" 36 <button id="autofill-edit-address-apply-button" type="submit"
35 class="default-button" i18n-content="ok" disabled></button> 37 class="default-button" i18n-content="ok" disabled></button>
36 </div> 38 </div>
37 </div> 39 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698