summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-01-25 12:48:06 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-01-25 12:48:06 -0500
commit73e133527b2791455e397a0f82a8fbc107c38418 (patch)
tree40cc27fc3c4f085130c0e3f455212d38a0ad553e
parente690015d61b49ad7f66623973bb5a4c172a66b3d (diff)
downloadbasilisk-73e133527b2791455e397a0f82a8fbc107c38418.tar.gz
Issue #2 - Enable WASM and its Baseline JIT in application preferences
-rw-r--r--basilisk/app/profile/basilisk.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/basilisk/app/profile/basilisk.js b/basilisk/app/profile/basilisk.js
index a3ecce6..a5e2281 100644
--- a/basilisk/app/profile/basilisk.js
+++ b/basilisk/app/profile/basilisk.js
@@ -1354,3 +1354,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", false);
+pref("javascript.options.wasm_baselinejit", false);