From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- ...iselect_tabs_clear_selection_when_tab_switch.js | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 browser/base/content/test/tabs/browser_multiselect_tabs_clear_selection_when_tab_switch.js (limited to 'browser/base/content/test/tabs/browser_multiselect_tabs_clear_selection_when_tab_switch.js') diff --git a/browser/base/content/test/tabs/browser_multiselect_tabs_clear_selection_when_tab_switch.js b/browser/base/content/test/tabs/browser_multiselect_tabs_clear_selection_when_tab_switch.js new file mode 100644 index 0000000000..6e75e29c9a --- /dev/null +++ b/browser/base/content/test/tabs/browser_multiselect_tabs_clear_selection_when_tab_switch.js @@ -0,0 +1,33 @@ +add_task(async function test() { + let initialTab = gBrowser.selectedTab; + let tab1 = await addTab(); + let tab2 = await addTab(); + let tab3 = await addTab(); + + is(gBrowser.multiSelectedTabsCount, 0, "Zero multiselected tabs"); + + for (let tab of [tab1, tab2, tab3]) { + await triggerClickOn(tab, { ctrlKey: true }); + } + + is(gBrowser.multiSelectedTabsCount, 4, "Four multiselected tabs"); + is(gBrowser.selectedTab, initialTab, "InitialTab is the active tab"); + + info("Un-select the active tab"); + await BrowserTestUtils.switchTab( + gBrowser, + triggerClickOn(initialTab, { ctrlKey: true }) + ); + + is(gBrowser.multiSelectedTabsCount, 3, "Three multiselected tabs"); + is(gBrowser.selectedTab, tab3, "Tab3 is the active tab"); + + await BrowserTestUtils.switchTab(gBrowser, tab1); + + is(gBrowser.multiSelectedTabsCount, 0, "Selection cleared after tab-switch"); + is(gBrowser.selectedTab, tab1, "Tab1 is the active tab"); + + for (let tab of [tab1, tab2, tab3]) { + BrowserTestUtils.removeTab(tab); + } +}); -- cgit v1.2.3