Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: verify && debug && os == 'linux' OR os == 'mac' OR os == 'linux' && !debug
- Manifest: browser/base/content/test/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 @microsoft/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 @microsoft/sdl/no-insecure-url
is(gBrowser.tabs.length, 2, "Should open in current tab");
// eslint-disable-next-line @microsoft/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
});