-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about multi screen spanning #74
Comments
Thanks for the question. We haven't prioritized support for programmatically spanning a window across displays. That behavior seems sensible for dual-screen devices, especially if the window manager has screen-spanning maximization or fullscreen behaviors, but it may not work as well in traditional free-form multi-screen desktop environments, where the aggregate screen bounds may be non-rectangular. The API allows browsers to clamp requested window bounds within the target screen; Chromium's implementation currently does so to avoid usability concerns. It may be reasonable to support spanning placements or programmatic spanning or maximization (or fullscreen) as more use cases and requests arise. Please do share any specific examples of user value, requested JS code patterns, etc. to support this request. Can you also clarify whether Element.requestFullscreen() spans both screens of your dual-screen device, and why that may or may not be sufficient for your use cases? Thanks! |
Hi, Thanks for the information. |
This is a reasonable enhancement request for the future, thanks! |
I am working on a radiology application that would benefit from this as well (or the somewhat equivalent multiple element.requestFullscreen per page approach). I have left more details on #92. |
Hi,
We have a web application where we would like to introduce dual screen support, in a way that our application would span the browser window across multiple monitors. We have seen that the visual viewport API is being extended by the viewport segments property which enables laying out the content in a window that spans multiple displays. We plan to leverage this new functionality to detect multi monitor environment and to properly align web elements across the monitors.
However, this new API extension does not provide a functionality to span and maximize a window across multiple screens. In the Viewport Segments Property explainer document the Multi-Screen Window Placement API is mentioned as an API which can or will be able to provide such functionality. However, here in the API explainer we found that this functionality is still just under consideration. We would like to ask if there is any update regarding this multi-screen spanning functionality, whether it will be part of this API and if yes is there any planned roadmap about the introduction and implementation of it?
Besides doing this from an API, do you know about any plan from the browser vendors providing a functionality to the users to maximize the browser window across dual-screens like providing a button for this similarly to the current full screen functionality of the browsers?
The text was updated successfully, but these errors were encountered: