Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(121)

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/inspector/console-xhr-logging-async.html

Issue 1877223003: DevTools: deprecate InspectorTest.runAfterPendingDispatches (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698