From fbaf0bb26397aa498eb9156f06d5a6fe34dd7dd8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 03:14:29 +0200 Subject: Merging upstream version 125.0.1. Signed-off-by: Daniel Baumann --- toolkit/actors/AutoScrollChild.sys.mjs | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) (limited to 'toolkit/actors/AutoScrollChild.sys.mjs') 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( -- cgit v1.2.3