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

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

Issue 8341081: Add icon-visibility attribute to cr.ui.Tree. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use simple regex. Created 9 years, 1 month 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 | chrome/browser/resources/collected_cookies.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/css/tree.css.js"></script>
10 <script src="chrome://resources/js/cr.js"></script> 11 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/ui.js"></script> 12 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 13 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
13 <script src="chrome://resources/js/cr/ui/tabs.js"></script> 14 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
14 <script src="chrome://resources/js/cr/ui/tree.js"></script> 15 <script src="chrome://resources/js/cr/ui/tree.js"></script>
15 <script src="chrome://resources/js/i18n_template.js"></script> 16 <script src="chrome://resources/js/i18n_template.js"></script>
16 <script src="chrome://resources/js/util.js"></script> 17 <script src="chrome://resources/js/util.js"></script>
17 <script src="certificate_viewer.js"></script> 18 <script src="certificate_viewer.js"></script>
18 </head> 19 </head>
19 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 20 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 <div class="detail"> 87 <div class="detail">
87 <div class="attribute" i18n-content="sha1"></div> 88 <div class="attribute" i18n-content="sha1"></div>
88 <div id="sha1" class="value"></div> 89 <div id="sha1" class="value"></div>
89 </div> 90 </div>
90 </div> 91 </div>
91 </tabpanel> 92 </tabpanel>
92 <tabpanel> 93 <tabpanel>
93 <!-- Details --> 94 <!-- Details -->
94 <div id="hierarchy-section" class="vertical-box"> 95 <div id="hierarchy-section" class="vertical-box">
95 <span class="title" i18n-content="hierarchy"></span> 96 <span class="title" i18n-content="hierarchy"></span>
96 <div id="hierarchy" class="section-contents"></div> 97 <tree id="hierarchy" class="section-contents"
98 icon-visibility='hidden'></tree>
97 </div> 99 </div>
98 <div id="cert-fields-section" class="vertical-box"> 100 <div id="cert-fields-section" class="vertical-box">
99 <span class="title" i18n-content="certFields"></span> 101 <span class="title" i18n-content="certFields"></span>
100 <div id="cert-fields" class="section-contents"></div> 102 <tree id="cert-fields" class="section-contents"
103 icon-visibility='hidden'></tree>
101 </div> 104 </div>
102 <div id="cert-field-value-section" class="vertical-box"> 105 <div id="cert-field-value-section" class="vertical-box">
103 <span class="title" i18n-content="certFieldVal"></span> 106 <span class="title" i18n-content="certFieldVal"></span>
104 <div id="cert-field-value" class="section-contents"></div> 107 <div id="cert-field-value" class="section-contents"></div>
105 <button id="export" i18n-content="export"></button> 108 <button id="export" i18n-content="export"></button>
106 </div> 109 </div>
107 </tabpanel> 110 </tabpanel>
108 </tabpanels> 111 </tabpanels>
109 </tabbox> 112 </tabbox>
110 <div class="controls"> 113 <div class="controls">
111 <button id="close" i18n-content="close"></button> 114 <button id="close" i18n-content="close"></button>
112 </div> 115 </div>
113 </div> 116 </div>
114 </body> 117 </body>
115 </html> 118 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/collected_cookies.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698