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

Side by Side Diff: chrome/browser/resources/net_internals/dns_view.html

Issue 9580034: [polish] Make link targets on about:net-internals open in new window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/hsts_view.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 deOnLoadLog" /> 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 </ul> 12 </ul>
13 13
14 <h4> 14 <h4>
15 Host resolver cache 15 Host resolver cache
16 <input type=button value="Clear host cache" id=dns-view-clear-cache class="h ideOnLoadLog" /> 16 <input type=button value="Clear host cache" id=dns-view-clear-cache class="h ide-when-not-capturing" />
17 </h4> 17 </h4>
18 <ul> 18 <ul>
19 <li>Capacity: <span id=dns-view-cache-capacity></span></li> 19 <li>Capacity: <span id=dns-view-cache-capacity></span></li>
20 </ul> 20 </ul>
21 <h4> 21 <h4>
22 Current State 22 Current State
23 </h4> 23 </h4>
24 <ul> 24 <ul>
25 <li>Active entries: <span id=dns-view-cache-active></span></li> 25 <li>Active entries: <span id=dns-view-cache-active></span></li>
26 <li>Expired entries: <span id=dns-view-cache-expired></span></li> 26 <li>Expired entries: <span id=dns-view-cache-expired></span></li>
27 </ul> 27 </ul>
28 28
29 <table class="styled-table"> 29 <table class="styled-table">
30 <thead> 30 <thead>
31 <tr> 31 <tr>
32 <th>Hostname</th> 32 <th>Hostname</th>
33 <th>Family</th> 33 <th>Family</th>
34 <th>Addresses</th> 34 <th>Addresses</th>
35 <th>Expires</th> 35 <th>Expires</th>
36 </tr> 36 </tr>
37 </thead> 37 </thead>
38 <tbody id=dns-view-cache-tbody> 38 <tbody id=dns-view-cache-tbody>
39 </tbody> 39 </tbody>
40 </table> 40 </table>
41 </div> 41 </div>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/net_internals/hsts_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698