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

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

Issue 7276009: Add content-security-policy directive to chrome://crashes page. (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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/ui/webui/crashes_ui.cc » ('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 <meta http-equiv="X-WebKit-CSP"
6 content="object-src 'none';
7 script-src chrome://resources 'self' 'unsafe-eval'">
5 <title i18n-content="crashesTitle"></title> 8 <title i18n-content="crashesTitle"></title>
6 <link rel="stylesheet" href="crashes.css"> 9 <link rel="stylesheet" href="crashes.css">
7 <script src="chrome://resources/js/local_strings.js"></script> 10 <script src="chrome://resources/js/local_strings.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
9 <script src="crashes.js"></script> 12 <script src="chrome://crashes/strings.js"></script>
13 <script src="chrome://crashes/crashes.js"></script>
10 </head> 14 </head>
11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 15 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
12 <header><h1 i18n-content="crashesTitle"></h1></header> 16 <header><h1 i18n-content="crashesTitle"></h1></header>
13 <div id="enabledMode"> 17 <div id="enabledMode">
14 <h2 id="countBanner"></h2> 18 <h2 id="countBanner"></h2>
15 <div id="crashList"></div> 19 <div id="crashList"></div>
16 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p> 20 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p>
17 </div> 21 </div>
18 <div id="disabledMode" hidden> 22 <div id="disabledMode" hidden>
19 <h2 i18n-content="disabledHeader"></h2> 23 <h2 i18n-content="disabledHeader"></h2>
20 <p i18n-values=".innerHTML:disabledMessage"></p> 24 <p i18n-values=".innerHTML:disabledMessage"></p>
21 </div> 25 </div>
26 <script src="chrome://resources/js/i18n_template.js"></script>
27 <script src="chrome://resources/js/i18n_process.js"></script>
28 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
22 </body> 29 </body>
23 </html> 30 </html>
31
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/ui/webui/crashes_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698