Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"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 }
);