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

Side by Side Diff: chrome/browser/resources/net_internals/http_pipeline_view.html

Issue 275953002: Remove HTTP pipelining support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix line endings Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
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>
6
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 H TTP 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="so urce_id"></a></td>
34 </tr>
35 </tbody>
36 </table>
37 </p>
38 </div>
39
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/browser_bridge.js ('k') | chrome/browser/resources/net_internals/http_pipeline_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698