summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-12-26 11:21:32 +0000
committerMoonchild <moonchild@palemoon.org>2022-12-26 11:21:32 +0000
commita6d113f87b2cdd832458e79b6e2da3d42d29fdb9 (patch)
treecae578ccc35d5e7f1593ffdeb520de3dab37b657 /modules
parent413cb600ccfbe563bcc22ba5926fab120b271595 (diff)
downloaduxp-a6d113f87b2cdd832458e79b6e2da3d42d29fdb9.tar.gz
Issue #2053 - Disable DOM Performance API navigation timing.
We may eventually want to make this permanent in the front-end of Pale Moon for privacy reasons. Disabling this to avoid usage expecting changed spec results.
Diffstat (limited to 'modules')
-rw-r--r--modules/libpref/init/all.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js
index c2603f87fd..60acb84143 100644
--- a/modules/libpref/init/all.js
+++ b/modules/libpref/init/all.js
@@ -183,7 +183,7 @@ pref("dom.enable_resource_timing", true);
pref("dom.enable_user_timing", true);
// Whether performance.GetEntries* will contain an entry for the active document
-pref("dom.enable_performance_navigation_timing", true);
+pref("dom.enable_performance_navigation_timing", false);
// Enable printing performance marks/measures to log
pref("dom.performance.enable_user_timing_logging", false);