gecko-dev/layout/tools/layout-debug/tests/browser/browser_openLayoutDebug.js
Ian Moody 4a3f7af1ea Bug 1467541 - Add a test for opening the layout debugger. r=dbaron
Summary:

Reviewers: dbaron

Reviewed By: dbaron

Bug #: 1467541

Differential Revision: https://phabricator.services.mozilla.com/D2691

--HG--
extra : histedit_source : b23b7f9a8407bf460838d56f5d66bcf6fb347cc2
2018-08-09 10:53:01 +03:00

39 lines
946 B
JavaScript

"use strict";
/*
When run locally this won't test whether the files are packaged and available
in a distributed build unless `./mach mochitest --appname dist` is used
(after `./mach package`)
*/
function test() {
waitForExplicitFinish();
const windowListener = {
onOpenWindow(win) {
info("Observed window open")
const domWindow = win.docShell.domWindow;
waitForFocus(() => {
is(domWindow.location,
"chrome://layoutdebug/content/layoutdebug.xul",
"Window location is correct");
domWindow.close();
}, domWindow);
},
onCloseWindow() {
info("Observed window closed");
Services.wm.removeListener(this);
finish();
}
};
Services.wm.addListener(windowListener);
const menuitem = document.getElementById("menu_layout_debugger");
ok(menuitem, "Menuitem present");
if (menuitem) {
// open the debugger window
menuitem.click();
}
}