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 <img id=capture-status-view-toggle-extras | 18 <img id=capture-status-view-toggle-extras |
19 class=capture-status-view-rotateleft | 19 class=capture-status-view-rotateleft |
20 src='chrome://resources/images/select.png' /> | 20 src="chrome://resources/images/select.png"> |
21 <span id=capture-status-view-extras style="display:none"> | 21 <span id=capture-status-view-extras style="display:none"> |
22 <button id=capture-status-view-clear-cache class=warning-text> | 22 <button id=capture-status-view-clear-cache class=warning-text> |
23 Clear cache</button> | 23 Clear cache</button> |
24 <button id=capture-status-view-flush-sockets class=warning-text> | 24 <button id=capture-status-view-flush-sockets class=warning-text> |
25 Flush sockets</button> | 25 Flush sockets</button> |
26 </span> | 26 </span> |
27 </td> | 27 </td> |
28 </tr></table> | 28 </tr></table> |
29 </div> | 29 </div> |
30 | 30 |
(...skipping 15 matching lines...) Expand all Loading... |
46 We need this since the CSS adds padding to our DIV to make the | 46 We need this since the CSS adds padding to our DIV to make the |
47 various status bars have similar heights. --> | 47 various status bars have similar heights. --> |
48 <table height=100%> | 48 <table height=100%> |
49 <tr valign=middle> | 49 <tr valign=middle> |
50 <td> | 50 <td> |
51 Displaying log file (<span id=loaded-status-view-dump-file-name></span>) | 51 Displaying log file (<span id=loaded-status-view-dump-file-name></span>) |
52 </td> | 52 </td> |
53 </tr> | 53 </tr> |
54 </table> | 54 </table> |
55 </div> | 55 </div> |
OLD | NEW |