summaryrefslogtreecommitdiffstats
path: root/dom/html/test/script_fakepath.js
blob: c42fa861df83043c79be23cf68fbf7cd418a8ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
Cu.importGlobalProperties(["File"]);

addMessageListener("file.open", function(e) {
  var tmpFile = Cc["@mozilla.org/file/directory_service;1"]
    .getService(Ci.nsIDirectoryService)
    .QueryInterface(Ci.nsIProperties)
    .get("ProfD", Ci.nsIFile);
  tmpFile.append("prefs.js");

  File.createFromNsIFile(tmpFile).then(file => {
    sendAsyncMessage("file.opened", { data: [file] });
  });
});