mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
74 lines
1.7 KiB
JavaScript
74 lines
1.7 KiB
JavaScript
/*
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// Check that clear output on page reload works - bug 705921.
|
|
|
|
function test()
|
|
{
|
|
const PREF = "devtools.webconsole.persistlog";
|
|
const TEST_URI = "http://example.com/browser/browser/devtools/webconsole/test/test-console.html";
|
|
let hud = null;
|
|
|
|
Services.prefs.setBoolPref(PREF, false);
|
|
registerCleanupFunction(() => Services.prefs.clearUserPref(PREF));
|
|
|
|
addTab(TEST_URI);
|
|
|
|
browser.addEventListener("load", function onLoad() {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, consoleOpened);
|
|
}, true);
|
|
|
|
function consoleOpened(aHud)
|
|
{
|
|
hud = aHud;
|
|
ok(hud, "Web Console opened");
|
|
|
|
hud.jsterm.clearOutput();
|
|
content.console.log("foobarz1");
|
|
waitForMessages({
|
|
webconsole: hud,
|
|
messages: [{
|
|
text: "foobarz1",
|
|
category: CATEGORY_WEBDEV,
|
|
severity: SEVERITY_LOG,
|
|
}],
|
|
}).then(onConsoleMessage);
|
|
}
|
|
|
|
function onConsoleMessage()
|
|
{
|
|
browser.addEventListener("load", onReload, true);
|
|
content.location.reload();
|
|
}
|
|
|
|
function onReload()
|
|
{
|
|
browser.removeEventListener("load", onReload, true);
|
|
|
|
content.console.log("foobarz2");
|
|
|
|
waitForMessages({
|
|
webconsole: hud,
|
|
messages: [{
|
|
text: "test-console.html",
|
|
category: CATEGORY_NETWORK,
|
|
},
|
|
{
|
|
text: "foobarz2",
|
|
category: CATEGORY_WEBDEV,
|
|
severity: SEVERITY_LOG,
|
|
}],
|
|
}).then(onConsoleMessageAfterReload);
|
|
}
|
|
|
|
function onConsoleMessageAfterReload()
|
|
{
|
|
is(hud.outputNode.textContent.indexOf("foobarz1"), -1,
|
|
"foobarz1 has been removed from output");
|
|
finishTest();
|
|
}
|
|
}
|