mirror of
				https://github.com/mozilla/gecko-dev.git
				synced 2025-11-04 02:09:05 +02:00 
			
		
		
		
	Renames all instances of the snake_case identifier to camelCase to match more closely to idiomatic JavaScript and to existing conventions throughout the code base. Differential Revision: https://phabricator.services.mozilla.com/D198825
		
			
				
	
	
		
			78 lines
		
	
	
	
		
			2.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			2.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("clicking on pocket button in toolbar");
 | 
						|
  let pocketButton = document.getElementById("save-to-pocket-button");
 | 
						|
  // The panel is created on the fly, so we can't simply wait for focus
 | 
						|
  // inside it.
 | 
						|
  let pocketPanelShowing = BrowserTestUtils.waitForEvent(
 | 
						|
    document,
 | 
						|
    "popupshowing",
 | 
						|
    true
 | 
						|
  );
 | 
						|
  pocketButton.click();
 | 
						|
  await pocketPanelShowing;
 | 
						|
 | 
						|
  checkElements(true, ["customizationui-widget-panel"]);
 | 
						|
  let pocketPanel = document.getElementById("customizationui-widget-panel");
 | 
						|
  is(pocketPanel.state, "showing", "pocket panel is showing");
 | 
						|
 | 
						|
  info("Trigger context menu in a pocket panel element");
 | 
						|
  let contextMenu = document.getElementById("contentAreaContextMenu");
 | 
						|
  is(contextMenu.state, "closed", "context menu popup is closed");
 | 
						|
  let popupShown = BrowserTestUtils.waitForEvent(contextMenu, "popupshown");
 | 
						|
  let popupHidden = BrowserTestUtils.waitForEvent(contextMenu, "popuphidden");
 | 
						|
 | 
						|
  let pocketFrame = pocketPanel.querySelector("browser");
 | 
						|
 | 
						|
  const getReadyState = async frame =>
 | 
						|
    SpecialPowers.spawn(frame, [], () => content.document.readyState);
 | 
						|
 | 
						|
  // Ensure Pocket panel is ready to avoid intermittency.
 | 
						|
  await TestUtils.waitForCondition(
 | 
						|
    async () => (await getReadyState(pocketFrame)) == "complete"
 | 
						|
  );
 | 
						|
 | 
						|
  // Ensure that the document layout has been flushed before triggering the mouse event
 | 
						|
  // (See Bug 1519808 for a rationale).
 | 
						|
  await pocketFrame.ownerGlobal.promiseDocumentFlushed(() => {});
 | 
						|
  await BrowserTestUtils.synthesizeMouseAtCenter(
 | 
						|
    "body",
 | 
						|
    {
 | 
						|
      type: "contextmenu",
 | 
						|
      button: 2,
 | 
						|
    },
 | 
						|
    pocketFrame
 | 
						|
  );
 | 
						|
 | 
						|
  await popupShown;
 | 
						|
  is(contextMenu.state, "open", "context menu popup is open");
 | 
						|
  const emeLearnMoreContextItem = contextMenu.querySelector(
 | 
						|
    "#context-media-eme-learnmore"
 | 
						|
  );
 | 
						|
  ok(
 | 
						|
    BrowserTestUtils.isHidden(emeLearnMoreContextItem),
 | 
						|
    "Unrelated context menu items should be hidden"
 | 
						|
  );
 | 
						|
 | 
						|
  contextMenu.hidePopup();
 | 
						|
  await popupHidden;
 | 
						|
 | 
						|
  info("closing pocket panel");
 | 
						|
  let pocketPanelHidden = BrowserTestUtils.waitForEvent(
 | 
						|
    pocketPanel,
 | 
						|
    "popuphidden"
 | 
						|
  );
 | 
						|
  pocketPanel.hidePopup();
 | 
						|
  await pocketPanelHidden;
 | 
						|
  checkElements(false, ["customizationui-widget-panel"]);
 | 
						|
 | 
						|
  BrowserTestUtils.removeTab(tab);
 | 
						|
});
 |