Chromium Code Reviews| OLD | NEW |
|---|---|
| 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"> |
| 11 <script src="util.js"></script> | 11 <script src="util.js"></script> |
| 12 <script src="view.js"></script> | 12 <script src="view.js"></script> |
| 13 <script src="tabswitcherview.js"></script> | 13 <script src="tabswitcherview.js"></script> |
| 14 <script src="dataview.js"></script> | 14 <script src="dataview.js"></script> |
| 15 <script src="httpcacheview.js"></script> | 15 <script src="httpcacheview.js"></script> |
| 16 <script src="testview.js"></script> | 16 <script src="testview.js"></script> |
| 17 <script src="hstsview.js"></script> | |
| 17 <script src="main.js"></script> | 18 <script src="main.js"></script> |
| 18 <script src="dnsview.js"></script> | 19 <script src="dnsview.js"></script> |
| 19 <script src="eventsview.js"></script> | 20 <script src="eventsview.js"></script> |
| 20 <script src="detailsview.js"></script> | 21 <script src="detailsview.js"></script> |
| 21 <script src="sourceentry.js"></script> | 22 <script src="sourceentry.js"></script> |
| 22 <script src="resizableverticalsplitview.js"></script> | 23 <script src="resizableverticalsplitview.js"></script> |
| 23 <script src="topmidbottomview.js"></script> | 24 <script src="topmidbottomview.js"></script> |
| 24 <script src="timelineviewpainter.js"></script> | 25 <script src="timelineviewpainter.js"></script> |
| 25 <script src="logviewpainter.js"></script> | 26 <script src="logviewpainter.js"></script> |
| 26 <script src="loggrouper.js"></script> | 27 <script src="loggrouper.js"></script> |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 37 <li><a href="#data" id=dataTab>Data</a></li> | 38 <li><a href="#data" id=dataTab>Data</a></li> |
| 38 <li><a href="#proxy" id=proxyTab>Proxy</a></li> | 39 <li><a href="#proxy" id=proxyTab>Proxy</a></li> |
| 39 <li><a href="#events" id=eventsTab>Events</a></li> | 40 <li><a href="#events" id=eventsTab>Events</a></li> |
| 40 <li><a href="#dns" id=dnsTab>DNS</a></li> | 41 <li><a href="#dns" id=dnsTab>DNS</a></li> |
| 41 <li><a href="#sockets" id=socketsTab>Sockets</a></li> | 42 <li><a href="#sockets" id=socketsTab>Sockets</a></li> |
| 42 <li><a href="#spdy" id=spdyTab>SPDY</a></li> | 43 <li><a href="#spdy" id=spdyTab>SPDY</a></li> |
| 43 <li><a href="#httpCache" id=httpCacheTab>HTTP Cache</a></li> | 44 <li><a href="#httpCache" id=httpCacheTab>HTTP Cache</a></li> |
| 44 <!-- Tab is only shown on Windows --> | 45 <!-- Tab is only shown on Windows --> |
| 45 <li><a href="#serviceProviders" id=serviceProvidersTab style="display: n one;">SPIs</a></li> | 46 <li><a href="#serviceProviders" id=serviceProvidersTab style="display: n one;">SPIs</a></li> |
| 46 <li><a href="#tests" id=testTab>Tests</a></li> | 47 <li><a href="#tests" id=testTab>Tests</a></li> |
| 48 <li><a href="#hsts" id=hstsTab>HSTS</a></li> | |
| 47 </ul> | 49 </ul> |
| 48 <div style="clear: both;"></div> | 50 <div style="clear: both;"></div> |
| 49 </div> | 51 </div> |
| 50 <!-- Proxy info --> | 52 <!-- Proxy info --> |
| 51 <div id=proxyTabContent> | 53 <div id=proxyTabContent> |
| 52 <h4> | 54 <h4> |
| 53 Current proxy settings | 55 Current proxy settings |
| 54 <input type=button value="Re-apply settings" id=proxyReloadSettings /> | 56 <input type=button value="Re-apply settings" id=proxyReloadSettings /> |
| 55 </h4> | 57 </h4> |
| 56 | 58 |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 342 <div id=testTabContent> | 344 <div id=testTabContent> |
| 343 <p>Input a URL which failed to load, and then click the button to run some | 345 <p>Input a URL which failed to load, and then click the button to run some |
| 344 tests for why it failed.</p> | 346 tests for why it failed.</p> |
| 345 <form id=connectionTestsForm> | 347 <form id=connectionTestsForm> |
| 346 URL: <input type=text id=testUrlInput /> | 348 URL: <input type=text id=testUrlInput /> |
| 347 <input type=submit value="Start tests" /> | 349 <input type=submit value="Start tests" /> |
| 348 </form> | 350 </form> |
| 349 <div id=testSummary></div> | 351 <div id=testSummary></div> |
| 350 </div> | 352 </div> |
| 351 | 353 |
| 354 <!-- HSTS tab --> | |
| 355 <div id=hstsTabContent> | |
| 356 <h4>Add domain</h4> | |
|
eroman
2011/02/16 20:12:45
Please add some text to this tab which explains wh
agl
2011/02/16 22:46:22
Done.
| |
| 357 | |
| 358 <p>Input a domain name to add it to the HSTS set:</p> | |
|
eroman
2011/02/16 20:12:45
are these changes going to persist beyond the sess
agl
2011/02/16 22:46:22
Yes.
eroman
2011/02/17 00:48:28
I wander if there is a way to show all the overrid
agl
2011/02/17 17:21:30
I'm not too worried. Also the domains are stored a
| |
| 359 <form id=hstsAddForm> | |
| 360 Domain: <input type=text id=hstsAddInput type="url" | |
| 361 placeholder="example.com"/><br/> | |
|
eroman
2011/02/16 20:12:45
what is placeholder for?
agl
2011/02/16 22:46:22
It causes the entry to have a text 'example' text
| |
| 362 Include subdomains: <input type="checkbox" id=hstsCheckInput /> | |
| 363 <input type=submit value="Add" /> | |
| 364 </form> | |
| 365 | |
| 366 <h4>Delete domain</h4> | |
| 367 | |
| 368 <p> | |
| 369 Input a domain name to delete it from the HSTS set | |
| 370 (<i>you cannot delete preloaded entries</i>): | |
| 371 </p> | |
| 372 <form id=hstsDeleteForm> | |
| 373 Domain: <input type=text id=hstsDeleteInput type="url" | |
| 374 placeholder="example.com"/> | |
| 375 <input type=submit value="Delete" /> | |
| 376 </form> | |
| 377 | |
| 378 <h4>Query domain</h4> | |
| 379 | |
| 380 <p>Input a domain name to query the current HSTS set:</p> | |
| 381 <form id=hstsQueryForm> | |
| 382 Domain: <input type=text id=hstsQueryInput type="url" | |
| 383 placeholder="example.com"/> | |
|
eroman
2011/02/16 20:12:45
what is placeholder?
agl
2011/02/16 22:46:22
ditto
| |
| 384 <input type=submit value="Query" /> | |
| 385 </form> | |
| 386 <div style="margin-top: 1em; margin-left: 2em;" id=hstsQueryOutput></div> | |
| 387 </div> | |
| 388 | |
| 352 <!-- ================= Events view =================== --> | 389 <!-- ================= Events view =================== --> |
| 353 | 390 |
| 354 <!-- Filter Box: This the top bar which contains the search box. --> | 391 <!-- Filter Box: This the top bar which contains the search box. --> |
| 355 <div id=filterBox> | 392 <div id=filterBox> |
| 356 <table width=100%> | 393 <table width=100%> |
| 357 <tr> | 394 <tr> |
| 358 <td width=1%>Filter:</td> | 395 <td width=1%>Filter:</td> |
| 359 <td width=98%><input type="search" incremental id=filterInput /></td> | 396 <td width=98%><input type="search" incremental id=filterInput /></td> |
| 360 <td width=1% id=filterCount>(1 of 34)</td> | 397 <td width=1% id=filterCount>(1 of 34)</td> |
| 361 </tr> | 398 </tr> |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 391 <td class=tabSwitcherSpacer> </td> | 428 <td class=tabSwitcherSpacer> </td> |
| 392 <th id=detailsTimelineTab>Timeline</th> | 429 <th id=detailsTimelineTab>Timeline</th> |
| 393 </tr> | 430 </tr> |
| 394 </table> | 431 </table> |
| 395 <div class=tabSwitcherLine></div> | 432 <div class=tabSwitcherLine></div> |
| 396 </div> | 433 </div> |
| 397 <div id=detailsLogBox></div> | 434 <div id=detailsLogBox></div> |
| 398 <div id=detailsTimelineBox></div> | 435 <div id=detailsTimelineBox></div> |
| 399 </body> | 436 </body> |
| 400 </html> | 437 </html> |
| OLD | NEW |