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

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

Issue 6261021: DOMUI: Fix ordering of Import/Export buttons in Cert Manager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div class="page hidden" id="certificateManagerPage"> 1 <div class="page hidden" id="certificateManagerPage">
2 <h1 i18n-content="certificateManagerPage"></h1> 2 <h1 i18n-content="certificateManagerPage"></h1>
3 3
4 <!-- Navigation tabs --> 4 <!-- Navigation tabs -->
5 <div class="subpages-nav-tabs"> 5 <div class="subpages-nav-tabs">
6 <span id="personal-certs-nav-tab" class="inactive-tab" 6 <span id="personal-certs-nav-tab" class="inactive-tab"
7 tab-contents="personalCertsTab"> 7 tab-contents="personalCertsTab">
8 <span class="inactive-tab-label" 8 <span class="inactive-tab-label"
9 i18n-content="personalCertsTabTitle"></span> 9 i18n-content="personalCertsTabTitle"></span>
10 <span class="active-tab-label" 10 <span class="active-tab-label"
(...skipping 25 matching lines...) Expand all
36 <table class="certificate-tree-table"> 36 <table class="certificate-tree-table">
37 <tr><td> 37 <tr><td>
38 <span i18n-content="personalCertsTabDescription"></span> 38 <span i18n-content="personalCertsTabDescription"></span>
39 </td></tr> 39 </td></tr>
40 <tr><td> 40 <tr><td>
41 <tree id="personalCertsTab-tree" class="certificate-tree"></tree> 41 <tree id="personalCertsTab-tree" class="certificate-tree"></tree>
42 </td></tr> 42 </td></tr>
43 <tr><td> 43 <tr><td>
44 <button id="personalCertsTab-view" i18n-content="view_certificate" 44 <button id="personalCertsTab-view" i18n-content="view_certificate"
45 disabled></button> 45 disabled></button>
46 <button id="personalCertsTab-backup" i18n-content="export_certificate"
47 disabled></button>
48 <!-- TODO(mattm): 46 <!-- TODO(mattm):
49 <button id="personalCertsTab-backup-all" 47 <button id="personalCertsTab-backup-all"
50 i18n-content="export_all_certificates" 48 i18n-content="export_all_certificates"
51 disabled></button> 49 disabled></button>
52 --> 50 -->
53 <button id="personalCertsTab-import" i18n-content="import_certificate" 51 <button id="personalCertsTab-import" i18n-content="import_certificate"
54 ></button> 52 ></button>
53 <button id="personalCertsTab-backup" i18n-content="export_certificate"
54 disabled></button>
55 <button id="personalCertsTab-delete" i18n-content="delete_certificate" 55 <button id="personalCertsTab-delete" i18n-content="delete_certificate"
56 disabled></button> 56 disabled></button>
57 </td></tr> 57 </td></tr>
58 </table> 58 </table>
59 </div> 59 </div>
60 60
61 <div id="serverCertsTab" class="subpages-tab-contents"> 61 <div id="serverCertsTab" class="subpages-tab-contents">
62 <table class="certificate-tree-table"> 62 <table class="certificate-tree-table">
63 <tr><td> 63 <tr><td>
64 <span i18n-content="serverCertsTabDescription"></span> 64 <span i18n-content="serverCertsTabDescription"></span>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <button id="otherCertsTab-export" i18n-content="export_certificate" 120 <button id="otherCertsTab-export" i18n-content="export_certificate"
121 disabled></button> 121 disabled></button>
122 <button id="otherCertsTab-delete" i18n-content="delete_certificate" 122 <button id="otherCertsTab-delete" i18n-content="delete_certificate"
123 disabled></button> 123 disabled></button>
124 </td></tr> 124 </td></tr>
125 </table> 125 </table>
126 </div> 126 </div>
127 127
128 </div> 128 </div>
129 129
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698