summaryrefslogtreecommitdiffstats
path: root/devtools/client/responsive/test/browser/browser_cmd_click.js
blob: 25cdca20a4978546e58336b4958aeb3f547d5590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

// Ensure Cmd/Ctrl-clicking link opens a new tab

const TAB_URL = "https://example.com/";
const TEST_URL = `data:text/html,<a href="${TAB_URL}">Click me</a>`.replace(
  / /g,
  "%20"
);

addRDMTask(
  TEST_URL,
  async function ({ ui }) {
    // Cmd-click the link and wait for a new tab
    await waitForFrameLoad(ui, TEST_URL);
    const newTabPromise = BrowserTestUtils.waitForNewTab(gBrowser, TAB_URL);
    BrowserTestUtils.synthesizeMouseAtCenter(
      "a",
      {
        ctrlKey: true,
        metaKey: true,
      },
      ui.getViewportBrowser()
    );
    const newTab = await newTabPromise;
    ok(newTab, "New tab opened from link");
    await removeTab(newTab);
  },
  { waitForDeviceList: true }
);