From 9958e387d8b28ee65abf0efd79201c5bb9713a00 Mon Sep 17 00:00:00 2001 From: Moonchild Date: Mon, 26 Dec 2022 11:21:32 +0000 Subject: [PATCH] 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. --- modules/libpref/init/all.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 0ef3903c22..8e9a780512 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -187,7 +187,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);