tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit eab35c333ad5db95c4d4af92464e452416196979
parent 1c3266aba7b5d77f76185d8706cfeff7751066a8
Author: sergey radionov <rsatom@gmail.com>
Date:   Wed, 17 Dec 2025 07:07:00 +0000

Bug 1976489 - Fixed missing selection marks on scroll bar for editors r=NeilDeakin

and textarea as a particular case

Differential Revision: https://phabricator.services.mozilla.com/D276421

Diffstat:
Mtoolkit/modules/FinderHighlighter.sys.mjs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/toolkit/modules/FinderHighlighter.sys.mjs b/toolkit/modules/FinderHighlighter.sys.mjs @@ -607,7 +607,7 @@ FinderHighlighter.prototype = { let hasRanges = false; if (window) { let controllers = [this.finder._getSelectionController(window)]; - let editors = this.editors; + let editors = this._editors; if (editors) { // Add the selection controllers from any input fields. controllers.push(...editors.map(editor => editor.selectionController));