diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /browser/base/content/hiddenWindowMac.xhtml | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/base/content/hiddenWindowMac.xhtml')
-rw-r--r-- | browser/base/content/hiddenWindowMac.xhtml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/browser/base/content/hiddenWindowMac.xhtml b/browser/base/content/hiddenWindowMac.xhtml new file mode 100644 index 0000000000..c27d394d37 --- /dev/null +++ b/browser/base/content/hiddenWindowMac.xhtml @@ -0,0 +1,33 @@ +<?xml version="1.0"?> +# -*- Mode: HTML -*- +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +#define HIDDEN_WINDOW + +<?xml-stylesheet href="chrome://browser/skin/webRTC-menubar-indicator.css" type="text/css"?> + +<window id="main-window" + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" + data-l10n-sync="true"> + +#include macWindow.inc.xhtml + +<!-- Dock menu --> +<popupset> + <!-- Hide this menupopup from the accessibility tree so that we don't fire + any unintended accessibility notifications for it. Accessibility for the + Dock menu is handled natively by macOS. --> + <menupopup id="menu_mac_dockmenu" aria-hidden="true"> + <!-- The command cannot be cmd_newNavigator because we need to activate + the application. --> + <menuitem data-l10n-id="menu-file-new-window" oncommand="OpenBrowserWindowFromDockMenu();" + id="macDockMenuNewWindow" /> + <menuitem data-l10n-id="menu-file-new-private-window" oncommand="OpenBrowserWindowFromDockMenu({private: true});" + id="macDockMenuNewPrivateWindow" /> + </menupopup> +</popupset> + +</window> |