Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
"use strict";
const TEST_PAGE_1 =
const TEST_PAGE_2 =
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
add_task(async function test() {
await BrowserTestUtils.withNewTab(TEST_PAGE_1, async function (browser) {
let loaded = BrowserTestUtils.browserLoaded(browser, false, TEST_PAGE_2);
await SpecialPowers.spawn(browser, [], () => {
content.addEventListener("unload", e => e.currentTarget.stop(), true);
});
BrowserTestUtils.startLoadingURIString(browser, TEST_PAGE_2);
await loaded;
ok(true, "Page loaded successfully");
});
});