Merge remote-tracking branch 'origin/tracking' into custom

This commit is contained in:
roytam1 2023-12-15 10:29:04 +08:00
commit 5a362aa15b
68 changed files with 186 additions and 2246 deletions

View file

@ -457,6 +457,16 @@ pref("dom.disable_window_move_resize", false);
// prevent JS from monkeying with window focus, etc
pref("dom.disable_window_flip", true);
// Whether performance.GetEntries* will contain an entry for the active document
// Disabled by default in Basilisk (unlike in UXP) since it can be used for
// 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);