summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/bandwidth_view.html
blob: 01e804e558e47352f95fb9a233897d38cd415abd (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
<!-- Bandwidth info -->
<style>
.data-reduction-proxy-view-events-details {
  background-color: rgb(220,220,220);
}
table.borderless-table,
.borderless-table th,
.borderless-table td {
  border: 0px;
  padding-left: 4px;
  padding-right: 4px;
}
</style>
<div id=bandwidth-view-tab-content class=content-box>
  <h2>Data Reduction Proxy Status</h2>
  <ul id=data-reduction-proxy-view-status>
    <li>Status: <span id="data-reduction-proxy-enabled"></span></li>
    <li>Proxy configuration: <span id="data-reduction-proxy-config"></span></li>
    <li>Probe status: <span id="data-reduction-proxy-probe-status"></span></li>
    <li id="data-reduction-proxy-bypass-state-container">Bypass details:
      <span id="data-reduction-proxy-bypass-state-details"></span></li>
  </ul>
  <a href="#proxy">View current proxy configuration</a>

  <h4>Recent events</h4>
  <div id=data-reduction-proxy-view-events-content>
    <table class="styled-table">
      <thead>
        <tr>
          <th>Time</th>
          <th>Action</th>
        </tr>
        <tr>
          <th colspan=2>Details</th>
        </tr>
      </thead>
      <tbody id=data-reduction-proxy-view-events-tbody>
      </tbody>
    </table>
  </div>
  <h4>Bandwidth Savings</h4>
  <table class="styled-table" id="bandwidth-stats-table">
    <thead>
      <tr>
        <th></th>
        <th>Session</th>
        <th>Total</th>
      </tr>
    </thead>
    <tbody>
      <tr jsselect="rows">
        <td jscontent="title"></td>
        <td jscontent="sessionValue"></td>
        <td jscontent="historicValue"></td>
      </tr>
    </tbody>
  </table>
</div>