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

Unified Diff: chrome/browser/resources/net_internals/hsts_view.html

Issue 10828382: Cleanup: Don't close single tags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review fixes. Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/net_internals/hsts_view.html
diff --git a/chrome/browser/resources/net_internals/hsts_view.html b/chrome/browser/resources/net_internals/hsts_view.html
index 3d2ae55d1dd4e5ef2dc1b4071ad2e7f8a1acc739..1717773b031e08e2ed180cf026d88fd443c826da 100644
--- a/chrome/browser/resources/net_internals/hsts_view.html
+++ b/chrome/browser/resources/net_internals/hsts_view.html
@@ -13,11 +13,11 @@
<p>Input a domain name to add it to the HSTS set:</p>
<form id=hsts-view-add-form>
Domain: <input type=text id=hsts-view-add-input type="url"
- placeholder="example.com"/><br/>
- Include subdomains: <input type="checkbox" id=hsts-view-check-input /><br/>
- Public key fingerprints: <input type=text id=hsts-view-add-pins style="width: 25em;"/><br/>
+ placeholder="example.com"><br>
+ Include subdomains: <input type="checkbox" id=hsts-view-check-input><br>
+ Public key fingerprints: <input type=text id=hsts-view-add-pins style="width: 25em;"><br>
<p style="font-size: small; color: gray; font-style: italic; margin-left: 2em; max-width: 40em;">(public key fingerprints are comma separated and consist of the hash function followed by a foreslash and the base64 encoded fingerprint, for example <tt>sha1/Guzek9lMwR3KeIS8wwS9gBvVtIg=</tt>)</p>
- <input type=submit value="Add" id=hsts-view-add-submit />
+ <input type=submit value="Add" id=hsts-view-add-submit>
</form>
<h4>Delete domain</h4>
@@ -28,8 +28,8 @@
</p>
<form id=hsts-view-delete-form>
Domain: <input type=text id=hsts-view-delete-input type="url"
- placeholder="example.com"/>
- <input type=submit value="Delete" id=hsts-view-delete-submit />
+ placeholder="example.com">
+ <input type=submit value="Delete" id=hsts-view-delete-submit>
</form>
<h4>Query domain</h4>
@@ -37,8 +37,8 @@
<p>Input a domain name to query the current HSTS set:</p>
<form id=hsts-view-query-form>
Domain: <input type=text id=hsts-view-query-input type="url"
- placeholder="example.com"/>
- <input type=submit value="Query" id=hsts-view-query-submit />
+ placeholder="example.com">
+ <input type=submit value="Query" id=hsts-view-query-submit>
</form>
<div style="margin-top: 1em; margin-left: 2em;" id=hsts-view-query-output></div>
</div>

Powered by Google App Engine
This is Rietveld 408576698