diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /toolkit/components/mozprotocol/tests | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/components/mozprotocol/tests')
-rw-r--r-- | toolkit/components/mozprotocol/tests/browser.toml | 4 | ||||
-rw-r--r-- | toolkit/components/mozprotocol/tests/browser_mozprotocol.js | 23 | ||||
-rw-r--r-- | toolkit/components/mozprotocol/tests/mozprotocol.html | 7 |
3 files changed, 34 insertions, 0 deletions
diff --git a/toolkit/components/mozprotocol/tests/browser.toml b/toolkit/components/mozprotocol/tests/browser.toml new file mode 100644 index 0000000000..06c690c2d5 --- /dev/null +++ b/toolkit/components/mozprotocol/tests/browser.toml @@ -0,0 +1,4 @@ +[DEFAULT] + +["browser_mozprotocol.js"] +support-files = ["mozprotocol.html"] diff --git a/toolkit/components/mozprotocol/tests/browser_mozprotocol.js b/toolkit/components/mozprotocol/tests/browser_mozprotocol.js new file mode 100644 index 0000000000..797292f302 --- /dev/null +++ b/toolkit/components/mozprotocol/tests/browser_mozprotocol.js @@ -0,0 +1,23 @@ +// 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"); + }); +}); diff --git a/toolkit/components/mozprotocol/tests/mozprotocol.html b/toolkit/components/mozprotocol/tests/mozprotocol.html new file mode 100644 index 0000000000..3d6549e00f --- /dev/null +++ b/toolkit/components/mozprotocol/tests/mozprotocol.html @@ -0,0 +1,7 @@ +<!DOCTYPE html> + +<html> +<body> +<p><a id="link" href="moz://a">Test</a></p> +</body> +</html> |