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 NPList() {}
2 NPList.prototype = new Array;
4 var list = new NPList();
5 list.push('a');
7 var cut = list.splice(0, 1);
9 assertEq(cut[0], 'a');
10 assertEq(cut.length, 1);
11 assertEq(list.length, 0);
13 var desc = Object.getOwnPropertyDescriptor(list, "0");
14 assertEq(desc, undefined);
15 assertEq("0" in list, false);