forked from mirrors/gecko-dev
		
	 94b1ab321c
			
		
	
	
		94b1ab321c
		
	
	
	
	
		
			
			This includes a containers.json version increment and the necessary migration, as the StringBundle identifiers are replaced with a Fluent reference. As it's not possible to filter the attributes that are applied with DOM localization, the code in utilityOverlay.js is a little clumsy. The non-acceskey versions are needed due to bug 1297738, i.e. the long-press menu available from the tab bar down arrow. Previously, the "Manage containers" menu item and its accesskey were defined in two places. These are here combined into one. Differential Revision: https://phabricator.services.mozilla.com/D194510
		
			
				
	
	
		
			43 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			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/. -->
 | |
| 
 | |
| <html:template id="allTabsMenu-container">
 | |
|   <panelview id="allTabsMenu-allTabsView" class="PanelUI-subView">
 | |
|     <vbox class="panel-subview-body">
 | |
|       <toolbarbutton id="allTabsMenu-searchTabs"
 | |
|                      class="subviewbutton"
 | |
|                      oncommand="gTabsPanel.searchTabs();"
 | |
|                      data-l10n-id="all-tabs-menu-search-tabs"/>
 | |
|       <toolbarbutton id="allTabsMenu-containerTabsButton"
 | |
|                      class="subviewbutton subviewbutton-nav"
 | |
|                      closemenu="none"
 | |
|                      oncommand="PanelUI.showSubView('allTabsMenu-containerTabsView', this);"
 | |
|                      data-l10n-id="all-tabs-menu-new-user-context"/>
 | |
|       <toolbarseparator id="allTabsMenu-hiddenTabsSeparator"/>
 | |
|       <toolbarbutton id="allTabsMenu-hiddenTabsButton"
 | |
|                      class="subviewbutton subviewbutton-nav"
 | |
|                      closemenu="none"
 | |
|                      oncommand="PanelUI.showSubView('allTabsMenu-hiddenTabsView', this);"
 | |
|                      data-l10n-id="all-tabs-menu-hidden-tabs"/>
 | |
|       <toolbarseparator id="allTabsMenu-tabsSeparator"/>
 | |
|       <vbox id="allTabsMenu-dropIndicatorHolder">
 | |
|         <vbox id="allTabsMenu-dropIndicator" collapsed="true"/>
 | |
|       </vbox>
 | |
|       <vbox id="allTabsMenu-allTabsView-tabs" class="panel-subview-body"/>
 | |
|     </vbox>
 | |
|   </panelview>
 | |
| 
 | |
|   <panelview id="allTabsMenu-hiddenTabsView" class="PanelUI-subView">
 | |
|     <vbox id="allTabsMenu-hiddenTabsView-tabs" class="panel-subview-body"/>
 | |
|   </panelview>
 | |
| 
 | |
|   <panelview id="allTabsMenu-containerTabsView" class="PanelUI-subView">
 | |
|     <vbox class="panel-subview-body">
 | |
|       <toolbarseparator class="container-tabs-submenu-separator"/>
 | |
|       <toolbarbutton class="subviewbutton"
 | |
|                      data-l10n-id="user-context-manage-containers"
 | |
|                      command="Browser:OpenAboutContainers"/>
 | |
|     </vbox>
 | |
|   </panelview>
 | |
| </html:template>
 |