gecko-dev/browser/devtools/webconsole/test/browser_webconsole_bug_5952...

51 строка
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/. */
const TEST_FILE = "test-network.html";
function tabReload(aEvent) {
browser.removeEventListener(aEvent.type, tabReload, true);
outputNode = hud.outputNode;
waitForSuccess({
name: "console.log() message displayed",
validatorFn: function()
{
return outputNode.textContent
.indexOf("running network console logging tests") > -1;
},
successFn: function()
{
findLogEntry("test-network.html");
findLogEntry("test-image.png");
findLogEntry("testscript.js");
finishTest();
},
failureFn: finishTest,
});
}
function test() {
let jar = getJar(getRootDirectory(gTestPath));
let dir = jar ?
extractJarToTmp(jar) :
getChromeDir(getResolvedURI(gTestPath));
dir.append(TEST_FILE);
let uri = Services.io.newFileURI(dir);
addTab("data:text/html;charset=utf8,<p>test file URI");
browser.addEventListener("load", function tabLoad() {
browser.removeEventListener("load", tabLoad, true);
openConsole(null, function(aHud) {
hud = aHud;
hud.jsterm.clearOutput();
browser.addEventListener("load", tabReload, true);
content.location = uri.spec;
});
}, true);
}