Bug 1802193 Part 1: Turn macOS native fullscreen pref on for Nightly. r=mac-reviewers,spohl

Differential Revision: https://phabricator.services.mozilla.com/D162890
This commit is contained in:
Brad Werth 2023-06-16 16:14:03 +00:00
parent 63186bc601
commit 6475bde8c2

View File

@ -3247,7 +3247,11 @@ pref("alerts.showFavicons", false);
// DOM full-screen API.
#ifdef XP_MACOSX
// Whether to use macOS native full screen for Fullscreen API
pref("full-screen-api.macos-native-full-screen", false);
#ifdef NIGHTLY_BUILD
pref("full-screen-api.macos-native-full-screen", true);
#else
pref("full-screen-api.macos-native-full-screen", false);
#endif
#endif
// transition duration of fade-to-black and fade-from-black, unit: ms
#ifndef MOZ_WIDGET_GTK