Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 "use strict";
3 Components.utils.import("resource://gre/modules/osfile.jsm");
5 /**
6 * A trivial test ensuring that we can call osfile from xpcshell.
7 * (see bug 808161)
8 */
10 function run_test() {
11 do_test_pending();
12 OS.File.getCurrentDirectory().then(
13 do_test_finished,
14 do_test_finished
15 );
16 }