Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

add_task(async function test_multiple_pushState() {
await BrowserTestUtils.withNewTab(
{
gBrowser,
url:
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
},
async function (browser) {
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
let contentLocation = await SpecialPowers.spawn(
browser,
[],
async function () {
return content.document.location.href;
}
);
is(contentLocation, kExpected);
is(browser.documentURI.spec, kExpected);
}
);
});