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

Sat, 03 Jan 2015 20:18:00 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Sat, 03 Jan 2015 20:18:00 +0100
branch
TOR_BUG_3246
changeset 7
129ffea94266
permissions
-rw-r--r--

Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.

     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