Skip to content

Commit e6e0d3b

Browse files
committed
Do not send DOM mouse events as synthesized
1 parent 5ec48fd commit e6e0d3b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

additions/juggler/content/PageAgent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ class PageAgent {
549549
false /*aIgnoreRootScrollFrame*/,
550550
0.0 /*pressure*/,
551551
0 /*inputSource*/,
552-
true /*isDOMEventSynthesized*/,
552+
false /*isDOMEventSynthesized*/,
553553
false /*isWidgetEventSynthesized*/,
554554
0 /*buttons*/,
555555
win.windowUtils.DEFAULT_MOUSE_POINTER_ID /* pointerIdentifier */,

additions/juggler/protocol/PageHandler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ class PageHandler {
529529
false /* aIgnoreRootScrollFrame */,
530530
0.0 /* pressure */,
531531
0 /* inputSource */,
532-
true /* isDOMEventSynthesized */,
532+
false /* isDOMEventSynthesized */,
533533
false /* isWidgetEventSynthesized */,
534534
buttons,
535535
win.windowUtils.DEFAULT_MOUSE_POINTER_ID /* pointerIdentifier */,
@@ -583,7 +583,7 @@ class PageHandler {
583583
false /* aIgnoreRootScrollFrame */,
584584
0.0 /* pressure */,
585585
0 /* inputSource */,
586-
true /* isDOMEventSynthesized */,
586+
false /* isDOMEventSynthesized */,
587587
false /* isWidgetEventSynthesized */,
588588
buttons,
589589
win.windowUtils.DEFAULT_MOUSE_POINTER_ID /* pointerIdentifier */,

0 commit comments

Comments
 (0)