Elim cr-checkbox
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / bandwidth_view.html
blob01e804e558e47352f95fb9a233897d38cd415abd
1 <!-- Bandwidth info -->
2 <style>
3 .data-reduction-proxy-view-events-details {
4 background-color: rgb(220,220,220);
6 table.borderless-table,
7 .borderless-table th,
8 .borderless-table td {
9 border: 0px;
10 padding-left: 4px;
11 padding-right: 4px;
13 </style>
14 <div id=bandwidth-view-tab-content class=content-box>
15 <h2>Data Reduction Proxy Status</h2>
16 <ul id=data-reduction-proxy-view-status>
17 <li>Status: <span id="data-reduction-proxy-enabled"></span></li>
18 <li>Proxy configuration: <span id="data-reduction-proxy-config"></span></li>
19 <li>Probe status: <span id="data-reduction-proxy-probe-status"></span></li>
20 <li id="data-reduction-proxy-bypass-state-container">Bypass details:
21 <span id="data-reduction-proxy-bypass-state-details"></span></li>
22 </ul>
23 <a href="#proxy">View current proxy configuration</a>
25 <h4>Recent events</h4>
26 <div id=data-reduction-proxy-view-events-content>
27 <table class="styled-table">
28 <thead>
29 <tr>
30 <th>Time</th>
31 <th>Action</th>
32 </tr>
33 <tr>
34 <th colspan=2>Details</th>
35 </tr>
36 </thead>
37 <tbody id=data-reduction-proxy-view-events-tbody>
38 </tbody>
39 </table>
40 </div>
41 <h4>Bandwidth Savings</h4>
42 <table class="styled-table" id="bandwidth-stats-table">
43 <thead>
44 <tr>
45 <th></th>
46 <th>Session</th>
47 <th>Total</th>
48 </tr>
49 </thead>
50 <tbody>
51 <tr jsselect="rows">
52 <td jscontent="title"></td>
53 <td jscontent="sessionValue"></td>
54 <td jscontent="historicValue"></td>
55 </tr>
56 </tbody>
57 </table>
58 </div>