Chromium Code Reviews| Index: chrome/browser/resources/net_internals/index.html |
| diff --git a/chrome/browser/resources/net_internals/index.html b/chrome/browser/resources/net_internals/index.html |
| index f3beb00b83210a4f5caccbd064531d836d1d8dd3..30b1ef505817ffd907f6c56fb50982d8bf706a75 100644 |
| --- a/chrome/browser/resources/net_internals/index.html |
| +++ b/chrome/browser/resources/net_internals/index.html |
| @@ -14,6 +14,7 @@ found in the LICENSE file. |
| <script src="dataview.js"></script> |
| <script src="httpcacheview.js"></script> |
| <script src="testview.js"></script> |
| + <script src="hstsview.js"></script> |
| <script src="main.js"></script> |
| <script src="dnsview.js"></script> |
| <script src="eventsview.js"></script> |
| @@ -44,6 +45,7 @@ found in the LICENSE file. |
| <!-- Tab is only shown on Windows --> |
| <li><a href="#serviceProviders" id=serviceProvidersTab style="display: none;">SPIs</a></li> |
| <li><a href="#tests" id=testTab>Tests</a></li> |
| + <li><a href="#hsts" id=hstsTab>HSTS</a></li> |
| </ul> |
| <div style="clear: both;"></div> |
| </div> |
| @@ -349,6 +351,47 @@ function displayHelpForBugDump() { |
| <div id=testSummary></div> |
| </div> |
| + <!-- HSTS tab --> |
| + <div id=hstsTabContent> |
| + <!-- HSTS is HTTPS Strict Transport Security: a way for sites to elect to |
|
eroman
2011/02/17 00:48:28
Could you add this as part of the HTML rather than
agl
2011/02/17 17:21:30
Done.
|
| + always use HTTPS. See http://dev.chromium.org/sts |
| + |
| + This UI allows a user to query and update the browser's list of HSTS |
| + domains. --> |
| + |
| + <h4>Add domain</h4> |
| + |
| + <p>Input a domain name to add it to the HSTS set:</p> |
| + <form id=hstsAddForm> |
| + Domain: <input type=text id=hstsAddInput type="url" |
| + placeholder="example.com"/><br/> |
| + Include subdomains: <input type="checkbox" id=hstsCheckInput /> |
| + <input type=submit value="Add" /> |
| + </form> |
| + |
| + <h4>Delete domain</h4> |
| + |
| + <p> |
| + Input a domain name to delete it from the HSTS set |
| + (<i>you cannot delete preloaded entries</i>): |
| + </p> |
| + <form id=hstsDeleteForm> |
| + Domain: <input type=text id=hstsDeleteInput type="url" |
| + placeholder="example.com"/> |
| + <input type=submit value="Delete" /> |
| + </form> |
| + |
| + <h4>Query domain</h4> |
| + |
| + <p>Input a domain name to query the current HSTS set:</p> |
| + <form id=hstsQueryForm> |
| + Domain: <input type=text id=hstsQueryInput type="url" |
| + placeholder="example.com"/> |
| + <input type=submit value="Query" /> |
| + </form> |
| + <div style="margin-top: 1em; margin-left: 2em;" id=hstsQueryOutput></div> |
| + </div> |
| + |
| <!-- ================= Events view =================== --> |
| <!-- Filter Box: This the top bar which contains the search box. --> |