Issue 369 in xmonad: Html5 video fullscreen window doesn't stay in fullscreen mode

Status: New Owner: ---- New issue 369 by mceier: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 What steps will reproduce the problem? 1. open http://diveintohtml5.org/video.html#movie in firefox 3.6 ( browser that supports html5 <video> tag ) 2. Do right mouse click on the movie and select fullscreen mode 3. What is the expected output? What do you see instead? Fullscreen window should stay in fullscreen mode and play video, but instead it is automatically closed after it is opened What version of the product are you using? On what operating system? xmonad 0.9.1 on gentoo Are you using an xmonad.hs? Please attach it and the output of "xmonad --recompile". yes "xmonad --recompile" outputs nothing. Please provide any additional information below. When myManageHook ( from default xmonad.hs ) is defined as follows: myManageHook = doFullFloat video works as expected ( it does not close automatically ), but every window is "full float" when myManageHook is: myManageHook = isFullscreen --> doFullFloat this fullscreen window closes automatically also tried : myManageHook = composeAll [ className =? "Toplevel" --> doFullFloat, isFullscreen --> doFullFloat ] it also didn't help. Attached xprop output ( run in awesome ). Flash fullscreen windows work as expected. Attachments: fs_prop.txt 9.8 KB -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #1 on issue 369 by audunskaugen: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 I tested it a bit. For me too it doesn't work with just the doFullFloat manage hook, but it does work with the recently merged fullScreenEventHook (see #339). That eventHook hasn't made it into a release yet, but you can add it to your config, like in the one attached. Attachments: totemFullscreen.hs 1.1 KB -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #2 on issue 369 by mceier: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 I tried using totemFullscreen.hs, but it didn't solve the problem. I am attaching my xmonad.hs, with eventHook from totemFullscreen.hs. Did you try to play the video from the url I have given, in fullscreen mode ? Attachments: xmonad.hs 14.2 KB -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #3 on issue 369 by mceier: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 one more thing, for me it did work with doFullFloat, but without isFullscreen before it, e.g. myManageHook = doFullFloat, but that makes every window FullFloat, not just the fullscreen video window. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #4 on issue 369 by audunskaugen: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 That's strange. I tried to play the video in the url exactly as you said, and fullscreened it using rightclick -> fullscreen. I tested it now using just the minimal totemFullscreen.hs on another computer. It worked there too. I didn't test with your config file, since it seems to include lots of stuff outside of -contrib. Are you running xmonad-0.9.1? -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #5 on issue 369 by mceier: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 xmonad --version, shows: xmonad 0.9.1 also portage shows: x11-wm/xmonad-0.9.1 and x11-wm/xmonad-contrib-0.9.1 ( it is from haskell overlay ) so I'm pretty sure that I'm running xmonad-0.9.1 maybe my config is somehow broken ? -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #6 on issue 369 by mceier: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 I created minimal xmonad.hs that uses totemFullscreen.hs, defaultConfig, minimal keybindings and minimal set of layouts, and does not depend on gnome. Results are that, in Full layout fullscreen video window closes automatically, in tiled and Mirror tiled, it works as expected. Attachments: xmonad.hs 2.3 KB -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #7 on issue 369 by audunskaugen: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 Ah, I hadn't tested it with full layout before. That's the behaviour I get as well. I have no idea why a fullscreen layout would cause the window to close. I believe that the fullscreen window automatically closes when another window gets focused, so maybe the full layout fails to focus the new window properly? -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings

Comment #8 on issue 369 by mceier: Html5 video fullscreen window doesn't stay in fullscreen mode http://code.google.com/p/xmonad/issues/detail?id=369 I wrote Full-like layout, which instead of hiding non-focused windows, it sets their Rectangle to 0 0 0 0. This seems to 'work', but there are some side-effects in at least one application ( xterm - which looses its contents after resize ). I think there should be better fix. Attachments: xmonad.hs 2.7 KB -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings
participants (1)
-
codesite-noreply@google.com