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

Side by Side Diff: chrome/browser/resources/downloads.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 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 <!-- 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 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
15 <link rel="icon" href="../../app/theme/downloads_favicon.png"> 7 <link rel="icon" href="../../app/theme/downloads_favicon.png">
16 <style> 8 <style>
17 body { 9 body {
18 background-color: white; 10 background-color: white;
19 color: black; 11 color: black;
20 margin: 10px; 12 margin: 10px;
21 } 13 }
22 14
23 .header { 15 .header {
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 <div id="downloads-display"></div> 200 <div id="downloads-display"></div>
209 </div> 201 </div>
210 <div class="footer"> 202 <div class="footer">
211 </div> 203 </div>
212 <script src="chrome://downloads/downloads.js"></script> 204 <script src="chrome://downloads/downloads.js"></script>
213 <script src="chrome://downloads/strings.js"></script> 205 <script src="chrome://downloads/strings.js"></script>
214 <script src="chrome://resources/js/i18n_template.js"></script> 206 <script src="chrome://resources/js/i18n_template.js"></script>
215 <script src="chrome://resources/js/i18n_process.js"></script> 207 <script src="chrome://resources/js/i18n_process.js"></script>
216 </body> 208 </body>
217 </html> 209 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698