| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="inspector-test.js"></script> | 3 <script src="inspector-test.js"></script> |
| 4 <script src="console-test.js"></script> | 4 <script src="console-test.js"></script> |
| 5 <script src="network-test.js"></script> | 5 <script src="network-test.js"></script> |
| 6 <script> | 6 <script> |
| 7 function test() | 7 function test() |
| 8 { | 8 { |
| 9 step1(); | 9 step1(); |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 InspectorTest.NetworkAgent.setMonitoringXHREnabled(false, callback); | 33 InspectorTest.NetworkAgent.setMonitoringXHREnabled(false, callback); |
| 34 } | 34 } |
| 35 | 35 |
| 36 function step3() | 36 function step3() |
| 37 { | 37 { |
| 38 function finish() | 38 function finish() |
| 39 { | 39 { |
| 40 InspectorTest.dumpConsoleMessages(); | 40 InspectorTest.dumpConsoleMessages(); |
| 41 InspectorTest.completeTest(); | 41 InspectorTest.completeTest(); |
| 42 } | 42 } |
| 43 InspectorTest.runAfterPendingDispatches(finish); | 43 InspectorTest.deprecatedRunAfterPendingDispatches(finish); |
| 44 } | 44 } |
| 45 } | 45 } |
| 46 | 46 |
| 47 </script> | 47 </script> |
| 48 </head> | 48 </head> |
| 49 | 49 |
| 50 <body onload="runTest()"> | 50 <body onload="runTest()"> |
| 51 <p>Tests that XMLHttpRequest Logging works when Enabled and doesn't show logs wh
en Disabled for asynchronous XHRs.</p> | 51 <p>Tests that XMLHttpRequest Logging works when Enabled and doesn't show logs wh
en Disabled for asynchronous XHRs.</p> |
| 52 <a href="https://bugs.webkit.org/show_bug.cgi?id=79229">Bug 79229</a> | 52 <a href="https://bugs.webkit.org/show_bug.cgi?id=79229">Bug 79229</a> |
| 53 </body> | 53 </body> |
| 54 </html> | 54 </html> |
| OLD | NEW |