mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-01 00:38:50 +02:00
This should make a bit clearer that it is only starting the load, not waiting for its completion. Differential Revision: https://phabricator.services.mozilla.com/D188213
23 lines
689 B
JavaScript
23 lines
689 B
JavaScript
// Check that entering moz://a into the address bar directs us to a new url
|
|
add_task(async function () {
|
|
let path = getRootDirectory(gTestPath).substring(
|
|
"chrome://mochitests/content/".length
|
|
);
|
|
await SpecialPowers.pushPrefEnv({
|
|
set: [
|
|
[
|
|
"toolkit.mozprotocol.url",
|
|
`https://example.com/${path}mozprotocol.html`,
|
|
],
|
|
],
|
|
});
|
|
|
|
await BrowserTestUtils.withNewTab("about:blank", async function () {
|
|
BrowserTestUtils.startLoadingURIString(gBrowser, "moz://a");
|
|
await BrowserTestUtils.waitForLocationChange(
|
|
gBrowser,
|
|
`https://example.com/${path}mozprotocol.html`
|
|
);
|
|
ok(true, "Made it to the expected page");
|
|
});
|
|
});
|