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

Side by Side Diff: chrome/browser/resources/net_internals/dns_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!-- Host resolver info --> 1 <!-- Host resolver info -->
2 <div id=dns-view-tab-content class=content-box> 2 <div id=dns-view-tab-content class=content-box>
3 <h4>Host resolver</h4> 3 <h4>Host resolver</h4>
4 <ul> 4 <ul>
5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_REQUEST%20type:HOST_RESOLVER_ IMPL_JOB%20is:active'>View pending lookups</a></li> 5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_REQUEST%20type:HOST_RESOLVER_ IMPL_JOB%20is:active'>View pending lookups</a></li>
6 <li>Default address family: <span id=dns-view-default-family></span> 6 <li>Default address family: <span id=dns-view-default-family></span>
7 <span id=dns-view-ipv6-disabled class=warning-text style="display: none;"> 7 <span id=dns-view-ipv6-disabled class=warning-text style="display: none;">
8 (IPv6 disabled) 8 (IPv6 disabled)
9 <input type=button value="Enable IPv6" id=dns-view-enable-ipv6 class="hi de-when-not-capturing" /> 9 <input type=button value="Enable IPv6" id=dns-view-enable-ipv6 class="hi de-when-not-capturing">
10 </span> 10 </span>
11 </li> 11 </li>
12 <li> 12 <li>
13 <span id=dns-view-ipv6-probe-complete style="display: none;">IPv6 probe co mplete</span> 13 <span id=dns-view-ipv6-probe-complete style="display: none;">IPv6 probe co mplete</span>
14 <span id=dns-view-ipv6-probe-running class=warning-text style="display: no ne;">IPv6 probe running</span> 14 <span id=dns-view-ipv6-probe-running class=warning-text style="display: no ne;">IPv6 probe running</span>
15 <input type=button value="Run IPv6 Probe" id=dns-view-run-ipv6-probe class ="hide-when-not-capturing" /> 15 <input type=button value="Run IPv6 Probe" id=dns-view-run-ipv6-probe class ="hide-when-not-capturing">
16 </li> 16 </li>
17 <li><a href="#events&q=type:IPV6_PROBE_JOB">View all IPv6 probe events</a></ li> 17 <li><a href="#events&q=type:IPV6_PROBE_JOB">View all IPv6 probe events</a></ li>
18 </ul> 18 </ul>
19 19
20 <div> 20 <div>
21 <h4>Async DNS Configuration</h4> 21 <h4>Async DNS Configuration</h4>
22 <ul> 22 <ul>
23 <li>Internal DNS client enabled: 23 <li>Internal DNS client enabled:
24 <span id=dns-view-internal-dns-enabled></span> 24 <span id=dns-view-internal-dns-enabled></span>
25 <span id=dns-view-internal-dns-invalid-config class=warning-text style=" display: none;"> 25 <span id=dns-view-internal-dns-invalid-config class=warning-text style=" display: none;">
26 (No valid configuration found)</span> 26 (No valid configuration found)</span>
27 </li> 27 </li>
28 </ul> 28 </ul>
29 <table class="styled-table"> 29 <table class="styled-table">
30 <tbody id=dns-view-internal-dns-config-tbody></tbody> 30 <tbody id=dns-view-internal-dns-config-tbody></tbody>
31 </table> 31 </table>
32 </div> 32 </div>
33 33
34 <h4> 34 <h4>
35 Host resolver cache 35 Host resolver cache
36 <input type=button value="Clear host cache" id=dns-view-clear-cache class="h ide-when-not-capturing" /> 36 <input type=button value="Clear host cache" id=dns-view-clear-cache class="h ide-when-not-capturing">
37 </h4> 37 </h4>
38 <ul> 38 <ul>
39 <li>Capacity: <span id=dns-view-cache-capacity></span></li> 39 <li>Capacity: <span id=dns-view-cache-capacity></span></li>
40 </ul> 40 </ul>
41 <h4>Current State</h4> 41 <h4>Current State</h4>
42 <ul> 42 <ul>
43 <li>Active entries: <span id=dns-view-cache-active></span></li> 43 <li>Active entries: <span id=dns-view-cache-active></span></li>
44 <li>Expired entries: <span id=dns-view-cache-expired></span></li> 44 <li>Expired entries: <span id=dns-view-cache-expired></span></li>
45 </ul> 45 </ul>
46 46
47 <table class="styled-table"> 47 <table class="styled-table">
48 <thead> 48 <thead>
49 <tr> 49 <tr>
50 <th>Hostname</th> 50 <th>Hostname</th>
51 <th>Family</th> 51 <th>Family</th>
52 <th>Addresses</th> 52 <th>Addresses</th>
53 <th>Expires</th> 53 <th>Expires</th>
54 </tr> 54 </tr>
55 </thead> 55 </thead>
56 <tbody id=dns-view-cache-tbody> 56 <tbody id=dns-view-cache-tbody>
57 </tbody> 57 </tbody>
58 </table> 58 </table>
59 </div> 59 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698