cros: Remove default pinned apps trial.
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / http_pipeline_view.html
blob80cbbc4a9bf2a7b282ba7b28e4b5cb57f73e9463
1 <div id=http-pipeline-view-tab-content class=content-box>
2 <ul style='margin-top:0'>
3 <li>HTTP Pipelining Enabled:
4 <span id=http-pipeline-view-enabled-span jscontent="pipelining_enabled"></span></li>
5 </ul>
7 <h4>HTTP Pipelined Connections</h4>
8 <!-- Only one of these two are shown -->
9 <div jsdisplay="pipelined_connection_info.length == 0">None</div>
10 <div jsdisplay="pipelined_connection_info.length != 0">
11 <a href="#events&q=type:HTTP_PIPELINED_CONNECTION%20is:active">View live HTTP pipelined connections</a>
12 <p>
13 <table class="styled-table">
14 <thead>
15 <tr>
16 <th>Host</th>
17 <th>Forced</th>
18 <th>Depth</th>
19 <th>Capacity</th>
20 <th>Usable</th>
21 <th>Active</th>
22 <th>ID</th>
23 </tr>
24 </thead>
25 <tbody>
26 <tr jsselect="Array.prototype.concat.apply([], pipelined_connection_info)">
27 <td jscontent="host"></td>
28 <td jscontent="!!$this.forced"></td>
29 <td jscontent="depth"></td>
30 <td jscontent="capacity"></td>
31 <td jscontent="usable"></td>
32 <td jscontent="active"></td>
33 <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="source_id"></a></td>
34 </tr>
35 </tbody>
36 </table>
37 </p>
38 </div>
40 <h4>Known Hosts</h4>
41 <!-- Only one of these two are shown -->
42 <div jsdisplay="pipelined_host_info.length == 0">None</div>
43 <div jsdisplay="pipelined_host_info.length != 0">
44 <table class="styled-table">
45 <thead>
46 <tr>
47 <th>Host</th>
48 <th>Pipelining Capability</th>
49 </tr>
50 </thead>
51 <tbody id=http-pipeline-view-known-hosts-table>
52 <tr jsselect="pipelined_host_info">
53 <td jscontent="host"></td>
54 <td jscontent="capability"></td>
55 </tr>
56 </tbody>
57 </table>
58 </div>
59 </div>