summaryrefslogtreecommitdiffstats
path: root/dom
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-03-18 21:15:10 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-03-18 21:15:10 +0100
commit9550c68d7a2f369b0b8800359142abd620b4c74e (patch)
treed4470e0f34bd720e506b5ed2bbcea52bda25452a /dom
parent54f44bb628df675f9359b588a0ef628b7c783f6a (diff)
downloadUXP-9550c68d7a2f369b0b8800359142abd620b4c74e.tar
UXP-9550c68d7a2f369b0b8800359142abd620b4c74e.tar.gz
UXP-9550c68d7a2f369b0b8800359142abd620b4c74e.tar.lz
UXP-9550c68d7a2f369b0b8800359142abd620b4c74e.tar.xz
UXP-9550c68d7a2f369b0b8800359142abd620b4c74e.zip
[DOM] Make sure to exit fullscreen mode if popups are opened or focused.
Diffstat (limited to 'dom')
-rw-r--r--dom/base/nsFocusManager.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/dom/base/nsFocusManager.cpp b/dom/base/nsFocusManager.cpp
index fb350fa12..01c1944be 100644
--- a/dom/base/nsFocusManager.cpp
+++ b/dom/base/nsFocusManager.cpp
@@ -1261,6 +1261,15 @@ nsFocusManager::SetFocusInner(nsIContent* aNewContent, int32_t aFlags,
isElementInActiveWindow = (mActiveWindow && newRootWindow == mActiveWindow);
}
+ // Exit fullscreen if a website focuses another window
+ if (!isElementInActiveWindow && aFlags & FLAG_RAISE) {
+ if (nsIDocument* doc = mActiveWindow ? mActiveWindow->GetDoc() : nullptr) {
+ if (doc && doc->GetFullscreenElement()) {
+ nsIDocument::AsyncExitFullscreen(doc);
+ }
+ }
+ }
+
// Exit fullscreen if we're focusing a windowed plugin on a non-MacOSX
// system. We don't control event dispatch to windowed plugins on non-MacOSX,
// so we can't display the "Press ESC to leave fullscreen mode" warning on