| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 <div id=httpCacheTabContent> | 92 <div id=httpCacheTabContent> |
| 93 <input type=button value="Reload" id=reloadHttpCacheListing /> | 93 <input type=button value="Reload" id=reloadHttpCacheListing /> |
| 94 <h4>Statistics</h4> | 94 <h4>Statistics</h4> |
| 95 <div id=httpCacheStats>Nothing loaded yet.</div> | 95 <div id=httpCacheStats>Nothing loaded yet.</div> |
| 96 | 96 |
| 97 <h4>Entries</h4> | 97 <h4>Entries</h4> |
| 98 <div id=httpCacheListing>Nothing loaded yet.</div> | 98 <div id=httpCacheListing>Nothing loaded yet.</div> |
| 99 </div> | 99 </div> |
| 100 <!-- Import/Export data --> | 100 <!-- Import/Export data --> |
| 101 <div id=dataTabContent> | 101 <div id=dataTabContent> |
| 102 <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>Dump to text</b></button> |
| 103 <br/> | 103 <pre id=exportedDataText></pre> |
| 104 <br/> | |
| 105 <button id=exportToJson>Export data to JSON</button> | |
| 106 </div> | 104 </div> |
| 107 <!-- Connection tests --> | 105 <!-- Connection tests --> |
| 108 <div id=testTabContent> | 106 <div id=testTabContent> |
| 109 <p>Input a URL which failed to load, and then click the button to run some | 107 <p>Input a URL which failed to load, and then click the button to run some |
| 110 tests for why it failed.</p> | 108 tests for why it failed.</p> |
| 111 URL: <input type=text id=testUrlInput /> | 109 URL: <input type=text id=testUrlInput /> |
| 112 <input type=button id=testStart value="Start tests" /> | 110 <input type=button id=testStart value="Start tests" /> |
| 113 <div id=testSummary></div> | 111 <div id=testSummary></div> |
| 114 </div> | 112 </div> |
| 115 | 113 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 <td class=tabSwitcherSpacer> </td> | 153 <td class=tabSwitcherSpacer> </td> |
| 156 <th id=detailsTimelineTab>Timeline</th> | 154 <th id=detailsTimelineTab>Timeline</th> |
| 157 </tr> | 155 </tr> |
| 158 </table> | 156 </table> |
| 159 <div class=tabSwitcherLine></div> | 157 <div class=tabSwitcherLine></div> |
| 160 </div> | 158 </div> |
| 161 <div id=detailsLogBox></div> | 159 <div id=detailsLogBox></div> |
| 162 <div id=detailsTimelineBox></div> | 160 <div id=detailsTimelineBox></div> |
| 163 </body> | 161 </body> |
| 164 </html> | 162 </html> |
| OLD | NEW |