From b1ac786668d95dcafe5d7a28d9da4709d984bdab Mon Sep 17 00:00:00 2001 From: Basilisk-Dev Date: Wed, 11 Oct 2023 11:14:22 -0400 Subject: [PATCH] [Basilisk] Enable performance observer by default --- application/basilisk/app/profile/basilisk.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/application/basilisk/app/profile/basilisk.js b/application/basilisk/app/profile/basilisk.js index 089d322741..2f5dfdfcc3 100644 --- a/application/basilisk/app/profile/basilisk.js +++ b/application/basilisk/app/profile/basilisk.js @@ -462,6 +462,11 @@ pref("dom.disable_window_flip", true); // tracking/profiling. pref("dom.enable_performance_navigation_timing", false); +// This pref controls whether PerformanceObserver is enabled or not. +// We enable it by default, unlike UXP and Pale Moon because several sites are +// beginning to expect this to be present. +pref("dom.enable_performance_observer", true); + // popups.policy 1=allow,2=reject pref("privacy.popups.policy", 1); pref("privacy.popups.usecustom", true);