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

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

Issue 6793026: Initial support for HSTS certificate locking. This isn't a finished work, but (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 8 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) 2011 The Chromium Authors. All rights reserved. 4 Copyright (c) 2011 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 380
381 <!-- This UI allows a user to query and update the browser's list of 381 <!-- This UI allows a user to query and update the browser's list of
382 HSTS domains. --> 382 HSTS domains. -->
383 383
384 <h4>Add domain</h4> 384 <h4>Add domain</h4>
385 385
386 <p>Input a domain name to add it to the HSTS set:</p> 386 <p>Input a domain name to add it to the HSTS set:</p>
387 <form id=hstsAddForm> 387 <form id=hstsAddForm>
388 Domain: <input type=text id=hstsAddInput type="url" 388 Domain: <input type=text id=hstsAddInput type="url"
389 placeholder="example.com"/><br/> 389 placeholder="example.com"/><br/>
390 Include subdomains: <input type="checkbox" id=hstsCheckInput /> 390 Include subdomains: <input type="checkbox" id=hstsCheckInput />
agl 2011/04/04 23:46:42 Add a <br/> at the end of this line?
391 Certificate fingerprint locks: <input type=text id=hstsAddLocks />
391 <input type=submit value="Add" /> 392 <input type=submit value="Add" />
392 </form> 393 </form>
393 394
394 <h4>Delete domain</h4> 395 <h4>Delete domain</h4>
395 396
396 <p> 397 <p>
397 Input a domain name to delete it from the HSTS set 398 Input a domain name to delete it from the HSTS set
398 (<i>you cannot delete preloaded entries</i>): 399 (<i>you cannot delete preloaded entries</i>):
399 </p> 400 </p>
400 <form id=hstsDeleteForm> 401 <form id=hstsDeleteForm>
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 <td class=tabSwitcherSpacer>&nbsp;</td> 457 <td class=tabSwitcherSpacer>&nbsp;</td>
457 <th id=detailsTimelineTab>Timeline</th> 458 <th id=detailsTimelineTab>Timeline</th>
458 </tr> 459 </tr>
459 </table> 460 </table>
460 <div class=tabSwitcherLine></div> 461 <div class=tabSwitcherLine></div>
461 </div> 462 </div>
462 <div id=detailsLogBox></div> 463 <div id=detailsLogBox></div>
463 <div id=detailsTimelineBox></div> 464 <div id=detailsTimelineBox></div>
464 </body> 465 </body>
465 </html> 466 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698