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 var Cc = Components.classes;
2 var Ci = Components.interfaces;
4 // Regression test for bug 370103 - crash when passing a null listener to
5 // nsIChannel.asyncOpen
6 function run_test() {
7 // Compose the jar: url
8 var ioService = Cc["@mozilla.org/network/io-service;1"].
9 getService(Ci.nsIIOService);
10 var file = do_get_file("data/test_bug370103.jar");
11 var url = ioService.newFileURI(file).spec;
12 url = "jar:" + url + "!/test_bug370103";
14 // Try opening channel with null listener
15 var channel = ioService.newChannel(url, null, null);
17 var exception = false;
18 try {
19 channel.asyncOpen(null, null);
20 }
21 catch(e) {
22 exception = true;
23 }
25 do_check_true(exception); // should throw exception instead of crashing
26 }