| 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> |
| 11 <script src="tabswitcherview.js"></script> | 11 <script src="tabswitcherview.js"></script> |
| 12 <script src="dataview.js"></script> | 12 <script src="dataview.js"></script> |
| 13 <script src="httpcacheview.js"></script> |
| 13 <script src="testview.js"></script> | 14 <script src="testview.js"></script> |
| 14 <script src="main.js"></script> | 15 <script src="main.js"></script> |
| 15 <script src="dnsview.js"></script> | 16 <script src="dnsview.js"></script> |
| 16 <script src="requestsview.js"></script> | 17 <script src="requestsview.js"></script> |
| 17 <script src="detailsview.js"></script> | 18 <script src="detailsview.js"></script> |
| 18 <script src="sourceentry.js"></script> | 19 <script src="sourceentry.js"></script> |
| 19 <script src="resizableverticalsplitview.js"></script> | 20 <script src="resizableverticalsplitview.js"></script> |
| 20 <script src="topmidbottomview.js"></script> | 21 <script src="topmidbottomview.js"></script> |
| 21 <script src="timelineviewpainter.js"></script> | 22 <script src="timelineviewpainter.js"></script> |
| 22 <script src="logviewpainter.js"></script> | 23 <script src="logviewpainter.js"></script> |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 <th>Addresses</th> | 82 <th>Addresses</th> |
| 82 <th>Expires</th> | 83 <th>Expires</th> |
| 83 </tr> | 84 </tr> |
| 84 </thead> | 85 </thead> |
| 85 <tbody id=hostResolverCacheTbody> | 86 <tbody id=hostResolverCacheTbody> |
| 86 </tbody> | 87 </tbody> |
| 87 </table> | 88 </table> |
| 88 </div> | 89 </div> |
| 89 <!-- Sections TODO --> | 90 <!-- Sections TODO --> |
| 90 <div id=socketsTabContent>TODO: display socket information (outstanding conn
ect jobs)</div> | 91 <div id=socketsTabContent>TODO: display socket information (outstanding conn
ect jobs)</div> |
| 91 <div id=httpCacheTabContent>TODO: display http cache information (disk cache
navigator)</div> | 92 <div id=httpCacheTabContent> |
| 93 <input type=button value="Reload" id=reloadHttpCacheListing /> |
| 94 <h4>Statistics</h4> |
| 95 <div id=httpCacheStats>Nothing loaded yet.</div> |
| 96 |
| 97 <h4>Entries</h4> |
| 98 <div id=httpCacheListing>Nothing loaded yet.</div> |
| 99 </div> |
| 92 <!-- Import/Export data --> | 100 <!-- Import/Export data --> |
| 93 <div id=dataTabContent> | 101 <div id=dataTabContent> |
| 94 <button id=exportToText><b>Click here to generate bug report data</b><br/
>(Copy paste the result and attach to bug)</button> | 102 <button id=exportToText><b>Click here to generate bug report data</b><br/
>(Copy paste the result and attach to bug)</button> |
| 95 <br/> | 103 <br/> |
| 96 <br/> | 104 <br/> |
| 97 <button id=exportToJson>Export data to JSON</button> | 105 <button id=exportToJson>Export data to JSON</button> |
| 98 </div> | 106 </div> |
| 99 <!-- Connection tests --> | 107 <!-- Connection tests --> |
| 100 <div id=testTabContent> | 108 <div id=testTabContent> |
| 101 <p>Input a URL which failed to load, and then click the button to run some | 109 <p>Input a URL which failed to load, and then click the button to run some |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 <td class=tabSwitcherSpacer> </td> | 155 <td class=tabSwitcherSpacer> </td> |
| 148 <th id=detailsTimelineTab>Timeline</th> | 156 <th id=detailsTimelineTab>Timeline</th> |
| 149 </tr> | 157 </tr> |
| 150 </table> | 158 </table> |
| 151 <div class=tabSwitcherLine></div> | 159 <div class=tabSwitcherLine></div> |
| 152 </div> | 160 </div> |
| 153 <div id=detailsLogBox></div> | 161 <div id=detailsLogBox></div> |
| 154 <div id=detailsTimelineBox></div> | 162 <div id=detailsTimelineBox></div> |
| 155 </body> | 163 </body> |
| 156 </html> | 164 </html> |
| OLD | NEW |