/* Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ */ // Ensure that only panels that are relevant to the addon debugger // display in the toolbox const ADDON_URL = EXAMPLE_URL + "addon3.xpi"; var gAddon, gClient, gThreadClient, gDebugger, gSources; var PREFS = [ "devtools.canvasdebugger.enabled", "devtools.shadereditor.enabled", "devtools.performance.enabled", "devtools.netmonitor.enabled" ]; function test() { Task.spawn(function*() { let addon = yield addAddon(ADDON_URL); let addonDebugger = yield initAddonDebugger(ADDON_URL); // Store and enable all optional dev tools panels let originalPrefs = PREFS.map(pref => { let original = Services.prefs.getBoolPref(pref); Services.prefs.setBoolPref(pref, true) return original; }); // Check only valid tabs are shown let tabs = addonDebugger.frame.contentDocument.getElementById("toolbox-tabs").children; let expectedTabs = ["webconsole", "jsdebugger", "scratchpad"]; is(tabs.length, expectedTabs.length, "displaying only " + expectedTabs.length + " tabs in addon debugger"); Array.forEach(tabs, (tab, i) => { let toolName = expectedTabs[i]; is(tab.getAttribute("toolid"), toolName, "displaying " + toolName); }); // Check no toolbox buttons are shown let buttons = addonDebugger.frame.contentDocument.getElementById("toolbox-buttons").children; Array.forEach(buttons, (btn, i) => { is(btn.hidden, true, "no toolbox buttons for the addon debugger -- " + btn.className); }); yield addonDebugger.destroy(); yield removeAddon(addon); PREFS.forEach((pref, i) => Services.prefs.setBoolPref(pref, originalPrefs[i])); finish(); }); }