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.
2 /* Make sure ints are converted to doubles as needed at the head of loops which modify those ints. */
4 function bar() {}
6 function foo() {
7 var n = 0.5;
8 n -= 0.5;
9 var iters = 0;
10 for (var i = n;; ) {
11 bar();
12 iters++;
13 if (i == 100)
14 break;
15 i = (i + 1) | 0;
16 }
17 assertEq(iters, 101);
18 }
19 foo();