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

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

Issue 6034005: DOMUI: Implement the new-style Autofill options page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes 2. Created 10 years 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 | Annotate | Revision Log
OLDNEW
1 <div id="autofill-options" class="page hidden"> 1 <div id="autofill-options" class="page hidden">
2 <h1 i18n-content="autoFillOptionsTitle"></h1> 2 <h1 i18n-content="autoFillOptionsTitle"></h1>
3 3 <h3 i18n-content="autoFillAddresses"></h3>
4 <div id="profile-select-container" class="autofill-section"> 4 <div class="settings-list">
5 <div id="profile-select-left-column"> 5 <list id="address-list"></list>
6 <select id="profile-list" size="10">
7 <option value="addressesHeader" disabled
8 i18n-content="addressesHeader"></option>
9 <option value="addressesHorizontalRule" disabled></option>
10 <option value="addressesBlankOption" disabled></option>
11 <option value="creditCardsHeader" disabled
12 i18n-content="creditCardsHeader"></option>
13 <option value="creditCardsHorizontalRule" disabled></option>
14 </select>
15 </div>
16 <div> 6 <div>
17 <div> 7 <button id="autofill-add-address" i18n-content="autoFillAddAddress">
18 <button id="add-address-button" i18n-content="addAddressButton"> 8 </button>
19 </button>
20 </div>
21 <div>
22 <button id="add-credit-card-button" i18n-content="addCreditCardButton">
23 </button>
24 </div>
25 <div>
26 <button id="autofill-edit-button" i18n-content="editButton"></button>
27 </div>
28 <div>
29 <button id="autofill-remove-button" i18n-content="deleteButton">
30 </button>
31 </div>
32 </div> 9 </div>
33 </div> 10 </div>
34 11 <h3 i18n-content="autoFillCreditCards"></h3>
35 <div class="autofill-section"> 12 <div class="settings-list">
13 <list id="creditcard-list"></list>
14 <div>
15 <button id="autofill-add-creditcard"
16 i18n-content="autoFillAddCreditCard"></button>
17 </div>
18 </div>
19 <div>
36 <if expr="pp_ifdef('chromeos')"> 20 <if expr="pp_ifdef('chromeos')">
37 <a href="http://www.google.com/support/chromeos/bin/answer.py?answer=142893" 21 <a href="http://www.google.com/support/chromeos/bin/answer.py?answer=142893"
38 target="_blank" i18n-content="helpButton"></a> 22 target="_blank" i18n-content="helpButton"></a>
39 </if> 23 </if>
40 <if expr="not pp_ifdef('chromeos')"> 24 <if expr="not pp_ifdef('chromeos')">
41 <a href="http://www.google.com/support/chrome/bin/answer.py?answer=142893" 25 <a href="http://www.google.com/support/chrome/bin/answer.py?answer=142893"
42 target="_blank" i18n-content="helpButton"></a> 26 target="_blank" i18n-content="helpButton"></a>
43 </if> 27 </if>
44 </div> 28 </div>
45 </div> 29 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698