mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-01-22 15:16:05 +00:00
57 lines
1.8 KiB
JavaScript
57 lines
1.8 KiB
JavaScript
/* vim: set ts=2 et sw=2 tw=80: */
|
|
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function test() {
|
|
let {Toolbox} = require("devtools/client/framework/toolbox");
|
|
|
|
let toolbox, iframe, target, tab;
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
target = TargetFactory.forTab(gBrowser.selectedTab);
|
|
|
|
window.addEventListener("message", onMessage);
|
|
|
|
iframe = document.createElement("iframe");
|
|
document.documentElement.appendChild(iframe);
|
|
|
|
gBrowser.selectedBrowser.addEventListener("load", function onLoad(evt) {
|
|
gBrowser.selectedBrowser.removeEventListener(evt.type, onLoad, true);
|
|
let options = {customIframe: iframe};
|
|
gDevTools.showToolbox(target, null, Toolbox.HostType.CUSTOM, options)
|
|
.then(testCustomHost, console.error)
|
|
.then(null, console.error);
|
|
}, true);
|
|
|
|
content.location = "data:text/html,test custom host";
|
|
|
|
function onMessage(event) {
|
|
info("onMessage: " + event.data);
|
|
let json = JSON.parse(event.data);
|
|
if (json.name == "toolbox-close") {
|
|
ok("Got the `toolbox-close` message");
|
|
window.removeEventListener("message", onMessage);
|
|
cleanup();
|
|
}
|
|
}
|
|
|
|
function testCustomHost(t) {
|
|
toolbox = t;
|
|
is(toolbox.doc.defaultView.top, window, "Toolbox is included in browser.xul");
|
|
is(toolbox.doc, iframe.contentDocument, "Toolbox is in the custom iframe");
|
|
executeSoon(() => gBrowser.removeCurrentTab());
|
|
}
|
|
|
|
function cleanup() {
|
|
iframe.remove();
|
|
|
|
// Even if we received "toolbox-close", the toolbox may still be destroying
|
|
// toolbox.destroy() returns a singleton promise that ensures
|
|
// everything is cleaned up before proceeding.
|
|
toolbox.destroy().then(() => {
|
|
toolbox = iframe = target = tab = null;
|
|
finish();
|
|
});
|
|
}
|
|
}
|