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 --- .../content/test/sync/browser_synced_tabs_view.js | 76 ++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 browser/base/content/test/sync/browser_synced_tabs_view.js (limited to 'browser/base/content/test/sync/browser_synced_tabs_view.js') diff --git a/browser/base/content/test/sync/browser_synced_tabs_view.js b/browser/base/content/test/sync/browser_synced_tabs_view.js new file mode 100644 index 0000000000..eb1203825e --- /dev/null +++ b/browser/base/content/test/sync/browser_synced_tabs_view.js @@ -0,0 +1,76 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +"use strict"; + +function promiseLayout() { + // Wait for layout to have happened. + return new Promise(resolve => + requestAnimationFrame(() => requestAnimationFrame(resolve)) + ); +} + +add_setup(async function () { + registerCleanupFunction(() => CustomizableUI.reset()); +}); + +async function withOpenSyncPanel(cb) { + let promise = BrowserTestUtils.waitForEvent( + window, + "ViewShown", + true, + e => e.target.id == "PanelUI-remotetabs" + ).then(e => e.target.closest("panel")); + + let panel; + try { + gSync.openSyncedTabsPanel(); + panel = await promise; + is(panel.state, "open", "Panel should have opened."); + await cb(panel); + } finally { + panel?.hidePopup(); + } +} + +add_task(async function test_button_in_bookmarks_toolbar() { + CustomizableUI.addWidgetToArea("sync-button", CustomizableUI.AREA_BOOKMARKS); + CustomizableUI.setToolbarVisibility(CustomizableUI.AREA_BOOKMARKS, "never"); + await promiseLayout(); + + await withOpenSyncPanel(async panel => { + is( + panel.anchorNode.closest("toolbarbutton"), + PanelUI.menuButton, + "Should have anchored on the menu button because the sync button isn't visible." + ); + }); +}); + +add_task(async function test_button_in_navbar() { + CustomizableUI.addWidgetToArea("sync-button", CustomizableUI.AREA_NAVBAR, 0); + await promiseLayout(); + await withOpenSyncPanel(async panel => { + is( + panel.anchorNode.closest("toolbarbutton").id, + "sync-button", + "Should have anchored on the sync button itself." + ); + }); +}); + +add_task(async function test_button_in_overflow() { + CustomizableUI.addWidgetToArea( + "sync-button", + CustomizableUI.AREA_FIXED_OVERFLOW_PANEL, + 0 + ); + await promiseLayout(); + await withOpenSyncPanel(async panel => { + is( + panel.anchorNode.closest("toolbarbutton").id, + "nav-bar-overflow-button", + "Should have anchored on the overflow button." + ); + }); +}); -- cgit v1.2.3