js/xpconnect/tests/chrome/test_bug596580.xul

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     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>
    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>
    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     }
    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     };
    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");
    42     // If init is called directly, it works.
    43     setTimeout('init();', 0);
    45     SimpleTest.waitForExplicitFinish();
    47   ]]></script>
    48 </window>

mercurial