forked from mirrors/gecko-dev
		
	Move most the event handling stuff to the DOM. I've left nsMenuBarFrame
for now, but I will be removing that in the future.
The basic set up is:
  * nsMenuParent becomes XULMenuParentElement (menubar or popup, manages
    the current active menu item)
  * nsMenuFrame -> XULButtonElements that return true for IsMenu().
    Can't use XULMenuElement because of <button type=menu>, which
    behaves like a, well, menu.
This makes the a11y events for menus (DOMMenuItem{Active,Inactive}) make
sense (before that we were firing duplicate Inactive events etc, and the
event order was rather suspicious).
Differential Revision: https://phabricator.services.mozilla.com/D164210
		
	
			
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* Any copyright is dedicated to the Public Domain.
 | 
						|
 * http://creativecommons.org/publicdomain/zero/1.0/ */
 | 
						|
"use strict";
 | 
						|
 | 
						|
add_task(async function() {
 | 
						|
  let tab = await BrowserTestUtils.openNewForegroundTab(
 | 
						|
    gBrowser,
 | 
						|
    "https://example.com/browser/browser/components/pocket/test/test.html"
 | 
						|
  );
 | 
						|
 | 
						|
  info("opening context menu");
 | 
						|
  let contextMenu = document.getElementById("contentAreaContextMenu");
 | 
						|
  let popupShown = BrowserTestUtils.waitForEvent(contextMenu, "popupshown");
 | 
						|
  let popupHidden = BrowserTestUtils.waitForEvent(contextMenu, "popuphidden");
 | 
						|
 | 
						|
  await BrowserTestUtils.synthesizeMouseAtCenter(
 | 
						|
    "body",
 | 
						|
    {
 | 
						|
      type: "contextmenu",
 | 
						|
      button: 2,
 | 
						|
    },
 | 
						|
    tab.linkedBrowser
 | 
						|
  );
 | 
						|
  await popupShown;
 | 
						|
 | 
						|
  info("opening pocket panel");
 | 
						|
  let contextPocket = contextMenu.querySelector("#context-pocket");
 | 
						|
  // The panel is created on the fly, so we can't simply wait for focus
 | 
						|
  // inside it.
 | 
						|
  let pocketPanelShown = BrowserTestUtils.waitForEvent(
 | 
						|
    document,
 | 
						|
    "popupshown",
 | 
						|
    true
 | 
						|
  );
 | 
						|
  contextMenu.activateItem(contextPocket);
 | 
						|
  await pocketPanelShown;
 | 
						|
  checkElements(true, ["customizationui-widget-panel"]);
 | 
						|
 | 
						|
  info("closing pocket panel");
 | 
						|
  let pocketPanel = document.getElementById("customizationui-widget-panel");
 | 
						|
  let pocketPanelHidden = BrowserTestUtils.waitForEvent(
 | 
						|
    pocketPanel,
 | 
						|
    "popuphidden"
 | 
						|
  );
 | 
						|
 | 
						|
  pocketPanel.hidePopup();
 | 
						|
  await pocketPanelHidden;
 | 
						|
  checkElements(false, ["customizationui-widget-panel"]);
 | 
						|
 | 
						|
  contextMenu.hidePopup();
 | 
						|
  await popupHidden;
 | 
						|
  BrowserTestUtils.removeTab(tab);
 | 
						|
});
 |