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 actual = '';
2 expected = 'function h(x, y) { return arguments; },2,4,8,';
4 function h(x, y) { return arguments; }
6 var p;
7 for (var i = 0; i < 5; ++i) {
8 p = h(i, i*2);
9 }
10 appendToActual(p.callee);
11 appendToActual(p.length);
12 appendToActual(p[0]);
13 appendToActual(p[1]);
16 assertEq(actual, expected)