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

Side by Side Diff: chrome/browser/resources/workers/index.html

Issue 8124010: Replace <meta> tag with header for content-security-policy on chrome:// pages. (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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <!-- Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 <!-- Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <html> 6 <html>
7 <include src="../content_security_policy.html"/>
8 <title>Workers</title> 7 <title>Workers</title>
9 <style> 8 <style>
10 thead { 9 thead {
11 background: #E0ECFF; 10 background: #E0ECFF;
12 } 11 }
13 td { 12 td {
14 padding: 0 15px 0 15px; 13 padding: 0 15px 0 15px;
15 } 14 }
16 15
17 </style> 16 </style>
18 <script src="chrome://workers/workers.js"></script> 17 <script src="chrome://workers/workers.js"></script>
19 <body> 18 <body>
20 <h2>Shared workers:</h2> 19 <h2>Shared workers:</h2>
21 <table> 20 <table>
22 <thead> 21 <thead>
23 <tr> 22 <tr>
24 <th>Id</th> 23 <th>Id</th>
25 <th>URL</th> 24 <th>URL</th>
26 <th>Name</th> 25 <th>Name</th>
27 <th>Process id</th> 26 <th>Process id</th>
28 </tr> 27 </tr>
29 </thead> 28 </thead>
30 <tbody id="workers-table"> 29 <tbody id="workers-table">
31 </tbody> 30 </tbody>
32 </table> 31 </table>
33 </body> 32 </body>
34 </html> 33 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/tracing.html ('k') | chrome/browser/ui/webui/chrome_url_data_manager_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698