From 4b68ef14db34af88e6b476dd5b34a09f26004bdc Mon Sep 17 00:00:00 2001 From: Jeremy Andrews Date: Tue, 19 Dec 2023 00:23:03 -0600 Subject: [PATCH] No Issue - Add full-screen-api.ignore-widgets pref to about:config. This was already in the codebase, but not exposed by default. Mozilla exposed the pref to fulfill user requests in Firefox 59. Forum users requested the same feaure of pseudo-fullscreen windows. Seems minor enough not to be worth creating an issue for, since users can already access this by creating a bool pref. Ref: BZ 1422535 --- modules/libpref/init/all.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/libpref/init/all.js b/modules/libpref/init/all.js index 90dd0925aa..3b46c33b27 100644 --- a/modules/libpref/init/all.js +++ b/modules/libpref/init/all.js @@ -4564,6 +4564,8 @@ pref("full-screen-api.enabled", false); pref("full-screen-api.unprefix.enabled", true); pref("full-screen-api.allow-trusted-requests-only", true); pref("full-screen-api.pointer-lock.enabled", true); +// whether to prevent the top level widget from going fullscreen +pref("full-screen-api.ignore-widgets", false); // transition duration of fade-to-black and fade-from-black, unit: ms pref("full-screen-api.transition-duration.enter", "0 0");