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 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | Components.utils.import("resource://gre/modules/XPCOMUtils.jsm"); |
michael@0 | 6 | |
michael@0 | 7 | // Get services. |
michael@0 | 8 | let os = Cc["@mozilla.org/observer-service;1"]. |
michael@0 | 9 | getService(Ci.nsIObserverService); |
michael@0 | 10 | |
michael@0 | 11 | let gDummyCreated = false; |
michael@0 | 12 | let gDummyVisited = false; |
michael@0 | 13 | |
michael@0 | 14 | let observer = { |
michael@0 | 15 | observe: function(subject, topic, data) { |
michael@0 | 16 | if (topic == "dummy-observer-created") |
michael@0 | 17 | gDummyCreated = true; |
michael@0 | 18 | else if (topic == "dummy-observer-visited") |
michael@0 | 19 | gDummyVisited = true; |
michael@0 | 20 | }, |
michael@0 | 21 | |
michael@0 | 22 | QueryInterface: XPCOMUtils.generateQI([ |
michael@0 | 23 | Ci.nsIObserver, |
michael@0 | 24 | Ci.nsISupportsWeakReference, |
michael@0 | 25 | ]) |
michael@0 | 26 | }; |
michael@0 | 27 | |
michael@0 | 28 | function verify() { |
michael@0 | 29 | do_check_true(gDummyCreated); |
michael@0 | 30 | do_check_true(gDummyVisited); |
michael@0 | 31 | do_test_finished(); |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | // main |
michael@0 | 35 | function run_test() { |
michael@0 | 36 | do_load_manifest("nsDummyObserver.manifest"); |
michael@0 | 37 | |
michael@0 | 38 | os.addObserver(observer, "dummy-observer-created", true); |
michael@0 | 39 | os.addObserver(observer, "dummy-observer-visited", true); |
michael@0 | 40 | |
michael@0 | 41 | do_test_pending(); |
michael@0 | 42 | |
michael@0 | 43 | // Add a visit |
michael@0 | 44 | promiseAddVisits(uri("http://typed.mozilla.org")).then( |
michael@0 | 45 | function () do_timeout(1000, verify)); |
michael@0 | 46 | } |