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 testConferenceThreeAndRemoveOne() {
8 log('= testConferenceThreeAndRemoveOne =');
10 let outCall;
11 let inCall;
12 let inCall2;
13 let outNumber = "5555550101";
14 let inNumber = "5555550201";
15 let inNumber2 = "5555550202";
16 let outInfo = gOutCallStrPool(outNumber);
17 let inInfo = gInCallStrPool(inNumber);
18 let inInfo2 = gInCallStrPool(inNumber2);
20 return Promise.resolve()
21 .then(() => gSetupConferenceThreeCalls(outNumber, inNumber, inNumber2))
22 .then(calls => {
23 [outCall, inCall, inCall2] = calls;
24 })
25 .then(() => gRemoveCallInConference(outCall, [], [inCall, inCall2],
26 function() {
27 gCheckState(outCall, [outCall], 'held', [inCall, inCall2]);
28 }))
29 .then(() => gCheckAll(outCall, [outCall], 'held', [inCall, inCall2],
30 [outInfo.active, inInfo.held, inInfo2.held]))
31 .then(() => gRemoteHangUpCalls([outCall, inCall, inCall2]));
32 }
34 // Start the test
35 startTest(function() {
36 testConferenceThreeAndRemoveOne()
37 .then(null, error => {
38 ok(false, 'promise rejects during test.');
39 })
40 .then(finish);
41 });