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 // Binary: cache/js-dbg-64-1210706b4576-linux
2 // Flags:
3 //
5 this.__proto__ = null;
6 Object.prototype.__proto__ = this;
7 function exploreProperties(obj) {
8 var props = [];
9 for (var o = obj; o; o = Object.getPrototypeOf(o)) {
10 props = props.concat(Object.getOwnPropertyNames(o));
11 }
12 for (var i = 0; i < props.length; ++i) {
13 var p = props[i];
14 var v = obj[p];
15 }
16 }
17 var c = [{}];
18 exploreProperties(c);