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 // Test removing hooks during dispatch.
3 var g = newGlobal();
4 var log = '';
6 function addDebug(n) {
7 for (var i = 0; i < n; i++) {
8 var dbg = new Debugger(g);
9 dbg.num = i;
10 dbg.onDebuggerStatement = function (stack) {
11 log += this.num + ', ';
12 this.enabled = false;
13 this.onDebuggerStatement = undefined;
14 gc();
15 };
16 }
17 dbg = null;
18 }
20 addDebug(10);
21 g.eval("debugger;");
22 assertEq(log, '0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ');