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 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Check getting sources before there are any. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | var gDebuggee; |
michael@0 | 9 | var gClient; |
michael@0 | 10 | var gThreadClient; |
michael@0 | 11 | |
michael@0 | 12 | var gNumTimesSourcesSent = 0; |
michael@0 | 13 | |
michael@0 | 14 | function run_test() |
michael@0 | 15 | { |
michael@0 | 16 | initTestDebuggerServer(); |
michael@0 | 17 | gDebuggee = addTestGlobal("test-stack"); |
michael@0 | 18 | gClient = new DebuggerClient(DebuggerServer.connectPipe()); |
michael@0 | 19 | gClient.request = (function (request) { |
michael@0 | 20 | return function (aRequest, aOnResponse) { |
michael@0 | 21 | if (aRequest.type === "sources") { |
michael@0 | 22 | ++gNumTimesSourcesSent; |
michael@0 | 23 | } |
michael@0 | 24 | return request.call(this, aRequest, aOnResponse); |
michael@0 | 25 | }; |
michael@0 | 26 | }(gClient.request)); |
michael@0 | 27 | gClient.connect(function () { |
michael@0 | 28 | attachTestTabAndResume(gClient, "test-stack", function (aResponse, aTabClient, aThreadClient) { |
michael@0 | 29 | gThreadClient = aThreadClient; |
michael@0 | 30 | test_listing_zero_sources(); |
michael@0 | 31 | }); |
michael@0 | 32 | }); |
michael@0 | 33 | do_test_pending(); |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | function test_listing_zero_sources() |
michael@0 | 37 | { |
michael@0 | 38 | gThreadClient.getSources(function (aPacket) { |
michael@0 | 39 | do_check_true(!aPacket.error); |
michael@0 | 40 | do_check_true(!!aPacket.sources); |
michael@0 | 41 | do_check_eq(aPacket.sources.length, 0); |
michael@0 | 42 | |
michael@0 | 43 | do_check_true(gNumTimesSourcesSent <= 1, |
michael@0 | 44 | "Should only send one sources request at most, even though we" |
michael@0 | 45 | + " might have had to send one to determine feature support."); |
michael@0 | 46 | |
michael@0 | 47 | finishClient(gClient); |
michael@0 | 48 | }); |
michael@0 | 49 | } |