blob: f3e592ecfa7dd9b614bbd361e401175db61f3000 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!--
Copyright (c) 2012 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!-- Status bar at top of screen when in capture mode. -->
<div id=capture-status-view>
<table width=100%><tr>
<td>
Capturing network events
(<span id=capture-status-view-captured-events-count
title='Number of events captured to this window'></span>)
<button id=capture-status-view-stop>Stop</button>
<button id=capture-status-view-reset>Reset</button>
</td>
<td align=right>
<img id=capture-status-view-toggle-extras
class=capture-status-view-rotateleft
src="chrome://resources/images/select.png">
<span id=capture-status-view-extras style="display:none">
<button id=capture-status-view-clear-cache class=warning-text>
Clear cache</button>
<button id=capture-status-view-flush-sockets class=warning-text>
Flush sockets</button>
</span>
</td>
</tr></table>
</div>
<!-- Status bar at top of screen when capturing is stopped -->
<div id=halted-status-view>
<!-- The use of a table here is to get things to center vertically.
We need this since the CSS adds padding to our DIV to make the
various status bars have similar heights. -->
<table height=100%>
<tr valign=middle>
<td>Capturing halted</td>
</tr>
</table>
</div>
<!-- Status bar at top of screen when displaying a loaded dump file -->
<div id=loaded-status-view>
<!-- The use of a table here is to get things to center vertically.
We need this since the CSS adds padding to our DIV to make the
various status bars have similar heights. -->
<table height=100%>
<tr valign=middle>
<td>
Displaying log file (<span id=loaded-status-view-dump-file-name></span>)
</td>
</tr>
</table>
</div>
|