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

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

Issue 8103008: Add content-security-policy directive to chrome://hung-renderer. WebUI pages should specify CSP ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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') | no next file » | 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 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <include src="content_security_policy.html"/>
6 <link rel="stylesheet" href="hung_renderer_dialog.css"> 7 <link rel="stylesheet" href="hung_renderer_dialog.css">
7 <link rel="stylesheet" href="chrome://resources/css/button.css"> 8 <link rel="stylesheet" href="chrome://resources/css/button.css">
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 9 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
9 <script src="strings.js"></script> 10 <script src="chrome://hung-renderer/strings.js"></script>
10 <script src="chrome://resources/js/cr.js"></script> 11 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/cr/ui.js"></script> 12 <script src="chrome://resources/js/cr/ui.js"></script>
12 <script src="chrome://resources/js/i18n_template.js"></script> 13 <script src="chrome://resources/js/i18n_template.js"></script>
13 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
14 <script src="hung_renderer_dialog.js"></script> 15 <script src="chrome://hung-renderer/hung_renderer_dialog.js"></script>
15 </head> 16 </head>
16 17
17 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 18 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
18 <div class="vbox"> 19 <div class="vbox">
19 <div class="fill"> 20 <div class="fill">
20 <div class="hbox"> 21 <div class="hbox">
21 <div> 22 <div>
22 <img id="theme-graphic" src="chrome://theme/IDR_FROZEN_TAB_ICON"> 23 <img id="theme-graphic" src="chrome://theme/IDR_FROZEN_TAB_ICON">
23 </div> 24 </div>
24 <div class="fill"> 25 <div class="fill">
(...skipping 14 matching lines...) Expand all
39 </div> 40 </div>
40 <div> 41 <div>
41 <div class="hbox" id="buttons-table"> 42 <div class="hbox" id="buttons-table">
42 <div><button id="kill" i18n-content="kill">Kill pages</button></div> 43 <div><button id="kill" i18n-content="kill">Kill pages</button></div>
43 <div><button id="wait" i18n-content="wait">Wait</button></div> 44 <div><button id="wait" i18n-content="wait">Wait</button></div>
44 </div> 45 </div>
45 </div> 46 </div>
46 </div> 47 </div>
47 </body> 48 </body>
48 </html> 49 </html>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698