| OLD | NEW |
| 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> |
| OLD | NEW |