Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'linux' && os_version == '24.04' && arch == 'x86_64' && display == 'x11' && opt OR os == 'mac' && os_version == '10.15' && arch == 'x86_64' OR os == 'mac' && os_version == '14.70' && arch == 'x86_64' OR os == 'mac' && os_version == '15.30' && arch == 'aarch64'
- Manifest: browser/base/content/test/browser-general/browser.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
add_task(async function () {
// eslint-disable-next-line sdl/no-insecure-url
await BrowserTestUtils.browserLoaded(newTab.linkedBrowser);
gBrowser.pinTab(newTab);
gBrowser.selectedTab = newTab;
openTrustedLinkIn("javascript:var x=0;", "current");
is(gBrowser.tabs.length, 2, "Should open in current tab");
// eslint-disable-next-line sdl/no-insecure-url
is(gBrowser.tabs.length, 2, "Should open in current tab");
// eslint-disable-next-line sdl/no-insecure-url
is(gBrowser.tabs.length, 3, "Should open in new tab");
await BrowserTestUtils.removeTab(newTab);
await BrowserTestUtils.removeTab(gBrowser.tabs[1]); // example.org tab
});