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 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 /*
7 * Date: 26 November 2000
8 *
9 *
10 *SUMMARY: Passing a RegExp object to a RegExp() constructor.
11 *This test arose from Bugzilla bug 61266. The ECMA3 section is:
12 *
13 * 15.10.4.1 new RegExp(pattern, flags)
14 *
15 * If pattern is an object R whose [[Class]] property is "RegExp" and
16 * flags is undefined, then let P be the pattern used to construct R
17 * and let F be the flags used to construct R. If pattern is an object R
18 * whose [[Class]] property is "RegExp" and flags is not undefined,
19 * then throw a TypeError exception. Otherwise, let P be the empty string
20 * if pattern is undefined and ToString(pattern) otherwise, and let F be
21 * the empty string if flags is undefined and ToString(flags) otherwise.
22 *
23 *
24 *The current test will check the first scenario outlined above:
25 *
26 * "pattern" is itself a RegExp object R
27 * "flags" is undefined
28 *
29 * We check that a new RegExp object obj2 defined from these parameters
30 * is morally the same as the original RegExp object obj1. Of course, they
31 * can't be equal as objects - so we check their enumerable properties...
32 *
33 * In this test, the initial RegExp object obj1 will not include a
34 * flag. The flags parameter for obj2 will be undefined in the sense
35 * of not being provided.
36 */
37 //-----------------------------------------------------------------------------
38 var BUGNUMBER = '61266';
39 var summary = 'Passing a RegExp object to a RegExp() constructor';
40 var statprefix = 'Applying RegExp() twice to pattern ';
41 var statsuffix = '; testing property ';
42 var singlequote = "'";
43 var i = -1; var s = '';
44 var obj1 = {}; var obj2 = {};
45 var status = ''; var actual = ''; var expect = ''; var msg = '';
46 var patterns = new Array();
49 // various regular expressions to try -
50 patterns[0] = '';
51 patterns[1] = 'abc';
52 patterns[2] = '(.*)(3-1)\s\w';
53 patterns[3] = '(.*)(...)\\s\\w';
54 patterns[4] = '[^A-Za-z0-9_]';
55 patterns[5] = '[^\f\n\r\t\v](123.5)([4 - 8]$)';
59 //-----------------------------------------------------------------------------
60 test();
61 //-----------------------------------------------------------------------------
64 function test()
65 {
66 enterFunc ('test');
67 printBugNumber(BUGNUMBER);
68 printStatus (summary);
70 for (i in patterns)
71 {
72 s = patterns[i];
73 status =getStatus(s);
74 obj1 = new RegExp(s);
75 obj2 = new RegExp(obj1);
77 reportCompare (obj1 + '', obj2 + '', status);
78 }
80 exitFunc ('test');
81 }
84 function getStatus(regexp)
85 {
86 return (statprefix + quote(regexp) + statsuffix);
87 }
90 function quote(text)
91 {
92 return (singlequote + text + singlequote);
93 }