summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/libpref/init/all.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index 056630ea3b..5e65557d9c 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -1191,7 +1191,10 @@ pref("dom.sysmsg.enabled", false);
// Enable pre-installed applications.
pref("dom.webapps.useCurrentProfile", false);
-pref("dom.cycle_collector.incremental", true);
+// Use incremental cycle collection?
+// In practice this gave a noticeable performance hit. Default off.
+// See forum topic https://forum.palemoon.org/viewtopic.php?f=62&t=29887
+pref("dom.cycle_collector.incremental", false);
// Parsing perf prefs. For now just mimic what the old code did.
#ifndef XP_WIN