mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-07 16:28:38 +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
16
dom/base/test/bug578096LoadChromeScript.js
Normal file
16
dom/base/test/bug578096LoadChromeScript.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
var file;
|
||||
Components.utils.importGlobalProperties(["File"]);
|
||||
|
||||
addMessageListener("file.create", function (message) {
|
||||
file = Components.classes["@mozilla.org/file/directory_service;1"]
|
||||
.getService(Components.interfaces.nsIProperties)
|
||||
.get("TmpD", Components.interfaces.nsIFile);
|
||||
file.append("foo.txt");
|
||||
file.createUnique(Components.interfaces.nsIFile.NORMAL_FILE_TYPE, 0o600);
|
||||
sendAsyncMessage("file.created", File.createFromNsIFile(file));
|
||||
});
|
||||
|
||||
addMessageListener("file.remove", function (message) {
|
||||
file.remove(false);
|
||||
sendAsyncMessage("file.removed", {});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue