Closed
Bug 1273746
Opened 9 years ago
Closed 9 years ago
Fullscreen is broken in Firefox 46 and xmonad (with EwmhDesktops and fullscreenEventHook enabled)
Categories
(Core :: Widget: Gtk, defect)
Tracking
()
RESOLVED
WONTFIX
People
(Reporter: bdowning, Unassigned)
References
Details
(Keywords: regression)
Attachments
(1 file)
(deleted),
text/x-haskell
|
Details |
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Firefox/45.0
Build ID: 20160412225428
Steps to reproduce:
1. Start Firefox 46 in my xmonad configuration, which includes XMonad.Hooks.EwmhDesktops and has fullscreenEventHook enabled.
2. Press F11
Actual results:
The navigation bar animates off the top of the screen as expected in fullscreen, but the window size does not change; it stays tiled.
Expected results:
The window should have grown to fill the whole screen. This was the behavior for me in all Firefoxes up until 46. (Confirmed by downgrading to 45 and seeing fullscreen work.)
With fullscreenEventHook enabled I never had the problems described in bug 1189622; fullscreen always worked perfectly for me with both web pages and fullscreen video, and I never had any video update problems. Assuming it was this patch which changed the behavior to what I'm seeing, this has regressed from previous behavior for xmonad users which have the fullscreen hook configured.
Reporter | ||
Comment 1•9 years ago
|
||
Here's a minimal xmonad.hs that will demonstrate the bug on Firefox 46, and demonstrate working fullscreen on Firefox 45.
Reporter | ||
Comment 2•9 years ago
|
||
(Ignore the myEwmh stuff, that was leftover cruft from my actual xmonad config that I forgot to remove, it has no bearing on the issue here.)
Reporter | ||
Updated•9 years ago
|
OS: Unspecified → Linux
Hardware: Unspecified → x86_64
46 supports Gtk3 now.
Reporter | ||
Comment 4•9 years ago
|
||
For information, evince's F11 fullscreen works correctly on this xmonad configuration, and it is using GTK3:
:; ldd =evince | grep gtk
libgtk-3.so.0 => /usr/lib/libgtk-3.so.0 (0x00007fcc77c02000)
Comment 5•9 years ago
|
||
What does "xprop -root _NET_SUPPORTED" print?
Reporter | ||
Comment 6•9 years ago
|
||
:; xprop -root _NET_SUPPORTED
_NET_SUPPORTED(ATOM) = _NET_SUPPORTING_WM_CHECK, _NET_WM_NAME, _NET_WM_STATE_HIDDEN, _NET_NUMBER_OF_DESKTOPS, _NET_CLIENT_LIST, _NET_CLIENT_LIST_STACKING, _NET_CURRENT_DESKTOP, _NET_DESKTOP_NAMES, _NET_ACTIVE_WINDOW, _NET_WM_DESKTOP, _NET_WM_STRUT
Comment 7•9 years ago
|
||
Thanks. The missing _NET_WM_STATE_FULLSCREEN is the way for the window manager to indicate that fullscreen windows are not supported.
Since changes for bug 1189622, Gecko doesn't request fullscreen windows when they are not supported by the window manager. That is the correct behavior AIUI.
If fullscreenEventHook is adding support for fullscreen windows, then it should modify _NET_SUPPORTED and _NET_WM_ALLOWED_ACTIONS appropriately.
https://specifications.freedesktop.org/wm-spec/1.5/ar01s03.html#idm139870830098752
https://specifications.freedesktop.org/wm-spec/1.5/ar01s05.html#idm139870829966672
Comment 8•9 years ago
|
||
Sounds like something needs to be fixed from xmond side.
Reporter | ||
Comment 9•9 years ago
|
||
Thanks for the information, I'll look into seeing what it takes to fix up XMonad.Hooks.EwmhDesktops.
Updated•8 years ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•