browser/components/customizableui/test/browser_927717_customize_drag_empty_toolbar.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

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 });

mercurial