js/src/jit-test/tests/debug/Debugger-onNewGlobalObject-14.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 // Globals passed to onNewGlobalObject handers are ready for use immediately.
     3 var dbg = new Debugger;
     4 var log = '';
     5 dbg.onNewGlobalObject = function (global) {
     6   log += 'n';
     7   var gw = dbg.addDebuggee(global);
     8   gw.defineProperty('x', { value: -1 });
     9   // Check that the global's magic lazy properties are working.
    10   assertEq(gw.evalInGlobalWithBindings('Math.atan2(y,x)', { y: 0 }).return, Math.PI);
    11   // Check that the global's prototype is hooked up.
    12   assertEq(gw.evalInGlobalWithBindings('x.toString()', { x: gw }).return, "[object global]");
    13 };
    15 newGlobal();
    17 assertEq(log, 'n');

mercurial