Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
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 });