ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / bandwidth_view.html
bloba01d5467979c38dd538cb9e625e701a97a6df651
1 <!-- Bandwidth info -->
2 <style>
3 .data-reduction-proxy-view-events-details {
4 background-color: rgb(220,220,220);
6 </style>
7 <div id=bandwidth-view-tab-content class=content-box>
8 <h2>Data Reduction Proxy Status</h2>
9 <ul id=data-reduction-proxy-view-status>
10 <li>Status: <span id="data-reduction-proxy-enabled"></span></li>
11 <li>Primary proxy: <span id="data-reduction-proxy-primary"></span></li>
12 <li>Secondary proxy: <span id="data-reduction-proxy-secondary"></span></li>
13 <li>Probe status: <span id="data-reduction-proxy-probe-status"></span></li>
14 <li id="data-reduction-proxy-bypass-state-container">Bypass details:
15 <span jsdisplay="typeof $this == 'undefined'">Unknown</span>
16 <ul jsdisplay="typeof $this != 'undefined'">
17 <li>Origin URL: <span jscontent="origin_url"></span></li>
18 <li>Duration (seconds): <span jscontent="bypass_duration_seconds"></span></li>
19 <li>Bypass reason: <span jscontent="bypass_reason"></span></li>
20 </ul>
21 </ul>
22 <a href="#proxy">View current proxy configuration</a>
24 <h4>Recent events</h4>
25 <div id=data-reduction-proxy-view-events-content>
26 <table class="styled-table">
27 <thead>
28 <tr>
29 <th>Time</th>
30 <th>Action</th>
31 </tr>
32 <tr>
33 <th colspan=2>Details</th>
34 </tr>
35 </thead>
36 <tbody id=data-reduction-proxy-view-events-tbody>
37 </tbody>
38 </table>
39 </div>
40 <h4>Bandwidth Savings</h4>
41 <table class="styled-table" id="bandwidth-stats-table">
42 <thead>
43 <tr>
44 <th></th>
45 <th>Session</th>
46 <th>Total</th>
47 </tr>
48 </thead>
49 <tbody>
50 <tr jsselect="rows">
51 <td jscontent="title"></td>
52 <td jscontent="sessionValue"></td>
53 <td jscontent="historicValue"></td>
54 </tr>
55 </tbody>
56 </table>
57 </div>