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.
michael@0 | 1 | function strings() |
michael@0 | 2 | { |
michael@0 | 3 | var a = [], b = -1; |
michael@0 | 4 | var s = "abcdefghij", s2 = "a"; |
michael@0 | 5 | var f = "f"; |
michael@0 | 6 | var c = 0, d = 0, e = 0, g = 0; |
michael@0 | 7 | for (var i = 0; i < 10; i++) { |
michael@0 | 8 | a[i] = (s.substring(i, i+1) + s[i] + String.fromCharCode(s2.charCodeAt(0) + i)).concat(i) + i; |
michael@0 | 9 | if (s[i] == f) |
michael@0 | 10 | c++; |
michael@0 | 11 | if (s[i] != 'b') |
michael@0 | 12 | d++; |
michael@0 | 13 | if ("B" > s2) |
michael@0 | 14 | g++; // f already used |
michael@0 | 15 | if (s2 < "b") |
michael@0 | 16 | e++; |
michael@0 | 17 | b = s.length; |
michael@0 | 18 | } |
michael@0 | 19 | return a.toString() + b + c + d + e + g; |
michael@0 | 20 | } |
michael@0 | 21 | assertEq(strings(), "aaa00,bbb11,ccc22,ddd33,eee44,fff55,ggg66,hhh77,iii88,jjj991019100"); |