| OLD | NEW |
| 1 <dom-module id="dns-view"> | 1 <dom-module id="dns-view"> |
| 2 <template> | 2 <template> |
| 3 <div id=dns-view-tab-content class=content-box> | 3 <div id=dns-view-tab-content class=content-box> |
| 4 <ul style='margin-top: 0'> | 4 <ul style='margin-top: 0'> |
| 5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pen
ding lookups</a></li> | 5 <li><a href='#events&q=type:HOST_RESOLVER_IMPL_JOB%20is:active'>View pen
ding lookups</a></li> |
| 6 </ul> | 6 </ul> |
| 7 | 7 |
| 8 <div> | 8 <div> |
| 9 <h4>Async DNS Configuration</h4> | 9 <h4>Async DNS Configuration</h4> |
| 10 <ul> | 10 <ul> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 <h4> | 22 <h4> |
| 23 Host resolver cache | 23 Host resolver cache |
| 24 </h4> | 24 </h4> |
| 25 <ul> | 25 <ul> |
| 26 <li>Capacity: <span id=dns-view-cache-capacity></span></li> | 26 <li>Capacity: <span id=dns-view-cache-capacity></span></li> |
| 27 </ul> | 27 </ul> |
| 28 <h4>Current State</h4> | 28 <h4>Current State</h4> |
| 29 <ul> | 29 <ul> |
| 30 <li>Active entries: <span id=dns-view-cache-active></span></li> | 30 <li>Active entries: <span id=dns-view-cache-active></span></li> |
| 31 <li>Expired entries: <span id=dns-view-cache-expired></span></li> | 31 <li>Expired entries: <span id=dns-view-cache-expired></span></li> |
| 32 <li>Network changes: <span id=dns-view-network-changes></span></li> |
| 32 </ul> | 33 </ul> |
| 33 | 34 |
| 34 <table class="styled-table"> | 35 <table class="styled-table"> |
| 35 <thead> | 36 <thead> |
| 36 <tr> | 37 <tr> |
| 37 <th>Hostname</th> | 38 <th>Hostname</th> |
| 38 <th>Family</th> | 39 <th>Family</th> |
| 39 <th>Addresses</th> | 40 <th>Addresses</th> |
| 41 <th>TTL</th> |
| 40 <th>Expires</th> | 42 <th>Expires</th> |
| 43 <th>Network changes</th> |
| 41 </tr> | 44 </tr> |
| 42 </thead> | 45 </thead> |
| 43 <tbody id=dns-view-cache-tbody> | 46 <tbody id=dns-view-cache-tbody> |
| 44 </tbody> | 47 </tbody> |
| 45 </table> | 48 </table> |
| 46 </div> | 49 </div> |
| 47 </template> | 50 </template> |
| 48 <script> | 51 <script> |
| 49 Polymer({ | 52 Polymer({ |
| 50 is: 'dns-view', | 53 is: 'dns-view', |
| 51 }); | 54 }); |
| 52 </script> | 55 </script> |
| 53 </dom-module> | 56 </dom-module> |
| OLD | NEW |