Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / spdy_view.html
blob964b111eaeef97ee51938ad3ffd5658e94fab0fb
1 <div id=spdy-view-tab-content class=content-box>
2 <ul id=spdy-view-status style='margin-top:0'>
3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li>
4 <!-- "use_alternative_service" is used here since release 46, see
5 https://crrev.com/1268313004. "use_alternate_protocols" is here to
6 support importing netlog json files from earlier browsers.
7 TODO(bnc): Deprecate around 2016 February. -->
8 <li>Use Alternative Service: <span jscontent="$this.use_alternative_services || $this.use_alternate_protocols"></span></li>
9 <li>Next Protocols: <span jscontent="next_protos"></span></li>
10 </ul>
12 <h4>HTTP/2 sessions</h4>
13 <div id=spdy-view-session-info>
14 <!-- Only one of these two are shown -->
15 <div jsdisplay="spdySessionInfo.length == 0">None</div>
16 <div jsdisplay="spdySessionInfo.length != 0">
17 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessions</a>
18 <p>
19 <table class="styled-table">
20 <thead>
21 <tr>
22 <th>Host</th>
23 <th>Proxy</th>
24 <th>ID</th>
25 <th>Protocol Negotiated</th>
26 <th>Active streams</th>
27 <th>Unclaimed pushed</th>
28 <th>Max</th>
29 <th>Initiated</th>
30 <th>Pushed</th>
31 <th>Pushed and claimed</th>
32 <th>Abandoned</th>
33 <th>Received frames</th>
34 <th>Secure</th>
35 <th>Sent settings</th>
36 <th>Received settings</th>
37 <th>Send window</th>
38 <th>Receive window</th>
39 <th>Unacked received data</th>
40 <th>Error</th>
41 </tr>
42 </thead>
43 <tbody>
44 <tr jsselect="spdySessionInfo">
45 <td><span jscontent="host_port_pair"></span>
46 <span jscontent="$this.aliases ? $this.aliases.join(' ') : ''"></span>
47 </td>
48 <td jscontent="proxy"></td>
49 <td><a jsvalues=".href: '#events&q=id:' + source_id" jscontent="source_id"></a></td>
50 <td jscontent="protocol_negotiated"></td>
51 <td jscontent="active_streams"></td>
52 <td jscontent="unclaimed_pushed_streams"></td>
53 <td jscontent="max_concurrent_streams"></td>
54 <td jscontent="streams_initiated_count"></td>
55 <td jscontent="streams_pushed_count"></td>
56 <td jscontent="streams_pushed_and_claimed_count"></td>
57 <td jscontent="streams_abandoned_count"></td>
58 <td jscontent="frames_received"></td>
59 <td jscontent="is_secure"></td>
60 <td jscontent="sent_settings"></td>
61 <td jscontent="received_settings"></td>
62 <td jscontent="send_window_size"></td>
63 <td jscontent="recv_window_size"></td>
64 <td jscontent="unacked_recv_window_bytes"></td>
65 <td jscontent="error"></td>
66 </tr>
67 </tbody>
68 </table>
69 </p>
70 </div>
71 </div>
73 <h4>Alternative Service Mappings</h4>
74 <div id=spdy-view-alternate-protocol-mappings>
75 <div jsdisplay="spdyAlternateProtocolMappings.length == 0">None</div>
76 <div jsdisplay="spdyAlternateProtocolMappings.length != 0">
77 <table class="styled-table">
78 <thead>
79 <tr>
80 <th>Host</th>
81 <th>Alternative Service</th>
82 </tr>
83 </thead>
84 <tbody>
85 <tr jsselect="spdyAlternateProtocolMappings">
86 <td jscontent="host_port_pair"></td>
87 <!-- "alternative_service" is used since release 43, see
88 https://crrev.com/1043973002. "alternate_protocol" is here
89 to support importing netlog json files from earlier browsers.
90 TODO(bnc): Deprecate around 2015 October. -->
91 <td jscontent="$this.alternative_service || $this.alternate_protocol"></td>
92 </tr>
93 </tbody>
94 </table>
95 </div>
96 </div>
97 </div>