js/src/jit-test/tests/debug/Object-evalInGlobal-07.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 // evalInGlobal correctly handles optional custom url option
     2 var g = newGlobal();
     3 var dbg = new Debugger(g);
     4 var debuggee = dbg.getDebuggees()[0];
     5 var count = 0;
     7 function testUrl (options, expected) {
     8     count++;
     9     dbg.onNewScript = function(script){
    10         dbg.onNewScript = undefined;
    11         assertEq(script.url, expected);
    12         count--;
    13     };
    14     debuggee.evalInGlobal("", options);
    15 }
    18 testUrl(undefined, "debugger eval code");
    19 testUrl(null, "debugger eval code");
    20 testUrl({ url: undefined }, "debugger eval code");
    21 testUrl({ url: null }, "null");
    22 testUrl({ url: 5 }, "5");
    23 testUrl({ url: "test" }, "test");
    24 assertEq(count, 0);

mercurial