commit 6e5f10fb2f1c7f02fc78108573527178e1ed9c53
parent e9790fa9ac1ce7e43b60fb9d4586080d0866bc1c
Author: Kelly Cochrane <kcochrane@mozilla.com>
Date: Thu, 11 Dec 2025 22:05:06 +0000
Bug 2005534 - Fix issue with opening tabs from about:opentabs r=tabbrowser-reviewers,nsharpley
Differential Revision: https://phabricator.services.mozilla.com/D276090
Diffstat:
1 file changed, 0 insertions(+), 8 deletions(-)
diff --git a/browser/components/tabbrowser/content/tabsplitview.js b/browser/components/tabbrowser/content/tabsplitview.js
@@ -39,9 +39,6 @@
/** @type {MozTabbrowserTab[]} */
#tabs = [];
- /** @type {boolean} */
- #activated = false;
-
/**
* @returns {boolean}
*/
@@ -149,9 +146,6 @@
*/
#activate() {
updateUrlbarButton.arm();
- if (this.#activated) {
- return;
- }
gBrowser.showSplitViewPanels(this.#tabs);
this.container.dispatchEvent(
new CustomEvent("TabSplitViewActivate", {
@@ -159,7 +153,6 @@
bubbles: true,
})
);
- this.#activated = true;
}
/**
@@ -174,7 +167,6 @@
bubbles: true,
})
);
- this.#activated = false;
}
/**