js/src/jit-test/tests/debug/surfaces-03.js

Thu, 15 Jan 2015 15:59:08 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:59:08 +0100
branch
TOR_BUG_9701
changeset 10
ac0c01689b40
permissions
-rw-r--r--

Implement a real Private Browsing Mode condition by changing the API/ABI;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

     1 // dumb basics of uncaughtExceptionHook
     3 load(libdir + 'asserts.js');
     5 var desc = Object.getOwnPropertyDescriptor(Debugger.prototype, "uncaughtExceptionHook");
     6 assertEq(typeof desc.get, 'function');
     7 assertEq(typeof desc.set, 'function');
     9 assertThrowsInstanceOf(function () { Debugger.prototype.uncaughtExceptionHook = null; }, TypeError);
    11 var g = newGlobal();
    12 var dbg = new Debugger(g);
    13 assertEq(desc.get.call(dbg), null);
    14 assertThrowsInstanceOf(function () { dbg.uncaughtExceptionHook = []; }, TypeError);
    15 assertThrowsInstanceOf(function () { dbg.uncaughtExceptionHook = 3; }, TypeError);
    16 dbg.uncaughtExceptionHook = Math.sin;
    17 assertEq(dbg.uncaughtExceptionHook, Math.sin);
    18 dbg.uncaughtExceptionHook = null;
    19 assertEq(dbg.uncaughtExceptionHook, null);

mercurial