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 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/licenses/publicdomain/
4 */
6 var o = {__iterator__:null, a:1, b:2, c:3}
7 var expect = '__iterator__,a,b,c,';
8 var actual = '';
10 try {
11 for (var i in o)
12 actual += i + ',';
13 } catch (e) {
14 actual = '' + e;
15 if (/invalid __iterator__ value/.test(actual) ||
16 /null is not a function/.test(actual)) {
17 expect = actual;
18 }
19 }
21 reportCompare(expect, actual, "ok");