forked from mirrors/gecko-dev
		
	 be1eb3c4b8
			
		
	
	
		be1eb3c4b8
		
	
	
	
	
		
			
			The result of running the automated script available at https://github.com/Mossop/depi Differential Revision: https://phabricator.services.mozilla.com/D190681
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <?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
 | |
| 
 | |
| <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">
 | |
|   <html:link
 | |
|     rel="stylesheet"
 | |
|     href="chrome://browser/skin/webRTC-menubar-indicator.css"
 | |
|   />
 | |
| 
 | |
| #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>
 |