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 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommons.org/licenses/publicdomain/
4 */
6 /*
7 * Bug 648355: Function.prototype.isGenerator
8 */
10 reportCompare(true, "isGenerator" in Function.prototype, "Function.prototype.isGenerator present");
12 reportCompare(false, (function(){}).isGenerator(), "lambda is not a generator fn");
13 reportCompare(false, Function.prototype.toString.isGenerator(), "native is not a generator fn");
14 reportCompare(false, (function(){with(obj){}}).isGenerator(), "heavyweight is not a generator fn");
15 reportCompare(false, (function(){obj}).isGenerator(), "upvar function is not a generator fn");
17 reportCompare(true, (function(){yield}).isGenerator(), "simple generator fn");
18 reportCompare(true, (function(){with(obj){yield}}).isGenerator(), "heavyweight generator fn");
19 reportCompare(true, (function(){yield; obj}).isGenerator(), "upvar generator fn");
21 reportCompare(false, Function.prototype.isGenerator.call(42), "number is not a generator fn");
22 reportCompare(false, Function.prototype.isGenerator.call({}), "vanilla object is not a generator fn");
23 reportCompare(false, Function.prototype.isGenerator.call(new Date()), "date object is not a generator fn");