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 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 "use strict";
7 const kTestToolbarId = "test-empty-drag";
9 // Attempting to drag an item to an empty container should work.
10 add_task(function() {
11 yield createToolbarWithPlacements(kTestToolbarId, []);
12 yield startCustomizing();
13 let downloadButton = document.getElementById("downloads-button");
14 let customToolbar = document.getElementById(kTestToolbarId);
15 simulateItemDrag(downloadButton, customToolbar);
16 assertAreaPlacements(kTestToolbarId, ["downloads-button"]);
17 ok(downloadButton.parentNode && downloadButton.parentNode.parentNode == customToolbar,
18 "Button should really be in toolbar");
19 yield endCustomizing();
20 removeCustomToolbars();
21 });
23 add_task(function asyncCleanup() {
24 yield endCustomizing();
25 yield resetCustomization();
26 });