tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit c7522083b358be31f522b963620b64e1a3f6bef7
parent 7055f54278ad8aad10e659d19dce90df88e572ef
Author: Ryan Hunt <rhunt@eqrion.net>
Date:   Thu, 18 Dec 2025 14:55:07 +0000

Bug 2002635 - Enable asm.js for devtools test. r=devtools-reviewers,ochameau

asm.js is disabled by default now, re-enable it for this test
that requires it to be enabled. Once we remove support for
asm.js we can remove the test.

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

Diffstat:
Mdevtools/client/debugger/test/mochitest/integration/browser.toml | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/devtools/client/debugger/test/mochitest/integration/browser.toml b/devtools/client/debugger/test/mochitest/integration/browser.toml @@ -17,6 +17,7 @@ support-files = [ ] prefs = [ "dom.ipc.processPrelaunch.enabled=false", # Disable randomly spawning processes during tests. After enabling windowless service workers, a process spawning will trigger an update of the service workers list which can fail the test if it occurs during shutdown (unhandled promise rejection). + "javascript.options.asmjs=true", # Re-enable asm.js for 'browser_dbg-features-asm.js' ] ["browser_dbg-features-asm.js"]