Wed, 31 Dec 2014 06:09:35 +0100
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 origTab = gBrowser.visibleTabs[0]; |
michael@0 | 8 | let newTab = gBrowser.addTab(); |
michael@0 | 9 | gBrowser.selectedTab = newTab; |
michael@0 | 10 | let relatedTab = gBrowser.addTab("about:blank", { ownerTab: newTab }); |
michael@0 | 11 | |
michael@0 | 12 | // init the frame, move the owner tab to a new group and close the related |
michael@0 | 13 | // tab. |
michael@0 | 14 | TabView._initFrame(function() { |
michael@0 | 15 | let newTabGroupItemId = newTab._tabViewTabItem.parent.id; |
michael@0 | 16 | |
michael@0 | 17 | is(relatedTab.owner, newTab, "The related tab's owner is the right tab"); |
michael@0 | 18 | |
michael@0 | 19 | // move current tab to a new group |
michael@0 | 20 | TabView.moveTabTo(newTab, null); |
michael@0 | 21 | |
michael@0 | 22 | // close the related tab |
michael@0 | 23 | gBrowser.removeTab(relatedTab); |
michael@0 | 24 | |
michael@0 | 25 | is(gBrowser.visibleTabs.length, 1, "The number of visible tabs is 1"); |
michael@0 | 26 | is(gBrowser.visibleTabs[0], origTab, |
michael@0 | 27 | "The original tab is the only visible tab"); |
michael@0 | 28 | isnot(newTab._tabViewTabItem.parent.id, newTabGroupItemId, |
michael@0 | 29 | "The moved tab item has a new group id"); |
michael@0 | 30 | |
michael@0 | 31 | // clean up |
michael@0 | 32 | gBrowser.removeTab(newTab); |
michael@0 | 33 | |
michael@0 | 34 | finish(); |
michael@0 | 35 | }); |
michael@0 | 36 | } |