| OLD | NEW |
| 1 <dom-module id="spdy-view"> | 1 <dom-module id="spdy-view"> |
| 2 <template> | 2 <template> |
| 3 <div id=spdy-view-tab-content class=content-box> | 3 <div id=spdy-view-tab-content class=content-box> |
| 4 <h4>HTTP/2 status</h4> | 4 <h4>HTTP/2 status</h4> |
| 5 <ul id=spdy-view-status style='margin-top:0'> | 5 <ul id=spdy-view-status style='margin-top:0'> |
| 6 <!-- "enable_http2" and "enable_spdy31" are used since release 50, see | |
| 7 https://crrev.com/1651123002. "spdy_enabled" is here to support | |
| 8 importing netlog json files from earlier browsers. | |
| 9 TODO(bnc): Deprecate around 2016 July. --> | |
| 10 <li>HTTP/2 Enabled: <span id=spdy-view-http2-enabled></span></li> | 6 <li>HTTP/2 Enabled: <span id=spdy-view-http2-enabled></span></li> |
| 11 <li>SPDY/3.1 Enabled: <span id=spdy-view-spdy31-enabled></span></li> | |
| 12 <!-- "use_alternative_service" is used here since release 46, see | |
| 13 https://crrev.com/1268313004. "use_alternate_protocols" is here to | |
| 14 support importing netlog json files from earlier browsers. | |
| 15 TODO(bnc): Deprecate around 2016 February. --> | |
| 16 <li>Use Alternative Service: <span id=spdy-view-alternate-service></span
></li> | |
| 17 <!-- "alpn_protos" and "npn_protos" are used here since release 48, see | |
| 18 https://crrev.com/1387363004. "next_protos" is here to support | |
| 19 importing netlog json files from earlier browsers. | |
| 20 TODO(bnc): Deprecate around 2016 April. --> | |
| 21 <li>ALPN Protocols: <span id=spdy-view-alpn-protocols></span></li> | 7 <li>ALPN Protocols: <span id=spdy-view-alpn-protocols></span></li> |
| 22 <li>NPN Protocols: <span id=spdy-view-npn-protocols></span></li> | |
| 23 </ul> | 8 </ul> |
| 24 | |
| 25 <h4>HTTP/2 sessions</h4> | 9 <h4>HTTP/2 sessions</h4> |
| 26 <div id=spdy-view-session-info> | 10 <div id=spdy-view-session-info> |
| 27 <!-- Only one of these two are shown --> | 11 <!-- Only one of these two are shown --> |
| 28 <div id=spdy-view-session-info-no-content>None</div> | 12 <div id=spdy-view-session-info-no-content>None</div> |
| 29 <div id=spdy-view-session-info-content> | 13 <div id=spdy-view-session-info-content> |
| 30 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 se
ssions</a> | 14 <a href="#events&q=type:HTTP2_SESSION%20is:active">View live HTTP/2 se
ssions</a> |
| 31 <p> | 15 <p> |
| 32 <table class="styled-table"> | 16 <table class="styled-table"> |
| 33 <thead> | 17 <thead> |
| 34 <tr> | 18 <tr> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 60 </div> | 44 </div> |
| 61 </div> | 45 </div> |
| 62 </div> | 46 </div> |
| 63 </template> | 47 </template> |
| 64 <script> | 48 <script> |
| 65 Polymer({ | 49 Polymer({ |
| 66 is: 'spdy-view', | 50 is: 'spdy-view', |
| 67 }); | 51 }); |
| 68 </script> | 52 </script> |
| 69 </dom-module> | 53 </dom-module> |
| OLD | NEW |