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 /* Any copyright is dedicated to the Public Domain.
2 * http://creativecommons.org/publicdomain/zero/1.0/ */
4 MARIONETTE_TIMEOUT = 60000;
5 MARIONETTE_HEAD_JS = 'head.js';
7 function testConferenceThreeAndHangupOne() {
8 log('= testConferenceThreeAndHangupOne =');
10 let outCall;
11 let inCall;
12 let inCall2;
13 let outNumber = "5555550101";
14 let inNumber = "5555550201";
15 let inNumber2 = "5555550202";
16 let inInfo = gInCallStrPool(inNumber);
17 let inInfo2 = gInCallStrPool(inNumber2);
19 return Promise.resolve()
20 .then(() => gSetupConferenceThreeCalls(outNumber, inNumber, inNumber2))
21 .then(calls => {
22 [outCall, inCall, inCall2] = calls;
23 })
24 .then(() => gHangUpCallInConference(outCall, [], [inCall, inCall2]))
25 .then(() => gCheckAll(conference, [], 'connected', [inCall, inCall2],
26 [inInfo.active, inInfo2.active]))
27 .then(() => gRemoteHangUpCalls([inCall, inCall2]));
28 }
30 // Start the test
31 startTest(function() {
32 testConferenceThreeAndHangupOne()
33 .then(null, error => {
34 ok(false, 'promise rejects during test.');
35 })
36 .then(finish);
37 });