| 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 rel="stylesheet" href="main.css"> | 8 <link 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 </p> | 212 </p> |
| 213 <button id=exportToText class=bigButton>Dump to text</button> | 213 <button id=exportToText class=bigButton>Dump to text</button> |
| 214 </div> | 214 </div> |
| 215 </td> | 215 </td> |
| 216 | 216 |
| 217 <td align=right valign=top> | 217 <td align=right valign=top> |
| 218 <div class="capturingBox"> | 218 <div class="capturingBox"> |
| 219 <b>Capturing all events...</b> | 219 <b>Capturing all events...</b> |
| 220 <table style="margin: 8px"> | 220 <table style="margin: 8px"> |
| 221 <tr> | 221 <tr> |
| 222 <td>Pasively captured:</td> | 222 <td>Passively captured:</td> |
| 223 <td align=right id=passivelyCapturedCount></td> | 223 <td align=right id=passivelyCapturedCount></td> |
| 224 </tr> | 224 </tr> |
| 225 <tr> | 225 <tr> |
| 226 <td>Actively captured:</td> | 226 <td>Actively captured:</td> |
| 227 <td align=right id=activelyCapturedCount></td> | 227 <td align=right id=activelyCapturedCount></td> |
| 228 </tr> | 228 </tr> |
| 229 </table> | 229 </table> |
| 230 <p><input type=button value="Delete all" id=dataViewDeleteAll /></p> | 230 <p><input type=button value="Delete all" id=dataViewDeleteAll /></p> |
| 231 <p><input id=byteLoggingCheckbox type=checkbox> | 231 <p><input id=byteLoggingCheckbox type=checkbox> |
| 232 Log actual bytes sent/received. | 232 Log actual bytes sent/received. |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 | 269 |
| 270 <ul> | 270 <ul> |
| 271 <li>The network log <b>may contain personally identifying information</b> like | 271 <li>The network log <b>may contain personally identifying information</b> like |
| 272 IP addresses, URLs, and cookies.</li> | 272 IP addresses, URLs, and cookies.</li> |
| 273 <ul> | 273 <ul> |
| 274 <li>You can edit the log to obscure information if you like, but sometimes it | 274 <li>You can edit the log to obscure information if you like, but sometimes it |
| 275 is relevant to the bug.</li> | 275 is relevant to the bug.</li> |
| 276 <li>If you choose not to have cookies removed from the log, you must toggle | 276 <li>If you choose not to have cookies removed from the log, you must toggle |
| 277 the checkbox before clicking the button.</li> | 277 the checkbox before clicking the button.</li> |
| 278 </ul> | 278 </ul> |
| 279 <li>Ideally you would have the tool running <b>before</b> you reproduce the | 279 <li>Ideally you would have the tool running <b>before</b> you reproduce the |
| 280 bug. | 280 bug. |
| 281 If that isn't possible (perhaps the bug happens unpredictably), then the | 281 If that isn't possible (perhaps the bug happens unpredictably), then the |
| 282 next best thing is to load chrome://net-internals/ <b>as soon as you can | 282 next best thing is to load chrome://net-internals/ <b>as soon as you can |
| 283 after</b> the problem has occurred.</li> | 283 after</b> the problem has occurred.</li> |
| 284 </ul> | 284 </ul> |
| 285 | 285 |
| 286 <h2>How it works</h2> | 286 <h2>How it works</h2> |
| 287 | 287 |
| 288 <ul> | 288 <ul> |
| 289 <li>While the net-internals page is open, it will capture the network events | 289 <li>While the net-internals page is open, it will capture the network events |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 <td class=tabSwitcherSpacer> </td> | 357 <td class=tabSwitcherSpacer> </td> |
| 358 <th id=detailsTimelineTab>Timeline</th> | 358 <th id=detailsTimelineTab>Timeline</th> |
| 359 </tr> | 359 </tr> |
| 360 </table> | 360 </table> |
| 361 <div class=tabSwitcherLine></div> | 361 <div class=tabSwitcherLine></div> |
| 362 </div> | 362 </div> |
| 363 <div id=detailsLogBox></div> | 363 <div id=detailsLogBox></div> |
| 364 <div id=detailsTimelineBox></div> | 364 <div id=detailsTimelineBox></div> |
| 365 </body> | 365 </body> |
| 366 </html> | 366 </html> |
| OLD | NEW |