summaryrefslogtreecommitdiffstats
path: root/chrome/test/unit/test_crlf.js
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/unit/test_crlf.js')
-rw-r--r--chrome/test/unit/test_crlf.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/chrome/test/unit/test_crlf.js b/chrome/test/unit/test_crlf.js
new file mode 100644
index 000000000..b577c49a9
--- /dev/null
+++ b/chrome/test/unit/test_crlf.js
@@ -0,0 +1,15 @@
+registerManifests([do_get_file("data/test_crlf.manifest")]);
+
+function run_test()
+{
+ let cr = Cc["@mozilla.org/chrome/chrome-registry;1"].
+ getService(Ci.nsIChromeRegistry);
+
+ let ios = Cc["@mozilla.org/network/io-service;1"].
+ getService(Ci.nsIIOService);
+ let sourceURI = ios.newURI("chrome://test_crlf/content/", null, null);
+ // this throws for packages that are not registered
+ let file = cr.convertChromeURL(sourceURI).QueryInterface(Ci.nsIFileURL).file;
+
+ do_check_true(file.equals(do_get_file("data/test_crlf.xul", true)));
+}