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: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
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/. */
7 function TestObject ()
8 {
9 /* A warm, dry place for properties and methods to live */
10 }
12 TestObject.prototype._y = "<initial y>";
14 Object.defineProperty(TestObject.prototype, "y",
15 {
16 enumerable: true, configurable: true,
17 get: function get_y ()
18 {
19 var rv;
20 if (typeof this._y == "string")
21 rv = "got " + this._y;
22 else
23 rv = this._y;
24 return rv;
25 },
26 set: function set_y (newVal) { this._y = newVal; }
27 });
30 test(new TestObject());
32 function test(t)
33 {
34 enterFunc ("test");
36 printStatus ("Basic Getter/ Setter test");
37 reportCompare ("<initial y>", t._y, "y prototype check");
39 reportCompare ("got <initial y>", t.y, "y getter, before set");
41 t.y = "new y";
42 reportCompare ("got new y", t.y, "y getter, after set");
44 t.y = 2;
45 reportCompare (2, t.y, "y getter, after numeric set");
47 var d = new Date();
48 t.y = d;
49 reportCompare (d, t.y, "y getter, after date set");
51 }