tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_bug1151385.js (197B)


      1 function run_test()
      2 {
      3  try {
      4    var sandbox = new Cu.Sandbox(null, {"sandboxPrototype" : {}});
      5    Assert.ok(false);
      6  } catch (e) {
      7    Assert.ok(/must subsume sandboxPrototype/.test(e));
      8  }
      9 }