Thu, 15 Jan 2015 15:59:08 +0100
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 // |jit-test| error:Error
3 // Binary: cache/js-dbg-64-48e43edc8834-linux
4 // Flags:
5 //
7 function f() {
8 frame = dbg.getNewestFrame();
9 }
10 var g = newGlobal();
11 g.f = function (a, b) { return a + "/" + this . f( ) ; };
12 var dbg = Debugger(g);
13 dbg.onDebuggerStatement = function (frame) {
14 var f = frame.eval("f").return;
15 assertEq(f.call(null, "a", "b").return, "a/b");
16 };
17 g.eval("debugger;");