mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
46 lines
1.4 KiB
JavaScript
46 lines
1.4 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// Tests that the page's resources are displayed in the console as they're
|
|
// loaded
|
|
|
|
const TEST_NETWORK_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-network.html" + "?_date=" + Date.now();
|
|
|
|
function test() {
|
|
addTab("data:text/html;charset=utf-8,Web Console basic network logging test");
|
|
browser.addEventListener("load", onLoad, true);
|
|
}
|
|
|
|
function onLoad(aEvent) {
|
|
browser.removeEventListener(aEvent.type, onLoad, true);
|
|
openConsole(null, function() {
|
|
browser.addEventListener("load", testBasicNetLogging, true);
|
|
content.location = TEST_NETWORK_URI;
|
|
});
|
|
}
|
|
|
|
function testBasicNetLogging(aEvent) {
|
|
browser.removeEventListener(aEvent.type, testBasicNetLogging, true);
|
|
|
|
outputNode = HUDService.getHudByWindow(content).outputNode;
|
|
|
|
waitForSuccess({
|
|
name: "network console message",
|
|
validatorFn: function()
|
|
{
|
|
return outputNode.textContent.indexOf("running network console") > -1;
|
|
},
|
|
successFn: function()
|
|
{
|
|
findLogEntry("test-network.html");
|
|
findLogEntry("testscript.js");
|
|
findLogEntry("test-image.png");
|
|
finishTest();
|
|
},
|
|
failureFn: finishTest,
|
|
});
|
|
}
|
|
|