|
1 <?xml version="1.0"?> |
|
2 <?xml-stylesheet href="chrome://global/skin" type="text/css"?> |
|
3 <?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" |
|
4 type="text/css"?> |
|
5 <window title="Mozilla Bug 596580" |
|
6 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
|
7 <script type="application/javascript" |
|
8 src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> |
|
9 |
|
10 <!-- test results are displayed in the html:body --> |
|
11 <body xmlns="http://www.w3.org/1999/xhtml"> |
|
12 <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=596580" |
|
13 target="_blank">Mozilla Bug 596580</a> |
|
14 </body> |
|
15 |
|
16 <!-- test code goes here --> |
|
17 <script type="application/x-javascript;version=1.8"><![CDATA[ |
|
18 function init() { |
|
19 var f = new Function("let test = 'let is ok'; return test;"); |
|
20 is(f(), 'let is ok', 'let should be ok'); |
|
21 SimpleTest.finish(); |
|
22 } |
|
23 |
|
24 Test = { |
|
25 include: function(p) { |
|
26 var sawError = false; |
|
27 try { |
|
28 Components.classes["@mozilla.org/moz/jssubscript-loader;1"]. |
|
29 getService(Components.interfaces["mozIJSSubScriptLoader"]). |
|
30 loadSubScript(p); |
|
31 } catch (e) { |
|
32 sawError = true; |
|
33 } |
|
34 ok(sawError, 'should receive an error loading a not-found file'); |
|
35 } |
|
36 }; |
|
37 |
|
38 // If the include method is defined as a global function, it works. |
|
39 // try to load a non existing file to produce the error |
|
40 Test.include("notfound.js"); |
|
41 |
|
42 // If init is called directly, it works. |
|
43 setTimeout('init();', 0); |
|
44 |
|
45 SimpleTest.waitForExplicitFinish(); |
|
46 |
|
47 ]]></script> |
|
48 </window> |