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

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

Issue 1088007: Add an initial implementation of net-internals inspector in javascript.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: more build file Created 10 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
1 <html> 1 <html>
2 <!--
3 Copyright (c) 2010 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file.
6 -->
2 <head> 7 <head>
3 <title>Under construction...</title> 8 <link tyle="text/css" rel="stylesheet" href="main.css" />
4 <script> 9 <script src="main.js"></script>
5 10 <script src="util.js"></script>
6 // TODO(eroman): This is all temporary... 11 <script src="requestsview.js"></script>
7 12 <script src="detailsview.js"></script>
8 function sendTestMessageToBrowser() { 13 <script src="sourceentry.js"></script>
9 log("Sent message to browser"); 14 <script src="layoutmanager.js"></script>
10 chrome.send('testMessage', [String((new Date()).toLocaleTimeString())]); 15 <script src="timelineviewpainter.js"></script>
11 } 16 <script src="logviewpainter.js"></script>
12 17 <script src="loggrouper.js"></script>
13 function log(msg) {
14 var l = document.getElementById('log');
15 l.appendChild(document.createTextNode(msg + "\n"));
16 }
17
18 </script>
19 </head> 18 </head>
20 19 <body onload="onLoaded()">
21 20 <!-- Filter Box: This the top bar which contains the search box. -->
22 <body> 21 <div id=filterBox>
23 <p>This is a work in progress. See http://crbug.com/37421 for details.</p> 22 <table width=100% height=100%>
24 23 <tr>
25 <input onclick="sendTestMessageToBrowser()" 24 <td width=1%>Filter:</td>
26 value="SendTestMessageToBrowser" 25 <td width=98%><input type="search" incremental id=filterInput /></td>
27 type=button /> 26 <td width=1% id=filterCount>(1 of 34)</td>
28 27 </tr>
29 <pre id=log></pre> 28 </table>
30 29 </div>
30 <!-- Requests Box: This the panel on the left which lists the requests -->
31 <div id=requestsBox>
32 <table id=requestsListTable cellspacing=0 cellpadding=0>
33 <thead>
34 <tr>
35 <td><input type=checkbox id=selectAll /></td>
36 <td>ID</td>
37 <td>Source</td>
38 <td>URL</td>
39 </tr>
40 </thead>
41 <!-- Requests table body: This is where request rows go into -->
42 <tbody id=requestsListTableBody></tbody>
43 </table>
44 </div>
45 <!-- Action Box: This is a button bar along the bottom -->
46 <div id=actionBox>
47 <input type=button value="Stop capturing" onclick="alert('TODO')" />
48 <input type=button value="Delete selected" id=deleteSelected />
49 </div>
50 <!-- Splitter Box: This is a handle to resize the vertical divider -->
51 <div id=splitterBox></div>
52 <!-- Details box: This is the panel on the right which shows information -->
53 <div id=detailsBox>
54 <table class=tabSwitcher cellspacing=0>
55 <tr>
56 <th id=detailsLogTabHandle>Log</th>
57 <td class=tabSwitcherSpacer>&nbsp;</td>
58 <th id=detailsTimelineTabHandle>Timeline</th>
59 </tr>
60 </table>
61 <div class=tabSwitcherLine></div>
62 <div id=detailsTabArea></div>
63 </div>
31 </body> 64 </body>
32 </html> 65 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/detailsview.js ('k') | chrome/browser/resources/net_internals/layoutmanager.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698