summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-01-25 12:49:36 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-01-25 12:49:36 -0500
commitb4192110b9a5909752250bb61d336185ab1630ef (patch)
treece97ef760d05975a6f9f207dd0134771ab05e5f7
parent82ada3aa4128cbb90d0733e584d2b5edb7e695bd (diff)
downloadbasilisk-b4192110b9a5909752250bb61d336185ab1630ef.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..ca293e9 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", true);
+pref("javascript.options.wasm_baselinejit", true); \ No newline at end of file