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

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

Issue 7038046: Insert meta tag turning on content-security-protection for chrome://settings, history, downloads ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 2 <html
3 i18n-values="dir:textdirection" 3 i18n-values="dir:textdirection"
4 id="t"> 4 id="t">
5 <head> 5 <head>
6 <meta charset="utf-8"> 6 <meta charset="utf-8">
7 <!-- X-WebKit-CSP is our development name for Content-Security-Policy.
8 TODO(tsepez) rename when Content-security-policy is done.
9 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
10 -->
11 <meta http-equiv="X-WebKit-CSP" content="object-src 'none'; script-src chrome:// resources 'self' 'unsafe-eval'">
7 <!-- Set the title to that of the default page so that the title doesn't flash 12 <!-- Set the title to that of the default page so that the title doesn't flash
8 on load (for the most common case). --> 13 on load (for the most common case). -->
9 <title i18n-content="browserPageTabTitle"></title> 14 <title i18n-content="browserPageTabTitle"></title>
10 15
11 <link rel="icon" href="../../../app/theme/settings_favicon.png"> 16 <link rel="icon" href="../../../app/theme/settings_favicon.png">
12 <link rel="stylesheet" href="chrome://resources/css/button.css"> 17 <link rel="stylesheet" href="chrome://resources/css/button.css">
13 <link rel="stylesheet" href="chrome://resources/css/list.css"> 18 <link rel="stylesheet" href="chrome://resources/css/list.css">
14 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 19 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
15 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 20 <link rel="stylesheet" href="chrome://resources/css/tree.css">
16 <link rel="stylesheet" href="../webui.css"> 21 <link rel="stylesheet" href="../webui.css">
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 </div> 159 </div>
155 </div> 160 </div>
156 </div> 161 </div>
157 </div> 162 </div>
158 </div> 163 </div>
159 <script src="chrome://settings/strings.js"></script> 164 <script src="chrome://settings/strings.js"></script>
160 <script src="chrome://resources/js/i18n_template.js"></script> 165 <script src="chrome://resources/js/i18n_template.js"></script>
161 <script src="chrome://resources/js/i18n_process.js"></script> 166 <script src="chrome://resources/js/i18n_process.js"></script>
162 </body> 167 </body>
163 </html> 168 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698