3 <script src=
"inspector-test.js"></script>
4 <script src=
"console-test.js"></script>
5 <script src=
"network-test.js"></script>
11 function makeRequest(callback
)
13 InspectorTest
.makeSimpleXHR("GET", "resources/xhr-exists.html", true, callback
);
23 InspectorTest
.NetworkAgent
.setMonitoringXHREnabled(true, callback
);
33 InspectorTest
.NetworkAgent
.setMonitoringXHREnabled(false, callback
);
40 InspectorTest
.dumpConsoleMessages();
41 InspectorTest
.completeTest();
43 InspectorTest
.runAfterPendingDispatches(finish
);
50 <body onload=
"runTest()">
51 <p>Tests that XMLHttpRequest Logging works when Enabled and doesn't show logs when Disabled for asynchronous XHRs.
</p>
52 <a href=
"https://bugs.webkit.org/show_bug.cgi?id=79229">Bug
79229</a>