browser/components/tabview/test/browser_tabview_alltabs.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* Any copyright is dedicated to the Public Domain.
michael@0 2 http://creativecommons.org/publicdomain/zero/1.0/ */
michael@0 3
michael@0 4 function test() {
michael@0 5 waitForExplicitFinish();
michael@0 6
michael@0 7 let AllTabs;
michael@0 8 let newTab = gBrowser.addTab();
michael@0 9
michael@0 10 // TabPinned
michael@0 11 let pinned = function (event) {
michael@0 12 let tab = event.target;
michael@0 13
michael@0 14 is(tab, newTab, "The tabs are the same after the tab is pinned");
michael@0 15 ok(tab.pinned, "The tab gets pinned");
michael@0 16
michael@0 17 gBrowser.unpinTab(tab);
michael@0 18 };
michael@0 19
michael@0 20 // TabUnpinned
michael@0 21 let unpinned = function (event) {
michael@0 22 let tab = event.target;
michael@0 23
michael@0 24 AllTabs.unregister("pinned", pinned);
michael@0 25 AllTabs.unregister("unpinned", unpinned);
michael@0 26
michael@0 27 is(tab, newTab, "The tabs are the same after the tab is unpinned");
michael@0 28 ok(!tab.pinned, "The tab gets unpinned");
michael@0 29
michael@0 30 // clean up and finish
michael@0 31 gBrowser.removeTab(tab);
michael@0 32 hideTabView(finish);
michael@0 33 };
michael@0 34
michael@0 35 showTabView(function () {
michael@0 36 AllTabs = TabView.getContentWindow().AllTabs;
michael@0 37
michael@0 38 AllTabs.register("pinned", pinned);
michael@0 39 AllTabs.register("unpinned", unpinned);
michael@0 40
michael@0 41 ok(!newTab.pinned, "The tab is not pinned");
michael@0 42 gBrowser.pinTab(newTab);
michael@0 43 });
michael@0 44 }
michael@0 45

mercurial