From 1fcfbaa4b285361810c7d0fc6618aeb941fe96ed Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Sat, 25 Jan 2020 12:49:36 -0500 Subject: [PATCH] [Basilisk] Issue #2 - Enable WASM and its Baseline JIT in application preferences --- application/basilisk/app/profile/basilisk.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/basilisk/app/profile/basilisk.js b/application/basilisk/app/profile/basilisk.js index a773bc60ef..b721370a11 100644 --- a/application/basilisk/app/profile/basilisk.js +++ b/application/basilisk/app/profile/basilisk.js @@ -1364,3 +1364,7 @@ pref("services.sync.validation.enabled", true); // The counter resets when the page is reloaded from the UI // (content-reloads do NOT clear this to mitigate reloading tricks). pref("prompts.authentication_dialog_abuse_limit", 3); + +// Enable WASM and its baseline jit (platform default is false) +pref("javascript.options.wasm", true); +pref("javascript.options.wasm_baselinejit", true); \ No newline at end of file