blob: db05db3c05cfe17ff7a560646f3a116f0b9e143a (
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<script src="tracking.js"></script>
<script src="chrome://resources/js/util.js"></script>
<style>
body {
font-family: sans-serif;
font-size: 80%;
}
/*
* The following styles are for a TABLE that uses a thin collapsed border, and
* has a blue heading. When you hover over rows, they turn yellow.
*/
table.results-table {
border-collapse:collapse;
}
table.results-table,
.results-table th,
.results-table td {
border: 1px solid #777;
padding-right: 4px;
padding-left: 4px;
}
.results-table th {
background: rgb(224,236,255);
}
.results-table tbody tr:hover {
background-color:#ffb;
}
/*
* Make the column headers change the mouse to a "hand" cursor, sine they are
* clickable.
*/
.results-table th {
cursor: pointer;
}
/*
* This is row which displays aggregate totals for each column.
*/
.results-table .aggregator-row {
background: #FFCC99;
}
/*---------------------------------------------------------------------------*/
/*
* When grouping data, the table for each bucket is wrapped in a DIV with this
* class. Used to add a bit of spacing between groups.
*/
.group-container {
margin-top: 2ex;
margin-bottom: 2ex;
}
/*
* The title for each group is enclosed in a DIV of the following class.
*/
.group-title-container {
font-size: 140%;
margin-bottom: 1ex;
}
</style>
</head>
<body>
<table width=100%>
<tr>
<td>
<b>Group by: </b> <span id=group-by-container></span>
<b>Sort by: </b> <span id=sort-by-container></span>
</td>
<td align=right>
<a href=# id=edit-columns-link>[Edit columns]</a>
<input type='search' incremental id='filter-search' />
<a href='#' id=filter-help-link>?</a>
</td>
</tr>
<tr id=edit-columns-row style='display:none'>
<td colspan=2 id=column-toggles-container></td>
</tr>
<tr id=filter-help-container style='display:none'>
<td colspan=2>
<div style='border: 1px dashed black; padding: 1em'>
<p>You can filter elements either by entering a case insensitive
substring to match, or by entering a javascript boolean expression
(solved using 'eval()').</p>
<u>Examples:</u>
<ul>
<li>
<pre style='display:inline'>BrowserWatchdog</pre>
</li>
<li>
<pre style='display:inline'>browser/net/sqlite</pre>
</li>
<li>
<pre style='display:inline'>(x.avg_queue_ms > 0.5 || x.death_data.count > 1000) && x.birth_thread == 'CrBrowserMain'</pre>
</li>
</ul>
<u>All property names:</u>
<ul id='filter-help-property-names-ul'></ul>
</div>
</td>
</tr>
</table>
<hr/>
<div id='results-div'></div>
</body>
</html>
|