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

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

Issue 9724038: DevTools: convert about:workers into about:inspect (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments addressed. Created 8 years, 9 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
(Empty)
1 <!DOCTYPE HTML>
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
4 found in the LICENSE file.
5 -->
6 <html>
7 <title>Workers</title>
8 <style>
9 thead {
10 background: #E0ECFF;
11 }
12 td {
13 padding: 0 15px 0 15px;
14 }
15 a {
16 margin-right: 10px;
17 }
18
19 </style>
20 <script src="chrome://workers/workers.js"></script>
21 <body>
22 <h2>Shared workers:</h2>
23 <table>
24 <thead>
25 <tr>
26 <th>Id</th>
27 <th>URL</th>
28 <th>Name</th>
29 <th>Process id</th>
30 </tr>
31 </thead>
32 <tbody id="workers-table">
33 </tbody>
34 </table>
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/inspect/inspect.js ('k') | chrome/browser/resources/workers/workers.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698