Be less up-tight about script timeouts.

Especially some chrome scripts need ample time, which is causing issues with background scripts firing when the browser is idle.
This commit is contained in:
wolfbeast
2017-12-17 03:08:49 +01:00
parent ae656528f7
commit 4686be40b2
+2 -2
View File
@@ -2720,8 +2720,8 @@ pref("editor.resizing.preserve_ratio", true);
pref("editor.positioning.offset", 0);
pref("dom.use_watchdog", true);
pref("dom.max_chrome_script_run_time", 20);
pref("dom.max_script_run_time", 10);
pref("dom.max_chrome_script_run_time", 90);
pref("dom.max_script_run_time", 20);
// Stop all scripts in a compartment when the "stop script" dialog is used.
pref("dom.global_stop_script", true);