Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Side by Side Diff: netlog_viewer/bandwidth_view.html

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « netlog_viewer/alt_svc_view.js ('k') | netlog_viewer/bandwidth_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!-- Bandwidth info -->
2 <style>
3 .data-reduction-proxy-view-events-details {
4 background-color: rgb(220,220,220);
5 }
6 table.borderless-table,
7 .borderless-table th,
8 .borderless-table td {
9 border: 0px;
10 padding-left: 4px;
11 padding-right: 4px;
12 }
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>
24
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 id=bandwidth-savings-tbody>
51 </tbody>
52 </table>
53 </div>
OLDNEW
« no previous file with comments | « netlog_viewer/alt_svc_view.js ('k') | netlog_viewer/bandwidth_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698