mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
/* vim:set ts=2 sw=2 sts=2 et: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
const TEST_URI = "data:text/html;charset=utf-8,<p>test for bug 577721";
|
|
|
|
const POSITION_PREF = "devtools.webconsole.position";
|
|
|
|
function test() {
|
|
addTab(TEST_URI);
|
|
browser.addEventListener("load", function onLoad() {
|
|
browser.removeEventListener("load", onLoad, true);
|
|
openConsole(null, consoleOpened);
|
|
}, true);
|
|
registerCleanupFunction(testEnd);
|
|
}
|
|
|
|
function testEnd() {
|
|
Services.prefs.clearUserPref(POSITION_PREF);
|
|
}
|
|
|
|
function consoleOpened(hudRef) {
|
|
let hudBox = hudRef.HUDBox;
|
|
|
|
// listen for the panel popupshown event.
|
|
document.addEventListener("popupshown", function popupShown() {
|
|
document.removeEventListener("popupshown", popupShown, false);
|
|
|
|
ok(hudRef.consolePanel, "console is in a panel");
|
|
|
|
Services.obs.addObserver(function onWebConsoleClose() {
|
|
Services.obs.removeObserver(onWebConsoleClose, "web-console-destroyed");
|
|
executeSoon(finishTest);
|
|
}, "web-console-destroyed", false);
|
|
|
|
// Close the window console via the menu item
|
|
let menu = document.getElementById("webConsole");
|
|
menu.click();
|
|
}, false);
|
|
|
|
hudRef.positionConsole("window");
|
|
}
|