OLD | NEW |
1 <div id=spdy-view-tab-content class=content-box> | 1 <div id=spdy-view-tab-content class=content-box> |
2 <ul id=spdy-view-status style='margin-top:0'> | 2 <ul id=spdy-view-status style='margin-top:0'> |
3 <li>SPDY Enabled: <span jscontent="spdy_enabled"></span></li> | 3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li> |
4 <li>Use Alternate Protocol: <span jscontent="use_alternate_protocols"></span
></li> | 4 <li>Use Alternate Protocol: <span jscontent="use_alternate_protocols"></span
></li> |
5 <li>Force SPDY Always: <span jscontent="force_spdy_always"></span></li> | 5 <li>Force HTTP/2 Always: <span jscontent="force_spdy_always"></span></li> |
6 <li>Force SPDY Over SSL: <span jscontent="force_spdy_over_ssl"></span></li> | 6 <li>Force HTTP/2 Over SSL: <span jscontent="force_spdy_over_ssl"></span></li
> |
7 <li>Next Protocols: <span jscontent="next_protos"></span></li> | 7 <li>Next Protocols: <span jscontent="next_protos"></span></li> |
8 </ul> | 8 </ul> |
9 | 9 |
10 <h4>SPDY sessions</h4> | 10 <h4>HTTP/2 sessions</h4> |
11 <div id=spdy-view-session-info> | 11 <div id=spdy-view-session-info> |
12 <!-- Only one of these two are shown --> | 12 <!-- Only one of these two are shown --> |
13 <div jsdisplay="spdySessionInfo.length == 0">None</div> | 13 <div jsdisplay="spdySessionInfo.length == 0">None</div> |
14 <div jsdisplay="spdySessionInfo.length != 0"> | 14 <div jsdisplay="spdySessionInfo.length != 0"> |
15 <a href="#events&q=type:SPDY_SESSION%20is:active">View live SPDY sessions<
/a> | 15 <a href="#events&q=type:SPDY_SESSION%20is:active">View live HTTP/2 session
s</a> |
16 <p> | 16 <p> |
17 <table class="styled-table"> | 17 <table class="styled-table"> |
18 <thead> | 18 <thead> |
19 <tr> | 19 <tr> |
20 <th>Host</th> | 20 <th>Host</th> |
21 <th>Proxy</th> | 21 <th>Proxy</th> |
22 <th>ID</th> | 22 <th>ID</th> |
23 <th>Protocol Negotiated</th> | 23 <th>Protocol Negotiated</th> |
24 <th>Active streams</th> | 24 <th>Active streams</th> |
25 <th>Unclaimed pushed</th> | 25 <th>Unclaimed pushed</th> |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 <tbody> | 82 <tbody> |
83 <tr jsselect="spdyAlternateProtocolMappings"> | 83 <tr jsselect="spdyAlternateProtocolMappings"> |
84 <td jscontent="host_port_pair"></td> | 84 <td jscontent="host_port_pair"></td> |
85 <td jscontent="alternate_protocol"></td> | 85 <td jscontent="alternate_protocol"></td> |
86 </tr> | 86 </tr> |
87 </tbody> | 87 </tbody> |
88 </table> | 88 </table> |
89 </div> | 89 </div> |
90 </div> | 90 </div> |
91 </div> | 91 </div> |
OLD | NEW |