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

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

Issue 7396026: Consolidate content-security-policy markup (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 <include src="../content_security_policy.html"/>
6 TODO(tsepez) rename when Content-security-policy is done.
7 TODO(tsepez) remove unsafe-eval when bidichecker_packaged.js fixed.
8 -->
9 <meta http-equiv="X-WebKit-CSP"
10 content="object-src 'none';
11 script-src chrome://resources
12 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
13 'self' 'unsafe-eval'">
14 <!-- Set the title to that of the default page so that the title doesn't flash 6 <!-- Set the title to that of the default page so that the title doesn't flash
15 on load (for the most common case). --> 7 on load (for the most common case). -->
16 <title i18n-content="browserPageTabTitle"></title> 8 <title i18n-content="browserPageTabTitle"></title>
17 9
18 <link rel="icon" href="../../../app/theme/settings_favicon.png"> 10 <link rel="icon" href="../../../app/theme/settings_favicon.png">
19 <link rel="stylesheet" href="chrome://resources/css/button.css"> 11 <link rel="stylesheet" href="chrome://resources/css/button.css">
20 <link rel="stylesheet" href="chrome://resources/css/list.css"> 12 <link rel="stylesheet" href="chrome://resources/css/list.css">
21 <link rel="stylesheet" href="chrome://resources/css/select.css"> 13 <link rel="stylesheet" href="chrome://resources/css/select.css">
22 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 14 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
23 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 15 <link rel="stylesheet" href="chrome://resources/css/tree.css">
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 </div> 159 </div>
168 </div> 160 </div>
169 </div> 161 </div>
170 </div> 162 </div>
171 </div> 163 </div>
172 <script src="chrome://settings/strings.js"></script> 164 <script src="chrome://settings/strings.js"></script>
173 <script src="chrome://resources/js/i18n_template.js"></script> 165 <script src="chrome://resources/js/i18n_template.js"></script>
174 <script src="chrome://resources/js/i18n_process.js"></script> 166 <script src="chrome://resources/js/i18n_process.js"></script>
175 </body> 167 </body>
176 </html> 168 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698