mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
be2b50a7f8
Be warned. Do not attemp to change the .js "test" source code in ./js They are meant to check - the outdated 0666 octal constant is still parsed correctly, - the outdated 0666 octal constant raises syntax error flag in strict mode, etc. So leave them alone.
27 lines
905 B
JavaScript
27 lines
905 B
JavaScript
var { classes: Cc, interfaces: Ci, utils: Cu } = Components;
|
|
Cu.importGlobalProperties(["File"]);
|
|
|
|
function createFileWithData(message) {
|
|
var dirSvc = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
|
|
var testFile = dirSvc.get("ProfD", Ci.nsIFile);
|
|
testFile.append("fileAPItestfileBug1198095");
|
|
|
|
var outStream = Cc["@mozilla.org/network/file-output-stream;1"].createInstance(Ci.nsIFileOutputStream);
|
|
outStream.init(testFile, 0x02 | 0x08 | 0x20, // write, create, truncate
|
|
0o666, 0);
|
|
|
|
outStream.write(message, message.length);
|
|
outStream.close();
|
|
|
|
var domFile = new File(testFile);
|
|
return domFile;
|
|
}
|
|
|
|
addMessageListener("file.open", function (message) {
|
|
sendAsyncMessage("file.opened", createFileWithData(message));
|
|
});
|
|
|
|
addMessageListener("file.modify", function (message) {
|
|
sendAsyncMessage("file.modified", createFileWithData(message));
|
|
});
|