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

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

Issue 7272014: Mark untrusted certificates as such in Linux UI. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ... Created 9 years, 5 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 id="t" i18n-values="dir:textdirection"> 2 <html id="t" i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy. 5 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
6 TODO(tsepez) rename when Content-security-policy is done. 6 TODO(tsepez) rename when Content-security-policy is done.
7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed. 7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
8 --> 8 -->
9 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome:// resources 'self' 'unsafe-eval'"> 9 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome:// resources 'self' 'unsafe-eval'">
10 <!-- Set the title to that of the default page so that the title doesn't flash 10 <!-- Set the title to that of the default page so that the title doesn't flash
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 <link rel="stylesheet" href="about_page.css"> 44 <link rel="stylesheet" href="about_page.css">
45 <link rel="stylesheet" href="chromeos/accounts_options_page.css"> 45 <link rel="stylesheet" href="chromeos/accounts_options_page.css">
46 <link rel="stylesheet" href="chromeos/change_picture_options.css"> 46 <link rel="stylesheet" href="chromeos/change_picture_options.css">
47 <link rel="stylesheet" href="chromeos/internet_options_page.css"> 47 <link rel="stylesheet" href="chromeos/internet_options_page.css">
48 <link rel="stylesheet" href="chromeos/proxy.css"> 48 <link rel="stylesheet" href="chromeos/proxy.css">
49 <link rel="stylesheet" href="chromeos/system_options_page.css"> 49 <link rel="stylesheet" href="chromeos/system_options_page.css">
50 </if> 50 </if>
51 51
52 <if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')"> 52 <if expr="not pp_ifdef('win32') and not pp_ifdef('darwin')">
53 <link rel="stylesheet" href="certificate_manager.css"> 53 <link rel="stylesheet" href="certificate_manager.css">
54 <link rel="stylesheet" href="certificate_tree.css">
54 </if> 55 </if>
55 56
56 <script src="chrome://resources/css/tree.css.js"></script> 57 <script src="chrome://resources/css/tree.css.js"></script>
57 58
58 <script src="chrome://resources/js/cr.js"></script> 59 <script src="chrome://resources/js/cr.js"></script>
59 <script src="chrome://resources/js/cr/command_line.js"></script> 60 <script src="chrome://resources/js/cr/command_line.js"></script>
60 <script src="chrome://resources/js/cr/event_target.js"></script> 61 <script src="chrome://resources/js/cr/event_target.js"></script>
61 <script src="chrome://resources/js/cr/ui.js"></script> 62 <script src="chrome://resources/js/cr/ui.js"></script>
62 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script> 63 <script src="chrome://resources/js/cr/ui/array_data_model.js"></script>
63 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script> 64 <script src="chrome://resources/js/cr/ui/list_selection_model.js"></script>
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 </div> 165 </div>
165 </div> 166 </div>
166 </div> 167 </div>
167 </div> 168 </div>
168 </div> 169 </div>
169 <script src="chrome://settings/strings.js"></script> 170 <script src="chrome://settings/strings.js"></script>
170 <script src="chrome://resources/js/i18n_template.js"></script> 171 <script src="chrome://resources/js/i18n_template.js"></script>
171 <script src="chrome://resources/js/i18n_process.js"></script> 172 <script src="chrome://resources/js/i18n_process.js"></script>
172 </body> 173 </body>
173 </html> 174 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698