diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /browser/base/content/test/general/browser_visibleTabs_tabPreview.js | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'browser/base/content/test/general/browser_visibleTabs_tabPreview.js')
-rw-r--r-- | browser/base/content/test/general/browser_visibleTabs_tabPreview.js | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/browser/base/content/test/general/browser_visibleTabs_tabPreview.js b/browser/base/content/test/general/browser_visibleTabs_tabPreview.js new file mode 100644 index 0000000000..ecc7228d65 --- /dev/null +++ b/browser/base/content/test/general/browser_visibleTabs_tabPreview.js @@ -0,0 +1,52 @@ +/* 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/. */ + +add_task(async function test() { + await SpecialPowers.pushPrefEnv({ + set: [["browser.ctrlTab.sortByRecentlyUsed", true]], + }); + + let [origTab] = gBrowser.visibleTabs; + let tabOne = BrowserTestUtils.addTab(gBrowser); + let tabTwo = BrowserTestUtils.addTab(gBrowser); + + // test the ctrlTab.tabList + pressCtrlTab(); + ok(ctrlTab.isOpen, "With 3 tab open, Ctrl+Tab opens the preview panel"); + is(ctrlTab.tabList.length, 3, "Ctrl+Tab panel displays all visible tabs"); + releaseCtrl(); + + gBrowser.showOnlyTheseTabs([origTab]); + pressCtrlTab(); + ok( + !ctrlTab.isOpen, + "With 1 tab open, Ctrl+Tab doesn't open the preview panel" + ); + releaseCtrl(); + + gBrowser.showOnlyTheseTabs([origTab, tabOne, tabTwo]); + pressCtrlTab(); + ok( + ctrlTab.isOpen, + "Ctrl+Tab opens the preview panel after re-showing hidden tabs" + ); + is( + ctrlTab.tabList.length, + 3, + "Ctrl+Tab panel displays all visible tabs after re-showing hidden ones" + ); + releaseCtrl(); + + // cleanup + gBrowser.removeTab(tabOne); + gBrowser.removeTab(tabTwo); +}); + +function pressCtrlTab(aShiftKey) { + EventUtils.synthesizeKey("VK_TAB", { ctrlKey: true, shiftKey: !!aShiftKey }); +} + +function releaseCtrl() { + EventUtils.synthesizeKey("VK_CONTROL", { type: "keyup" }); +} |