Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | "use strict"; |
michael@0 | 6 | |
michael@0 | 7 | /** |
michael@0 | 8 | * Test opening and closing the menu panel UI. |
michael@0 | 9 | */ |
michael@0 | 10 | |
michael@0 | 11 | // Show and hide the menu panel programmatically without an event (like UITour.jsm would) |
michael@0 | 12 | add_task(function() { |
michael@0 | 13 | let shownPromise = promisePanelShown(window); |
michael@0 | 14 | PanelUI.show(); |
michael@0 | 15 | yield shownPromise; |
michael@0 | 16 | |
michael@0 | 17 | is(PanelUI.panel.getAttribute("panelopen"), "true", "Check that panel has panelopen attribute"); |
michael@0 | 18 | is(PanelUI.panel.state, "open", "Check that panel state is 'open'"); |
michael@0 | 19 | |
michael@0 | 20 | let hiddenPromise = promisePanelHidden(window); |
michael@0 | 21 | PanelUI.hide(); |
michael@0 | 22 | yield hiddenPromise; |
michael@0 | 23 | |
michael@0 | 24 | ok(!PanelUI.panel.hasAttribute("panelopen"), "Check that panel doesn't have the panelopen attribute"); |
michael@0 | 25 | is(PanelUI.panel.state, "closed", "Check that panel state is 'closed'"); |
michael@0 | 26 | }); |
michael@0 | 27 | |
michael@0 | 28 | // Toggle the menu panel open and closed |
michael@0 | 29 | add_task(function() { |
michael@0 | 30 | let shownPromise = promisePanelShown(window); |
michael@0 | 31 | PanelUI.toggle({type: "command"}); |
michael@0 | 32 | yield shownPromise; |
michael@0 | 33 | |
michael@0 | 34 | is(PanelUI.panel.getAttribute("panelopen"), "true", "Check that panel has panelopen attribute"); |
michael@0 | 35 | is(PanelUI.panel.state, "open", "Check that panel state is 'open'"); |
michael@0 | 36 | |
michael@0 | 37 | let hiddenPromise = promisePanelHidden(window); |
michael@0 | 38 | PanelUI.toggle({type: "command"}); |
michael@0 | 39 | yield hiddenPromise; |
michael@0 | 40 | |
michael@0 | 41 | ok(!PanelUI.panel.hasAttribute("panelopen"), "Check that panel doesn't have the panelopen attribute"); |
michael@0 | 42 | is(PanelUI.panel.state, "closed", "Check that panel state is 'closed'"); |
michael@0 | 43 | }); |