diff --git a/src/browser/components/tabbrowser/content/tabbrowser-js.patch b/src/browser/components/tabbrowser/content/tabbrowser-js.patch index 1bb7700594..ed0e5c3f14 100644 --- a/src/browser/components/tabbrowser/content/tabbrowser-js.patch +++ b/src/browser/components/tabbrowser/content/tabbrowser-js.patch @@ -1,5 +1,5 @@ diff --git a/browser/components/tabbrowser/content/tabbrowser.js b/browser/components/tabbrowser/content/tabbrowser.js -index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e6923fe5f 100644 +index c0eafd4faf8d57b8486c5bf8917375850ec8147e..51849af19a51f49f604a13b3aa28e8f283408dcc 100644 --- a/browser/components/tabbrowser/content/tabbrowser.js +++ b/browser/components/tabbrowser/content/tabbrowser.js @@ -386,6 +386,7 @@ @@ -140,7 +140,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e let browser = this.getBrowserForTab(aTab); browser.mIconURL = aIconURL; -@@ -1379,7 +1443,6 @@ +@@ -1379,15 +1443,10 @@ // Preview mode should not reset the owner if (!this._previewMode && !oldTab.selected) { @@ -148,7 +148,16 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } let lastRelatedTab = this._lastRelatedTabMap.get(oldTab); -@@ -1470,6 +1533,7 @@ +- if (lastRelatedTab) { +- if (!lastRelatedTab.selected) { +- lastRelatedTab.owner = null; +- } +- } ++ + this._lastRelatedTabMap = new WeakMap(); + + if (!gMultiProcessBrowser) { +@@ -1470,6 +1529,7 @@ if (!this._previewMode) { newTab.recordTimeFromUnloadToReload(); newTab.updateLastAccessed(); @@ -156,7 +165,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e oldTab.updateLastAccessed(); // if this is the foreground window, update the last-seen timestamps. if (this.ownerGlobal == BrowserWindowTracker.getTopWindow()) { -@@ -1622,6 +1686,9 @@ +@@ -1622,6 +1682,9 @@ } let activeEl = document.activeElement; @@ -166,7 +175,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // If focus is on the old tab, move it to the new tab. if (activeEl == oldTab) { newTab.focus(); -@@ -1945,7 +2012,8 @@ +@@ -1945,7 +2008,8 @@ } _setTabLabel(aTab, aLabel, { beforeTabOpen, isContentTitle, isURL } = {}) { @@ -176,7 +185,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e return false; } -@@ -2053,7 +2121,7 @@ +@@ -2053,7 +2117,7 @@ newIndex = this.selectedTab._tPos + 1; } @@ -185,7 +194,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (this.isTabGroupLabel(targetTab)) { throw new Error( "Replacing a tab group label with a tab is not supported" -@@ -2328,6 +2396,7 @@ +@@ -2328,6 +2392,7 @@ uriIsAboutBlank, userContextId, skipLoad, @@ -193,7 +202,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } = {}) { let b = document.createXULElement("browser"); // Use the JSM global to create the permanentKey, so that if the -@@ -2401,8 +2470,7 @@ +@@ -2401,8 +2466,7 @@ // we use a different attribute name for this? b.setAttribute("name", name); } @@ -203,7 +212,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e b.setAttribute("transparent", "true"); } -@@ -2567,7 +2635,7 @@ +@@ -2567,7 +2631,7 @@ let panel = this.getPanel(browser); let uniqueId = this._generateUniquePanelID(); @@ -212,7 +221,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e aTab.linkedPanel = uniqueId; // Inject the into the DOM if necessary. -@@ -2626,8 +2694,8 @@ +@@ -2626,8 +2690,8 @@ // If we transitioned from one browser to two browsers, we need to set // hasSiblings=false on both the existing browser and the new browser. if (this.tabs.length == 2) { @@ -223,7 +232,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } else { aTab.linkedBrowser.browsingContext.hasSiblings = this.tabs.length > 1; } -@@ -2814,7 +2882,6 @@ +@@ -2814,7 +2878,6 @@ this.selectedTab = this.addTrustedTab(BROWSER_NEW_TAB_URL, { tabIndex: tab._tPos + 1, userContextId: tab.userContextId, @@ -231,7 +240,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e focusUrlBar: true, }); resolve(this.selectedBrowser); -@@ -2923,6 +2990,8 @@ +@@ -2923,6 +2986,8 @@ schemelessInput, hasValidUserGestureActivation = false, textDirectiveUserActivation = false, @@ -240,7 +249,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } = {} ) { // all callers of addTab that pass a params object need to pass -@@ -2933,10 +3002,17 @@ +@@ -2933,10 +2998,17 @@ ); } @@ -258,7 +267,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // If we're opening a foreground tab, set the owner by default. ownerTab ??= inBackground ? null : this.selectedTab; -@@ -2944,6 +3020,7 @@ +@@ -2944,6 +3016,7 @@ if (this.selectedTab.owner) { this.selectedTab.owner = null; } @@ -266,7 +275,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // Find the tab that opened this one, if any. This is used for // determining positioning, and inherited attributes such as the -@@ -2996,6 +3073,19 @@ +@@ -2996,6 +3069,19 @@ noInitialLabel, skipBackgroundNotify, }); @@ -286,7 +295,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (insertTab) { // Insert the tab into the tab container in the correct position. this.#insertTabAtIndex(t, { -@@ -3004,6 +3094,7 @@ +@@ -3004,6 +3090,7 @@ ownerTab, openerTab, pinned, @@ -294,7 +303,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e bulkOrderedOpen, tabGroup: tabGroup ?? openerTab?.group, }); -@@ -3022,6 +3113,7 @@ +@@ -3022,6 +3109,7 @@ openWindowInfo, skipLoad, triggeringRemoteType, @@ -302,7 +311,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e })); if (focusUrlBar) { -@@ -3146,6 +3238,12 @@ +@@ -3146,6 +3234,12 @@ } } @@ -315,7 +324,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // Additionally send pinned tab events if (pinned) { this.#notifyPinnedStatus(t); -@@ -3330,10 +3428,10 @@ +@@ -3330,10 +3424,10 @@ isAdoptingGroup = false, isUserTriggered = false, telemetryUserCreateSource = "unknown", @@ -327,7 +336,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } if (!color) { -@@ -3354,9 +3452,14 @@ +@@ -3354,9 +3448,14 @@ label, isAdoptingGroup ); @@ -344,7 +353,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e ); group.addTabs(tabs); -@@ -3477,7 +3580,7 @@ +@@ -3477,7 +3576,7 @@ } this.#handleTabMove(tab, () => @@ -353,7 +362,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e ); } -@@ -3679,6 +3782,7 @@ +@@ -3679,6 +3778,7 @@ openWindowInfo, skipLoad, triggeringRemoteType, @@ -361,7 +370,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } ) { // If we don't have a preferred remote type (or it is `NOT_REMOTE`), and -@@ -3748,6 +3852,7 @@ +@@ -3748,6 +3848,7 @@ openWindowInfo, name, skipLoad, @@ -369,7 +378,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e }); } -@@ -3935,7 +4040,7 @@ +@@ -3935,7 +4036,7 @@ // Add a new tab if needed. if (!tab) { let createLazyBrowser = @@ -378,7 +387,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e let url = "about:blank"; if (tabData.entries?.length) { -@@ -3972,8 +4077,10 @@ +@@ -3972,8 +4073,10 @@ insertTab: false, skipLoad: true, preferredRemoteType, @@ -390,7 +399,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (select) { tabToSelect = tab; } -@@ -3985,7 +4092,8 @@ +@@ -3985,7 +4088,8 @@ this.pinTab(tab); // Then ensure all the tab open/pinning information is sent. this._fireTabOpen(tab, {}); @@ -400,7 +409,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e let { groupId } = tabData; const tabGroup = tabGroupWorkingData.get(groupId); // if a tab refers to a tab group we don't know, skip any group -@@ -3999,7 +4107,10 @@ +@@ -3999,7 +4103,10 @@ tabGroup.stateData.id, tabGroup.stateData.color, tabGroup.stateData.collapsed, @@ -412,7 +421,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e ); tabsFragment.appendChild(tabGroup.node); } -@@ -4044,9 +4155,23 @@ +@@ -4044,9 +4151,23 @@ // to remove the old selected tab. if (tabToSelect) { let leftoverTab = this.selectedTab; @@ -436,7 +445,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (tabs.length > 1 || !tabs[0].selected) { this._updateTabsAfterInsert(); -@@ -4237,11 +4362,14 @@ +@@ -4237,11 +4358,14 @@ if (ownerTab) { tab.owner = ownerTab; } @@ -452,7 +461,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if ( !bulkOrderedOpen && ((openerTab && -@@ -4253,7 +4381,7 @@ +@@ -4253,7 +4377,7 @@ let lastRelatedTab = openerTab && this._lastRelatedTabMap.get(openerTab); let previousTab = lastRelatedTab || openerTab || this.selectedTab; @@ -461,7 +470,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e tabGroup = previousTab.group; } if ( -@@ -4264,7 +4392,7 @@ +@@ -4264,14 +4388,12 @@ ) { elementIndex = Infinity; } else if (previousTab.visible) { @@ -470,7 +479,15 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } else if (previousTab == FirefoxViewHandler.tab) { elementIndex = 0; } -@@ -4292,14 +4420,14 @@ + +- if (lastRelatedTab) { +- lastRelatedTab.owner = null; +- } else if (openerTab) { ++ if (openerTab) { + tab.owner = openerTab; + } + // Always set related map if opener exists. +@@ -4292,14 +4414,14 @@ } // Ensure index is within bounds. if (tab.pinned) { @@ -489,7 +506,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (pinned && !itemAfter?.pinned) { itemAfter = null; -@@ -4310,7 +4438,7 @@ +@@ -4310,7 +4432,7 @@ this.tabContainer._invalidateCachedTabs(); @@ -498,19 +515,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (this.isTab(itemAfter) && itemAfter.group == tabGroup) { // Place at the front of, or between tabs in, the same tab group this.tabContainer.insertBefore(tab, itemAfter); -@@ -4338,7 +4466,11 @@ - const tabContainer = pinned - ? this.tabContainer.pinnedTabsContainer - : this.tabContainer; -+ if (itemAfter) { -+ itemAfter.before(tab); -+ } else { - tabContainer.insertBefore(tab, itemAfter); -+ } - } - - this._updateTabsAfterInsert(); -@@ -4346,6 +4478,7 @@ +@@ -4346,6 +4468,7 @@ if (pinned) { this._updateTabBarForPinnedTabs(); } @@ -518,7 +523,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e TabBarVisibility.update(); } -@@ -4635,6 +4768,9 @@ +@@ -4635,6 +4758,9 @@ return; } @@ -528,7 +533,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e this.removeTabs(selectedTabs, { isUserTriggered, telemetrySource }); } -@@ -4896,6 +5032,7 @@ +@@ -4896,6 +5022,7 @@ telemetrySource, } = {} ) { @@ -536,7 +541,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // When 'closeWindowWithLastTab' pref is enabled, closing all tabs // can be considered equivalent to closing the window. if ( -@@ -4985,6 +5122,7 @@ +@@ -4985,6 +5112,7 @@ if (lastToClose) { this.removeTab(lastToClose, aParams); } @@ -544,7 +549,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } catch (e) { console.error(e); } -@@ -5023,6 +5161,12 @@ +@@ -5023,6 +5151,12 @@ aTab._closeTimeNoAnimTimerId = Glean.browserTabclose.timeNoAnim.start(); } @@ -557,7 +562,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // Handle requests for synchronously removing an already // asynchronously closing tab. if (!animate && aTab.closing) { -@@ -5037,6 +5181,9 @@ +@@ -5037,6 +5171,9 @@ // state). let tabWidth = window.windowUtils.getBoundsWithoutFlushing(aTab).width; let isLastTab = this.#isLastTabInWindow(aTab); @@ -567,7 +572,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if ( !this._beginRemoveTab(aTab, { closeWindowFastpath: true, -@@ -5085,7 +5232,13 @@ +@@ -5085,7 +5222,13 @@ // We're not animating, so we can cancel the animation stopwatch. Glean.browserTabclose.timeAnim.cancel(aTab._closeTimeAnimTimerId); aTab._closeTimeAnimTimerId = null; @@ -582,7 +587,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e return; } -@@ -5219,7 +5372,7 @@ +@@ -5219,7 +5362,7 @@ closeWindowWithLastTab != null ? closeWindowWithLastTab : !window.toolbar.visible || @@ -591,7 +596,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (closeWindow) { // We've already called beforeunload on all the relevant tabs if we get here, -@@ -5243,6 +5396,7 @@ +@@ -5243,6 +5386,7 @@ newTab = true; } @@ -599,7 +604,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e aTab._endRemoveArgs = [closeWindow, newTab]; // swapBrowsersAndCloseOther will take care of closing the window without animation. -@@ -5283,13 +5437,7 @@ +@@ -5283,13 +5427,7 @@ aTab._mouseleave(); if (newTab) { @@ -614,7 +619,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } else { TabBarVisibility.update(); } -@@ -5422,6 +5570,7 @@ +@@ -5422,6 +5560,7 @@ this.tabs[i]._tPos = i; } @@ -622,7 +627,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (!this._windowIsClosing) { // update tab close buttons state this.tabContainer._updateCloseButtons(); -@@ -5643,6 +5792,7 @@ +@@ -5643,6 +5782,7 @@ } let excludeTabs = new Set(aExcludeTabs); @@ -630,7 +635,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // If this tab has a successor, it should be selectable, since // hiding or closing a tab removes that tab as a successor. -@@ -5655,13 +5805,13 @@ +@@ -5655,13 +5795,13 @@ !excludeTabs.has(aTab.owner) && Services.prefs.getBoolPref("browser.tabs.selectOwnerOnClose") ) { @@ -646,7 +651,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e ); let tab = this.tabContainer.findNextTab(aTab, { -@@ -5677,7 +5827,7 @@ +@@ -5677,7 +5817,7 @@ } if (tab) { @@ -655,7 +660,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } // If no qualifying visible tab was found, see if there is a tab in -@@ -5698,7 +5848,7 @@ +@@ -5698,7 +5838,7 @@ }); } @@ -664,7 +669,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } _blurTab(aTab) { -@@ -6104,10 +6254,10 @@ +@@ -6104,10 +6244,10 @@ SessionStore.deleteCustomTabValue(aTab, "hiddenBy"); } @@ -677,7 +682,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e aTab.selected || aTab.closing || // Tabs that are sharing the screen, microphone or camera cannot be hidden. -@@ -6166,6 +6316,7 @@ +@@ -6166,6 +6306,7 @@ * @param {MozTabbrowserTab|MozTabbrowserTabGroup|MozTabbrowserTabGroup.labelElement} aTab */ replaceTabWithWindow(aTab, aOptions) { @@ -685,7 +690,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (this.tabs.length == 1) { return null; } -@@ -6299,7 +6450,7 @@ +@@ -6299,7 +6440,7 @@ * `true` if element is a `` */ isTabGroup(element) { @@ -694,7 +699,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } /** -@@ -6375,8 +6526,8 @@ +@@ -6375,8 +6516,8 @@ } // Don't allow mixing pinned and unpinned tabs. @@ -705,7 +710,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } else { tabIndex = Math.max(tabIndex, this.pinnedTabCount); } -@@ -6402,10 +6553,16 @@ +@@ -6402,10 +6543,16 @@ this.#handleTabMove( element, () => { @@ -724,7 +729,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e if (neighbor && this.isTab(element) && tabIndex > element._tPos) { neighbor.after(element); } else { -@@ -6463,23 +6620,28 @@ +@@ -6463,23 +6610,28 @@ #moveTabNextTo(element, targetElement, moveBefore = false, metricsContext) { if (this.isTabGroupLabel(targetElement)) { targetElement = targetElement.group; @@ -759,7 +764,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } else if (!element.pinned && targetElement && targetElement.pinned) { // If the caller asks to move an unpinned element next to a pinned // tab, move the unpinned element to be the first unpinned element -@@ -6492,14 +6654,34 @@ +@@ -6492,14 +6644,34 @@ // move the tab group right before the first unpinned tab. // 4. Moving a tab group and the first unpinned tab is grouped: // move the tab group right before the first unpinned tab's tab group. @@ -795,7 +800,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e element.pinned ? this.tabContainer.pinnedTabsContainer : this.tabContainer; -@@ -6508,7 +6690,7 @@ +@@ -6508,7 +6680,7 @@ element, () => { if (moveBefore) { @@ -804,7 +809,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e } else if (targetElement) { targetElement.after(element); } else { -@@ -6580,10 +6762,10 @@ +@@ -6580,10 +6752,10 @@ * @param {TabMetricsContext} [metricsContext] */ moveTabToGroup(aTab, aGroup, metricsContext) { @@ -817,7 +822,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e return; } if (aTab.group && aTab.group.id === aGroup.id) { -@@ -6613,6 +6795,7 @@ +@@ -6613,6 +6785,7 @@ let state = { tabIndex: tab._tPos, @@ -825,7 +830,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e }; if (tab.visible) { state.elementIndex = tab.elementIndex; -@@ -6639,7 +6822,7 @@ +@@ -6639,7 +6812,7 @@ let changedTabGroup = previousTabState.tabGroupId != currentTabState.tabGroupId; @@ -834,7 +839,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e tab.dispatchEvent( new CustomEvent("TabMove", { bubbles: true, -@@ -6676,6 +6859,10 @@ +@@ -6676,6 +6849,10 @@ moveActionCallback(); @@ -845,7 +850,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // Clear tabs cache after moving nodes because the order of tabs may have // changed. this.tabContainer._invalidateCachedTabs(); -@@ -7576,7 +7763,7 @@ +@@ -7576,7 +7753,7 @@ // preventDefault(). It will still raise the window if appropriate. break; } @@ -854,7 +859,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e window.focus(); aEvent.preventDefault(); break; -@@ -7593,7 +7780,6 @@ +@@ -7593,7 +7770,6 @@ } case "TabGroupCollapse": aEvent.target.tabs.forEach(tab => { @@ -862,7 +867,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e }); break; case "TabGroupCreateByUser": -@@ -8542,6 +8728,7 @@ +@@ -8542,6 +8718,7 @@ aWebProgress.isTopLevel ) { this.mTab.setAttribute("busy", "true"); @@ -870,7 +875,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e gBrowser._tabAttrModified(this.mTab, ["busy"]); this.mTab._notselectedsinceload = !this.mTab.selected; } -@@ -9543,7 +9730,7 @@ var TabContextMenu = { +@@ -9543,7 +9720,7 @@ var TabContextMenu = { ); contextUnpinSelectedTabs.hidden = !this.contextTab.pinned || !this.multiselected; @@ -879,7 +884,7 @@ index c0eafd4faf8d57b8486c5bf8917375850ec8147e..cead9e6e52f7354e20b8b64ad06a075e // Build Ask Chat items TabContextMenu.GenAI.buildTabMenu( document.getElementById("context_askChat"), -@@ -9863,6 +10050,7 @@ var TabContextMenu = { +@@ -9863,6 +10040,7 @@ var TabContextMenu = { ) ); } else {