js/xpconnect/tests/unit/test_bug845201.js

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 function sbTest() {
     2   var threw = false;
     3   try {
     4     for (var x in Components) { }
     5     do_check_true(false, "Shouldn't be able to enumerate Components");
     6   } catch(e) {
     7     do_check_true(true, "Threw appropriately");
     8     threw = true;
     9   }
    10   do_check_true(threw, "Shouldn't have thrown uncatchable exception");
    11 }
    13 function run_test() {
    14   var sb = Components.utils.Sandbox('http://www.example.com', { wantComponents: true });
    15   sb.do_check_true = do_check_true;
    16   Components.utils.evalInSandbox(sbTest.toSource(), sb);
    17   Components.utils.evalInSandbox('sbTest();', sb);
    18 }

mercurial