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 function f() {
2 var x = undefined;
3 try {
4 [1, 2, 3].map(x);
5 assertEq(0, 1);
6 } catch(e) {
7 assertEq(e.toString().contains("x is not"), true);
8 }
10 try {
11 [1, 2, 3].filter(x, 1, 2);
12 assertEq(0, 1);
13 } catch(e) {
14 assertEq(e.toString().contains("x is not"), true);
15 }
16 }
17 f();