1
0
Fork 0
firefox/devtools/client/responsive/test/browser/browser_cmd_click.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

33 lines
839 B
JavaScript

/* 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 }
);