gecko-dev/browser/base/content/test/general/browser_removeTabsToTheEnd.js
Victor Porof f9f5914039 Bug 1561435 - Format browser/base/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36041

--HG--
extra : source : 96b3895a3b2aa2fcb064c85ec5857b7216884556
2019-07-05 09:48:57 +02:00

28 lines
941 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
function test() {
// Add two new tabs after the original tab. Pin the first one.
let originalTab = gBrowser.selectedTab;
let newTab1 = BrowserTestUtils.addTab(gBrowser);
BrowserTestUtils.addTab(gBrowser);
gBrowser.pinTab(newTab1);
// Check that there is only one closable tab from originalTab to the end
is(
gBrowser.getTabsToTheEndFrom(originalTab).length,
1,
"One unpinned tab to the right"
);
// Remove tabs to the end
gBrowser.removeTabsToTheEndFrom(originalTab);
is(gBrowser.tabs.length, 2, "Length is 2");
is(gBrowser.tabs[1], originalTab, "Starting tab is not removed");
is(gBrowser.tabs[0], newTab1, "Pinned tab is not removed");
// Remove pinned tab
gBrowser.removeTab(newTab1);
}