| 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>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li> | 3 <li>HTTP/2 Enabled: <span jscontent="spdy_enabled"></span></li> |
| 4 <li>Use Alternative Service: <span jscontent="use_alternate_protocols"></spa
n></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> |
| 5 <li>Next Protocols: <span jscontent="next_protos"></span></li> | 9 <li>Next Protocols: <span jscontent="next_protos"></span></li> |
| 6 </ul> | 10 </ul> |
| 7 | 11 |
| 8 <h4>HTTP/2 sessions</h4> | 12 <h4>HTTP/2 sessions</h4> |
| 9 <div id=spdy-view-session-info> | 13 <div id=spdy-view-session-info> |
| 10 <!-- Only one of these two are shown --> | 14 <!-- Only one of these two are shown --> |
| 11 <div jsdisplay="spdySessionInfo.length == 0">None</div> | 15 <div jsdisplay="spdySessionInfo.length == 0">None</div> |
| 12 <div jsdisplay="spdySessionInfo.length != 0"> | 16 <div jsdisplay="spdySessionInfo.length != 0"> |
| 13 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio
ns</a> | 17 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 sessio
ns</a> |
| 14 <p> | 18 <p> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 https://crrev.com/1043973002. "alternate_protocol" is here | 88 https://crrev.com/1043973002. "alternate_protocol" is here |
| 85 to support importing netlog json files from earlier browsers. | 89 to support importing netlog json files from earlier browsers. |
| 86 TODO(bnc): Deprecate around 2015 October. --> | 90 TODO(bnc): Deprecate around 2015 October. --> |
| 87 <td jscontent="$this.alternative_service || $this.alternate_protocol
"></td> | 91 <td jscontent="$this.alternative_service || $this.alternate_protocol
"></td> |
| 88 </tr> | 92 </tr> |
| 89 </tbody> | 93 </tbody> |
| 90 </table> | 94 </table> |
| 91 </div> | 95 </div> |
| 92 </div> | 96 </div> |
| 93 </div> | 97 </div> |
| OLD | NEW |