mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
15
dom/workers/test/script_createFile.js
Normal file
15
dom/workers/test/script_createFile.js
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
var { classes: Cc, interfaces: Ci, utils: Cu } = Components;
|
||||
Cu.importGlobalProperties(["File", "Directory"]);
|
||||
|
||||
addMessageListener("file.open", function (e) {
|
||||
var tmpFile = Cc["@mozilla.org/file/directory_service;1"]
|
||||
.getService(Ci.nsIDirectoryService)
|
||||
.QueryInterface(Ci.nsIProperties)
|
||||
.get('TmpD', Ci.nsIFile)
|
||||
tmpFile.append('file.txt');
|
||||
tmpFile.createUnique(Components.interfaces.nsIFile.FILE_TYPE, 0o600);
|
||||
|
||||
sendAsyncMessage("file.opened", {
|
||||
data: File.createFromNsIFile(tmpFile)
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue