summaryrefslogtreecommitdiffstats
path: root/browser/base/content/test/general/browser_removeTabsToTheEnd.js
blob: 668452e178068436debfe6adcf5646e15e9baaf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* 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);
}