[Basilisk] Issue #2 - Enable WASM and its Baseline JIT in application preferences

This commit is contained in:
Matt A. Tobin 2020-01-25 12:49:36 -05:00 committed by Roy Tam
commit 1fcfbaa4b2

View file

@ -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);