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 var BUGNUMBER = 412926;
8 var summary = 'JS_ValueToId(cx, JSVAL_NULL) should return atom for "null" string';
9 var actual = '';
10 var expect = '';
13 //-----------------------------------------------------------------------------
14 test();
15 //-----------------------------------------------------------------------------
17 function test()
18 {
19 enterFunc ('test');
20 printBugNumber(BUGNUMBER);
21 printStatus (summary);
23 actual = expect = 'No Errors';
25 var obj = { 'null': 1 };
27 var errors = [];
29 if (!obj.hasOwnProperty(null))
30 errors.push('null property is not owned');
32 if (!obj.propertyIsEnumerable(null))
33 errors.push('null property is not enumerable');
35 var getter_was_called = false;
36 obj.__defineGetter__(null, function() { getter_was_called = true; return 1; });
37 obj['null'];
39 if (!getter_was_called)
40 errors.push('getter was not assigned to the null property');
42 var setter_was_called = false;
43 obj.__defineSetter__(null, function() { setter_was_called = true; });
44 obj['null'] = 2;
46 if (!setter_was_called)
47 errors.push('setter was not assigned to the null property');
49 if (errors.length)
50 actual = errors.join('; ');
52 gc();
54 reportCompare(expect, actual, summary);
56 exitFunc ('test');
57 }