blob: 73045d3201f94986ea3d7287303c35509a206128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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)));
}
|