|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <!-- |
|
4 https://bugzilla.mozilla.org/show_bug.cgi?id=650776 |
|
5 --> |
|
6 <head> |
|
7 <meta charset="utf-8"> |
|
8 <title>Test for Bug 914381</title> |
|
9 <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> |
|
10 <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/> |
|
11 </head> |
|
12 <body> |
|
13 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=914381">Mozilla Bug 914381</a> |
|
14 <p id="display"></p> |
|
15 <div id="content" style="display: none"> |
|
16 </div> |
|
17 <pre id="test"> |
|
18 <script type="application/javascript"> |
|
19 const Cc = Components.classes; |
|
20 const Ci = Components.interfaces; |
|
21 |
|
22 function createFileWithData(fileData) { |
|
23 var dirSvc = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties); |
|
24 var testFile = dirSvc.get("ProfD", Ci.nsIFile); |
|
25 testFile.append("testBug914381"); |
|
26 |
|
27 var outStream = Cc["@mozilla.org/network/file-output-stream;1"].createInstance(Ci.nsIFileOutputStream); |
|
28 outStream.init(testFile, 0x02 | 0x08 | 0x20, // write, create, truncate |
|
29 0666, 0); |
|
30 outStream.write(fileData, fileData.length); |
|
31 outStream.close(); |
|
32 |
|
33 return testFile; |
|
34 } |
|
35 |
|
36 /** Test for Bug 914381. DOMFile's created in JS using an nsIFile should allow mozGetFullPathInternal calls to succeed **/ |
|
37 var file = createFileWithData("Test bug 914381"); |
|
38 var f = File(file); |
|
39 is(f.mozFullPathInternal, undefined, "mozFullPathInternal is undefined from js"); |
|
40 is(f.mozFullPath, file.path, "mozFullPath returns path if created with nsIFile"); |
|
41 |
|
42 f = File(file.path); |
|
43 is(f.mozFullPathInternal, undefined, "mozFullPathInternal is undefined from js"); |
|
44 is(f.mozFullPath, "", "mozFullPath returns blank if created with a string"); |
|
45 </script> |
|
46 </pre> |
|
47 </body> |
|
48 </html> |