diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /toolkit/actors/AutoScrollChild.sys.mjs | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/actors/AutoScrollChild.sys.mjs')
-rw-r--r-- | toolkit/actors/AutoScrollChild.sys.mjs | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/toolkit/actors/AutoScrollChild.sys.mjs b/toolkit/actors/AutoScrollChild.sys.mjs index 25e2ae77a5..11324b4eaa 100644 --- a/toolkit/actors/AutoScrollChild.sys.mjs +++ b/toolkit/actors/AutoScrollChild.sys.mjs @@ -215,8 +215,14 @@ export class AutoScrollChild extends JSWindowActorChild { return; } - Services.els.addSystemEventListener(this.document, "mousemove", this, true); - Services.els.addSystemEventListener(this.document, "mouseup", this, true); + this.document.addEventListener("mousemove", this, { + capture: true, + mozSystemGroup: true, + }); + this.document.addEventListener("mouseup", this, { + capture: true, + mozSystemGroup: true, + }); this.document.addEventListener("pagehide", this, true); this._startX = event.screenX; @@ -254,18 +260,14 @@ export class AutoScrollChild extends JSWindowActorChild { this._scrollable.mozScrollSnap(); this._scrollable = null; - Services.els.removeSystemEventListener( - this.document, - "mousemove", - this, - true - ); - Services.els.removeSystemEventListener( - this.document, - "mouseup", - this, - true - ); + this.document.removeEventListener("mousemove", this, { + capture: true, + mozSystemGroup: true, + }); + this.document.removeEventListener("mouseup", this, { + capture: true, + mozSystemGroup: true, + }); this.document.removeEventListener("pagehide", this, true); if (this._autoscrollHandledByApz) { Services.obs.removeObserver( |