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

Side by Side Diff: chrome/browser/resources/certificate_viewer.html

Issue 7528027: Add export function to WebUI certificate viewer. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Adds TODO comment related to passing certificate viewer parent. Created 9 years, 4 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title id="title"></title> 5 <title id="title"></title>
6 <link rel="stylesheet" href="certificate_viewer.css"> 6 <link rel="stylesheet" href="certificate_viewer.css">
7 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 7 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
8 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 8 <link rel="stylesheet" href="chrome://resources/css/tree.css">
9 <script src="strings.js"></script> 9 <script src="strings.js"></script>
10 <script src="chrome://resources/js/cr.js"></script> 10 <script src="chrome://resources/js/cr.js"></script>
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 <span class="title" i18n-content="hierarchy"></span> 95 <span class="title" i18n-content="hierarchy"></span>
96 <div id="hierarchy" class="section-contents"></div> 96 <div id="hierarchy" class="section-contents"></div>
97 </div> 97 </div>
98 <div id="cert-fields-section" class="vertical-box"> 98 <div id="cert-fields-section" class="vertical-box">
99 <span class="title" i18n-content="certFields"></span> 99 <span class="title" i18n-content="certFields"></span>
100 <div id="cert-fields" class="section-contents"></div> 100 <div id="cert-fields" class="section-contents"></div>
101 </div> 101 </div>
102 <div id="cert-field-value-section" class="vertical-box"> 102 <div id="cert-field-value-section" class="vertical-box">
103 <span class="title" i18n-content="certFieldVal"></span> 103 <span class="title" i18n-content="certFieldVal"></span>
104 <div id="cert-field-value" class="section-contents"></div> 104 <div id="cert-field-value" class="section-contents"></div>
105 <button id="export" i18n-content="export"></button>
105 </div> 106 </div>
106 </tabpanel> 107 </tabpanel>
107 </tabpanels> 108 </tabpanels>
108 </tabbox> 109 </tabbox>
109 <div class="controls"> 110 <div class="controls">
110 <button id="close" i18n-content="close"></button> 111 <button id="close" i18n-content="close"></button>
111 </div> 112 </div>
112 </div> 113 </div>
113 </body> 114 </body>
114 </html> 115 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/certificate_viewer.js » ('j') | chrome/browser/resources/certificate_viewer.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698