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

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

Issue 6465001: Display more information at chrome://net-internals/#spdy... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Clear the Alternate Protocols Mapping inner HTML before adding new values Created 9 years, 10 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
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <head i18n-values="dir:textdirection;"> 2 <head i18n-values="dir:textdirection;">
3 <!-- 3 <!--
4 Copyright (c) 2010 The Chromium Authors. All rights reserved. 4 Copyright (c) 2010 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <link rel="stylesheet" href="main.css"> 9 <link rel="stylesheet" href="main.css">
10 <link rel="stylesheet" href="tabswitcherview.css"> 10 <link rel="stylesheet" href="tabswitcherview.css">
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 <p> 140 <p>
141 <div id=socketPoolDiv> 141 <div id=socketPoolDiv>
142 </div> 142 </div>
143 </p> 143 </p>
144 <p> 144 <p>
145 <div id=socketPoolGroupsDiv> 145 <div id=socketPoolGroupsDiv>
146 </div> 146 </div>
147 </p> 147 </p>
148 </div> 148 </div>
149 <div id=spdyTabContent> 149 <div id=spdyTabContent>
150 <h4>SPDY Status</h4>
151 <ul>
152 <li>SPDY Enabled: <span id=spdyEnabledSpan>????</span></li>
153 <li>Use Atlernate Protocol: <span id=spdyUseAlternateProtocolSpan>????</ span></li>
eroman 2011/02/09 04:51:13 typo: alternate
Ryan Hamilton 2011/02/09 17:42:32 Done.
154 <li>Force SPDY Always: <span id=spdyForceAlwaysSpan>????</span></li>
155 <li>Force SPDY Over SSL: <span id=spdyForceOverSslSpan>????</span></li>
156 <li>Next Protocols: <span id=spdyNextProtocolsSpan>????</span></li>
157 </ul>
158
150 <h4>SPDY sessions</h4> 159 <h4>SPDY sessions</h4>
151 <!-- Only one of these two are shown --> 160 <!-- Only one of these two are shown -->
152 <span id=spdySessionNoneSpan>None</span> 161 <span id=spdySessionNoneSpan>None</span>
153 <span id=spdySessionLinkSpan style="display: none;"> 162 <span id=spdySessionLinkSpan style="display: none;">
154 <a href='#events&q=type:SPDY_SESSION%20is:active'>View live SPDY sessi ons</a> 163 <a href='#events&q=type:SPDY_SESSION%20is:active'>View live SPDY sessi ons</a>
155 </span> 164 </span>
156 <p> 165 <p>
157 <div id=spdySessionDiv> 166 <div id=spdySessionDiv>
158 </div> 167 </div>
159 </p> 168 </p>
169
170 <h4>Alternate Protocol Mappings</h4>
171 <p>
eroman 2011/02/09 04:51:13 nit: can you close this? as in, <p></p> or <p/>
Ryan Hamilton 2011/02/09 17:42:32 Done.
172 <div id=spdyAlternateProtocolMappingsDiv>
173 </div>
160 </div> 174 </div>
161 <div id=httpCacheTabContent> 175 <div id=httpCacheTabContent>
162 <h4>Entries</h4> 176 <h4>Entries</h4>
163 <a href="chrome://view-http-cache" target=_blank>Explore cache entries</a> 177 <a href="chrome://view-http-cache" target=_blank>Explore cache entries</a>
164 178
165 <h4>Statistics</h4> 179 <h4>Statistics</h4>
166 <div id=httpCacheStats>Nothing loaded yet.</div> 180 <div id=httpCacheStats>Nothing loaded yet.</div>
167 </div> 181 </div>
168 <!-- Only shown on Windows --> 182 <!-- Only shown on Windows -->
169 <div id=serviceProvidersTabContent style="display: none;"> 183 <div id=serviceProvidersTabContent style="display: none;">
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 <td class=tabSwitcherSpacer>&nbsp;</td> 391 <td class=tabSwitcherSpacer>&nbsp;</td>
378 <th id=detailsTimelineTab>Timeline</th> 392 <th id=detailsTimelineTab>Timeline</th>
379 </tr> 393 </tr>
380 </table> 394 </table>
381 <div class=tabSwitcherLine></div> 395 <div class=tabSwitcherLine></div>
382 </div> 396 </div>
383 <div id=detailsLogBox></div> 397 <div id=detailsLogBox></div>
384 <div id=detailsTimelineBox></div> 398 <div id=detailsTimelineBox></div>
385 </body> 399 </body>
386 </html> 400 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698