summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/net_internals/dns_view.html
blob: 36a7fab6e13b6713ac8f6ca564069d666d16b67a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!-- Host resolver info -->
<div id=dns-view-tab-content>
  <h4>Host resolver</h4>
  <ul>
    <li><a href='#events&q=type:HOST_RESOLVER_IMPL_REQUEST%20type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pending lookups</a></li>
    <li>Default address family: <span id=dns-view-default-family></span>
      <span id=dns-view-ipv6-disabled class=warningText style="display: none;">
        (IPv6 disabled)
        <input type=button value="Enable IPv6" id=dns-view-enable-ipv6 class="hideOnLoadLog" />
      </span>
    </li>
  </ul>

  <h4>
    Host resolver cache
    <input type=button value="Clear host cache" id=dns-view-clear-cache class="hideOnLoadLog" />
  </h4>
  <ul>
    <li>Capacity: <span id=dns-view-cache-capacity></span></li>
  </ul>
  <h4>
    Current State
  </h4>
  <ul>
    <li>Active entries: <span id=dns-view-cache-active></span></li>
    <li>Expired entries: <span id=dns-view-cache-expired></span></li>
  </ul>

  <table class="styledTable">
    <thead>
      <tr>
        <th>Hostname</th>
        <th>Family</th>
        <th>Addresses</th>
        <th>Expires</th>
      </tr>
    </thead>
    <tbody id=dns-view-cache-tbody>
    </tbody>
  </table>
</div>