|
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/. */ |
|
4 |
|
5 "use strict"; |
|
6 |
|
7 const kTestToolbarId = "test-empty-drag"; |
|
8 |
|
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 }); |
|
22 |
|
23 add_task(function asyncCleanup() { |
|
24 yield endCustomizing(); |
|
25 yield resetCustomization(); |
|
26 }); |