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 | // |reftest| skip-if(!xulRuntime.shell) |
michael@0 | 2 | // -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- |
michael@0 | 3 | // Any copyright is dedicated to the Public Domain. |
michael@0 | 4 | // http://creativecommons.org/licenses/publicdomain/ |
michael@0 | 5 | |
michael@0 | 6 | function testRegExp(b) { |
michael@0 | 7 | var a = deserialize(serialize(b)); |
michael@0 | 8 | assertEq(a === b, false); |
michael@0 | 9 | assertEq(Object.getPrototypeOf(a), RegExp.prototype); |
michael@0 | 10 | assertEq(Object.prototype.toString.call(a), "[object RegExp]"); |
michael@0 | 11 | for (p in a) |
michael@0 | 12 | throw new Error("cloned RegExp should have no enumerable properties"); |
michael@0 | 13 | |
michael@0 | 14 | assertEq(a.source, b.source); |
michael@0 | 15 | assertEq(a.global, b.global); |
michael@0 | 16 | assertEq(a.ignoreCase, b.ignoreCase); |
michael@0 | 17 | assertEq(a.multiline, b.multiline); |
michael@0 | 18 | assertEq(a.sticky, b.sticky); |
michael@0 | 19 | assertEq("expando" in a, false); |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | testRegExp(RegExp("")); |
michael@0 | 23 | testRegExp(/(?:)/); |
michael@0 | 24 | testRegExp(/^(.*)$/gimy); |
michael@0 | 25 | testRegExp(RegExp.prototype); |
michael@0 | 26 | |
michael@0 | 27 | var re = /\bx\b/gi; |
michael@0 | 28 | re.expando = true; |
michael@0 | 29 | testRegExp(re); |
michael@0 | 30 | re.__proto__ = {}; |
michael@0 | 31 | testRegExp(re); |
michael@0 | 32 | |
michael@0 | 33 | reportCompare(0, 0, 'ok'); |