OLD | NEW |
1 <!-- | 1 <!-- |
2 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2012 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 | 6 |
7 <!-- Status bar at top of screen when in capture mode. --> | 7 <!-- Status bar at top of screen when in capture mode. --> |
8 <div id=capture-status-view> | 8 <div id=capture-status-view> |
9 <table width=100%><tr> | 9 <table width=100%><tr> |
10 <td> | 10 <td> |
11 Capturing network events | 11 Capturing network events |
12 (<span id=capture-status-view-captured-events-count | 12 (<span id=capture-status-view-captured-events-count |
13 title='Number of events captured to this window'></span>) | 13 title='Number of events captured to this window'></span>) |
14 <button id=capture-status-view-stop>Stop</button> | 14 <button id=capture-status-view-stop>Stop</button> |
15 <button id=capture-status-view-reset>Reset</button> | 15 <button id=capture-status-view-reset>Reset</button> |
16 </td> | 16 </td> |
17 <td align=right> | 17 <td align=right> |
18 <button id=capture-status-view-clear-cache class=warningText> | 18 <button id=capture-status-view-clear-cache class=warning-text> |
19 Clear cache</button> | 19 Clear cache</button> |
20 <button id=capture-status-view-flush-sockets class=warningText> | 20 <button id=capture-status-view-flush-sockets class=warning-text> |
21 Flush sockets</button> | 21 Flush sockets</button> |
22 </td> | 22 </td> |
23 </tr></table> | 23 </tr></table> |
24 </div> | 24 </div> |
25 | 25 |
26 <!-- Status bar at top of screen when capturing is stopped --> | 26 <!-- Status bar at top of screen when capturing is stopped --> |
27 <div id=halted-status-view> | 27 <div id=halted-status-view> |
28 <!-- The use of a table here is to get things to center vertically. | 28 <!-- The use of a table here is to get things to center vertically. |
29 We need this since the CSS adds padding to our DIV to make the | 29 We need this since the CSS adds padding to our DIV to make the |
30 various status bars have similar heights. --> | 30 various status bars have similar heights. --> |
(...skipping 10 matching lines...) Expand all Loading... |
41 We need this since the CSS adds padding to our DIV to make the | 41 We need this since the CSS adds padding to our DIV to make the |
42 various status bars have similar heights. --> | 42 various status bars have similar heights. --> |
43 <table height=100%> | 43 <table height=100%> |
44 <tr valign=middle> | 44 <tr valign=middle> |
45 <td> | 45 <td> |
46 Displaying log file (<span id=loaded-status-view-dump-file-name></span>) | 46 Displaying log file (<span id=loaded-status-view-dump-file-name></span>) |
47 </td> | 47 </td> |
48 </tr> | 48 </tr> |
49 </table> | 49 </table> |
50 </div> | 50 </div> |
OLD | NEW |