Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
1 // Test removing hooks during dispatch.
3 var g = newGlobal();
4 var log = '';
6 function addDebug(n) {
7 for (var i = 0; i < n; i++) {
8 var dbg = new Debugger(g);
9 dbg.num = i;
10 dbg.onDebuggerStatement = function (stack) {
11 log += this.num + ', ';
12 this.enabled = false;
13 this.onDebuggerStatement = undefined;
14 gc();
15 };
16 }
17 dbg = null;
18 }
20 addDebug(10);
21 g.eval("debugger;");
22 assertEq(log, '0, 1, 2, 3, 4, 5, 6, 7, 8, 9, ');