blob: 5d07747543c35eff50b2e1f83a1e16bab9ea2fda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
add_task(async function test_multiple_pushState() {
await BrowserTestUtils.withNewTab(
{
gBrowser,
url:
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
"http://example.org/browser/docshell/test/browser/file_multiple_pushState.html",
},
async function (browser) {
// eslint-disable-next-line @microsoft/sdl/no-insecure-url
const kExpected = "http://example.org/bar/ABC/DEF?key=baz";
let contentLocation = await SpecialPowers.spawn(
browser,
[],
async function () {
return content.document.location.href;
}
);
is(contentLocation, kExpected);
is(browser.documentURI.spec, kExpected);
}
);
});
|