Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: asan
- This test failed 7 times in the preceding 30 days. quicksearch this test
- Manifest: devtools/client/debugger/test/mochitest/browser_kz.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
"use strict";
requestLongerTimeout(2);
// Tests that using the Settings menu to enable and disable JavaScript
// updates the pref properly
add_task(async function () {
const dbg = await initDebugger("doc-scripts.html", "simple1.js");
const menuItemClassName = ".debugger-settings-menu-item-disable-javascript";
info("Waiting for source to load");
await waitForSource(dbg, "simple1.js");
const waitForDevToolsReload = await watchForDevToolsReload(
gBrowser.selectedBrowser
);
info("Clicking the disable javascript button in the settings menu");
await toggleDebbuggerSettingsMenuItem(dbg, {
className: menuItemClassName,
isChecked: false,
});
info("Waiting for reload triggered by disabling javascript");
await waitForSourcesInSourceTree(dbg, [], { noExpand: true });
info("Wait for DevTools to be reloaded");
await waitForDevToolsReload();
info(
"Clicking the disable javascript button in the settings menu to reenable JavaScript"
);
await toggleDebbuggerSettingsMenuItem(dbg, {
className: menuItemClassName,
isChecked: true,
});
is(
Services.prefs.getBoolPref("javascript.enabled"),
true,
"JavaScript is enabled"
);
info("Reloading page to ensure there are sources");
await reload(dbg);
await waitForSource(dbg, "simple1.js");
});