| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <head> | 7 <head> |
| 8 <link tyle="text/css" rel="stylesheet" href="main.css" /> | 8 <link tyle="text/css" rel="stylesheet" href="main.css" /> |
| 9 <script src="util.js"></script> | 9 <script src="util.js"></script> |
| 10 <script src="view.js"></script> | 10 <script src="view.js"></script> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 <ul> | 64 <ul> |
| 65 <li>Capacity: <span id=hostResolverCacheCapacity></span></li> | 65 <li>Capacity: <span id=hostResolverCacheCapacity></span></li> |
| 66 <li>Time to live (ms) for success entries: | 66 <li>Time to live (ms) for success entries: |
| 67 <span id=hostResolverCacheTTLSuccess></span></li> | 67 <span id=hostResolverCacheTTLSuccess></span></li> |
| 68 <li>Time to live (ms) for failure entries: | 68 <li>Time to live (ms) for failure entries: |
| 69 <span id=hostResolverCacheTTLFailure></span></li> | 69 <span id=hostResolverCacheTTLFailure></span></li> |
| 70 </ul> | 70 </ul> |
| 71 | 71 |
| 72 <table border=1> | 72 <table border=1> |
| 73 <thead> | 73 <thead> |
| 74 <th>Hostname</th> | 74 <tr> |
| 75 <th>Family</th> | 75 <th>Hostname</th> |
| 76 <th>Addresses</th> | 76 <th>Family</th> |
| 77 <th>Expires</th> | 77 <th>Addresses</th> |
| 78 <th>Expires</th> |
| 79 </tr> |
| 78 </thead> | 80 </thead> |
| 79 <tbody id=hostResolverCacheTbody> | 81 <tbody id=hostResolverCacheTbody> |
| 80 </tbody> | 82 </tbody> |
| 81 </table> | 83 </table> |
| 82 </div> | 84 </div> |
| 83 <!-- Sections TODO --> | 85 <!-- Sections TODO --> |
| 84 <div id=socketsTabContent>TODO: display socket information (outstanding conn
ect jobs)</div> | 86 <div id=socketsTabContent>TODO: display socket information (outstanding conn
ect jobs)</div> |
| 85 <div id=httpCacheTabContent>TODO: display http cache information (disk cache
navigator)</div> | 87 <div id=httpCacheTabContent>TODO: display http cache information (disk cache
navigator)</div> |
| 86 | 88 |
| 87 <!-- ================= Requests view =================== --> | 89 <!-- ================= Requests view =================== --> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 <td class=tabSwitcherSpacer> </td> | 128 <td class=tabSwitcherSpacer> </td> |
| 127 <th id=detailsTimelineTab>Timeline</th> | 129 <th id=detailsTimelineTab>Timeline</th> |
| 128 </tr> | 130 </tr> |
| 129 </table> | 131 </table> |
| 130 <div class=tabSwitcherLine></div> | 132 <div class=tabSwitcherLine></div> |
| 131 </div> | 133 </div> |
| 132 <div id=detailsLogBox></div> | 134 <div id=detailsLogBox></div> |
| 133 <div id=detailsTimelineBox></div> | 135 <div id=detailsTimelineBox></div> |
| 134 </body> | 136 </body> |
| 135 </html> | 137 </html> |
| OLD | NEW |