1
0
Fork 0
firefox/chrome/test/unit/test_crlf.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
455 B
JavaScript

registerManifests([do_get_file("data/test_crlf.manifest")]);
function run_test() {
let cr = Cc["@mozilla.org/chrome/chrome-registry;1"].getService(
Ci.nsIChromeRegistry
);
let sourceURI = Services.io.newURI("chrome://test_crlf/content/");
// this throws for packages that are not registered
let file = cr.convertChromeURL(sourceURI).QueryInterface(Ci.nsIFileURL).file;
Assert.ok(file.equals(do_get_file("data/test_crlf.xul", true)));
}