blob: f7ec0b23275a068d8d0295ee839508983d5c6a75 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
<!DOCTYPE HTML>
<html id="t">
<head>
<title>About Stats</title>
<style>
body {
border-top: 10px solid #3B85E3;
color: #333;
font-family: Verdana, Helvetica, Arial, sans-serif;
}
body, td {
font-size: 11px;
}
a:link, a:visited {
color: #2C3EBA;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: underline;
}
h1 {
border-left: 10px solid #FFF;
font-size: 16px;
font-weight: bold;
margin: 0;
padding: 0.2em;
color: #3B85E3;
}
h2 {
border-left: 10px solid #FFF;
font-size: 11px;
font-weight: normal;
margin: 0;
padding: 0 6em 0.2em 0.2em;
}
.details {
margin: 0.4em 1.9em 0 1.2em;
padding: 0 0.4em 0.3em 0;
white-space: nowrap;
}
.details .outer {
padding-right: 0;
vertical-align: top;
}
.details .top {
border-top: 2px solid #333;
font-weight: bold;
margin-top: 0.4em;
}
.details .header2 {
font-weight: bold;
padding-left: 0.9em;
}
.details .key {
padding-left: 1.1em;
vertical-align: top;
}
.details .value {
text-align: right;
color: #333;
font-weight: bold;
}
.details .zebra {
background: #EEE;
}
.lower {
text-transform: lowercase;
}
</style>
<script src="chrome://stats/stats.js"></script>
<script src="chrome://stats/strings.js"></script>
</head>
<body>
<div style="float: right">
<br>Filter: <input id="filter" type="text" value="" onkeyup="doFilter()">
</div>
<h1 class="lower">About Stats</h1>
<h2>Shhh! This page is secret!</h2><br/>
<table class="details" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td class="outer">
<table cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td class="top" width="100">Counters</td>
<td class="top value" colspan=2></td>
</tr>
<tr>
<td class="header2 lower" name="string-sort" width="200">name</td>
<td class="header2 lower" name="number-sort">value</td>
<td class="header2 lower" name="number-sort">delta</td>
</tr>
<tr jsselect="counters" name="counter">
<td class="key" width="200" jscontent="name"></td>
<td class="value" jscontent="value"></td>
<td class="value" jscontent="delta"></td>
</tr>
</tbody>
</table>
</td>
<td width="15"/>
<td class="outer">
<table cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td class="top" width="100">Timers</td>
<td class="top value"></td>
<td class="top value" colspan=3></td>
</tr>
<tr>
<td class="header2 lower" name="string-sort" width="200">name</td>
<td class="header2 lower" name="number-sort">count</td>
<td class="header2 lower" name="number-sort">time (ms)</td>
<td class="header2 lower" name="number-sort">avg time (ms)</td>
</tr>
<tr jsselect="timers" name="timer">
<td class="key" width="200" jscontent="name"></td>
<td class="value" jscontent="value"></td>
<td class="value" jscontent="time"></td>
<td class="value"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table><br/>
<script src="chrome://resources/js/jstemplate_compiled.js"></script>
</body>
</html>
|