browser/base/content/test/general/browser_removeTabsToTheEnd.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

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

mercurial