Add new certificateProvider extension API.
[chromium-blink-merge.git] / chrome / browser / resources / net_internals / dns_view.html
blob0786cad0a26b8f2393194dcc931d53aa64fb8a6f
1 <!-- Host resolver info -->
2 <div id=dns-view-tab-content class=content-box>
3 <ul style='margin-top: 0'>
4 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li>
5 </ul>
7 <div>
8 <h4>Async DNS Configuration</h4>
9 <ul>
10 <li>Internal DNS client enabled:
11 <span id=dns-view-internal-dns-enabled></span>
12 <span id=dns-view-internal-dns-invalid-config class=warning-text style="display: none;">
13 (No valid configuration found)</span>
14 </li>
15 </ul>
16 <table class="styled-table">
17 <tbody id=dns-view-internal-dns-config-tbody></tbody>
18 </table>
19 </div>
21 <h4>
22 Host resolver cache
23 <input type=button value="Clear host cache" id=dns-view-clear-cache class="hide-when-not-capturing">
24 </h4>
25 <ul>
26 <li>Capacity: <span id=dns-view-cache-capacity></span></li>
27 </ul>
28 <h4>Current State</h4>
29 <ul>
30 <li>Active entries: <span id=dns-view-cache-active></span></li>
31 <li>Expired entries: <span id=dns-view-cache-expired></span></li>
32 </ul>
34 <table class="styled-table">
35 <thead>
36 <tr>
37 <th>Hostname</th>
38 <th>Family</th>
39 <th>Addresses</th>
40 <th>Expires</th>
41 </tr>
42 </thead>
43 <tbody id=dns-view-cache-tbody>
44 </tbody>
45 </table>
46 </div>