summaryrefslogtreecommitdiffstats
path: root/chrome/test/unit/test_crlf.js
blob: b577c49a9ca78a39c539d125e1ad42011b4a67e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)));
}