| OLD | NEW |
| 1 <style> | 1 <style> |
| 2 #hsts-view-tab-content tt { | 2 #hsts-view-tab-content tt { |
| 3 word-wrap: break-word; | 3 word-wrap: break-word; |
| 4 } | 4 } |
| 5 </style> | 5 </style> |
| 6 | 6 |
| 7 <!-- HSTS tab --> | 7 <!-- HSTS tab --> |
| 8 <div id=hsts-view-tab-content class=content-box> | 8 <div id=hsts-view-tab-content class=content-box> |
| 9 <div class=deindent-header> | 9 <div class=deindent-header> |
| 10 HSTS is HTTPS Strict Transport Security: a way for sites to elect to | 10 HSTS is HTTPS Strict Transport Security: a way for sites to elect to |
| 11 always use HTTPS. See <a href="http://dev.chromium.org/sts" target=_blank> | 11 always use HTTPS. See <a href="http://dev.chromium.org/sts" target=_blank> |
| 12 http://dev.chromium.org/sts</a>.</div> | 12 http://dev.chromium.org/sts</a>.</div> |
| 13 | 13 |
| 14 <!-- This UI allows a user to query and update the browser's list of | 14 <!-- This UI allows a user to query and update the browser's list of |
| 15 HSTS domains. --> | 15 HSTS domains. --> |
| 16 | 16 |
| 17 <h4>Add domain</h4> | 17 <h4>Add domain</h4> |
| 18 | 18 |
| 19 <p>Input a domain name to add it to the HSTS set:</p> | 19 <p>Input a domain name to add it to the HSTS set:</p> |
| 20 <form id=hsts-view-add-form> | 20 <form id=hsts-view-add-form> |
| 21 Domain: <input type=text id=hsts-view-add-input type="url" | 21 Domain: <input type=text id=hsts-view-add-input type="url" |
| 22 placeholder="example.com"><br> | 22 placeholder="example.com"><br> |
| 23 <label>Include subdomains for STS: <input type="checkbox" id=hsts-view-check
-sts-input></label><br> | 23 <label>Include subdomains for STS: <input type="checkbox" id=hsts-view-check
-sts-input></label><br> |
| 24 <label>Include subdomains for PKP: <input type="checkbox" id=hsts-view-check
-pkp-input></label><br> | 24 <label>Include subdomains for PKP: <input type="checkbox" id=hsts-view-check
-pkp-input></label><br> |
| 25 Public key fingerprints: <input type=text id=hsts-view-add-pins style="width
: 25em; max-width: 100%;"><br> | 25 <label>Public key fingerprints: <input type=text id=hsts-view-add-pins style
="width: 25em; max-width: 100%;"></label><br> |
| 26 <p style="font-size: small; color: gray; font-style: italic; margin-left: 2e
m; max-width: 40em; max-width: 100%;">(public key fingerprints are comma separat
ed and consist of the hash function followed by a foreslash and the base64 encod
ed fingerprint, for example <tt>sha1/Guzek9lMwR3KeIS8wwS9gBvVtIg=</tt>)</p> | 26 <p style="font-size: small; color: #767676; font-style: italic; margin-left:
2em; max-width: 40em; max-width: 100%;">(public key fingerprints are comma sepa
rated and consist of the hash function followed by a foreslash and the base64 en
coded fingerprint, for example <tt>sha1/Guzek9lMwR3KeIS8wwS9gBvVtIg=</tt>)</p> |
| 27 <input type=submit value="Add" id=hsts-view-add-submit> | 27 <input type=submit value="Add" id=hsts-view-add-submit> |
| 28 </form> | 28 </form> |
| 29 | 29 |
| 30 <h4>Delete domain</h4> | 30 <h4>Delete domain</h4> |
| 31 | 31 |
| 32 <p> | 32 <p> |
| 33 Input a domain name to delete it from the HSTS set | 33 Input a domain name to delete it from the HSTS set |
| 34 (<i>you cannot delete preloaded entries</i>): | 34 (<i>you cannot delete preloaded entries</i>): |
| 35 </p> | 35 </p> |
| 36 <form id=hsts-view-delete-form> | 36 <form id=hsts-view-delete-form> |
| 37 Domain: <input type=text id=hsts-view-delete-input type="url" | 37 Domain: <input type=text id=hsts-view-delete-input type="url" |
| 38 placeholder="example.com"> | 38 placeholder="example.com"> |
| 39 <input type=submit value="Delete" id=hsts-view-delete-submit> | 39 <input type=submit value="Delete" id=hsts-view-delete-submit> |
| 40 </form> | 40 </form> |
| 41 | 41 |
| 42 <h4>Query domain</h4> | 42 <h4>Query domain</h4> |
| 43 | 43 |
| 44 <p>Input a domain name to query the current HSTS set:</p> | 44 <p>Input a domain name to query the current HSTS set:</p> |
| 45 <form id=hsts-view-query-form> | 45 <form id=hsts-view-query-form> |
| 46 Domain: <input type=text id=hsts-view-query-input type="url" | 46 Domain: <input type=text id=hsts-view-query-input type="url" |
| 47 placeholder="example.com"> | 47 placeholder="example.com"> |
| 48 <input type=submit value="Query" id=hsts-view-query-submit> | 48 <input type=submit value="Query" id=hsts-view-query-submit> |
| 49 </form> | 49 </form> |
| 50 <div style="margin-top: 1em; margin-left: 2em;" id=hsts-view-query-output></di
v> | 50 <div style="margin-top: 1em; margin-left: 2em;" id=hsts-view-query-output></di
v> |
| 51 </div> | 51 </div> |
| OLD | NEW |