Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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);