Closed Bug 1675847 Opened 4 years ago Closed 10 months ago

Update click/auxclick/contextmenu and click() to use PointerEvent

Categories

(Core :: DOM: UI Events & Focus Handling, task, P2)

task

Tracking

()

RESOLVED FIXED
129 Branch
Webcompat Priority P2
Tracking Status
firefox129 --- fixed

People

(Reporter: d, Assigned: masayuki)

References

(Blocks 3 open bugs)

Details

(Keywords: parity-chrome, parity-edge, webcompat:platform-bug)

Attachments

(5 files)

Severity: -- → S3
Priority: -- → P3

Could you please clarify what is the current status for this ticket? The use case affected by the issue is not being able to identify touch devices correctly in the 'click' handler as pointer type is undefined (expected 'touch').

Olli showed the interest in the relevant PRs and I guess that means we can do this 🙂

Webcompat Priority: --- → ?
Webcompat Priority: ? → P2
Blocks: 1710498
Blocks: 1675246
Blocks: 1534199
No longer depends on: 1534199
See Also: 1534199

Assigning to Masayuki as he is currently working on this.

Assignee: nobody → masayuki
Priority: P3 → P2

Due to need to update EventNameList, we cannot fix this behind a pref. Smaug, do you think that we should fix this only in the Nightly channel with using #ifdef?

Flags: needinfo?(smaug)

That might be reasonable, assuming it is not too hard.
(Other option is to land the patches very early in a cycle so that we get more testing - but I'm not super worried about webcompat issues here.)

Flags: needinfo?(smaug)

(In reply to Masayuki Nakano [:masayuki] (he/him)(JST, +0900) from comment #5)

Due to need to update EventNameList, we cannot fix this behind a pref. Smaug, do you think that we should fix this only in the Nightly channel with using #ifdef?

It's still a header file, can't it be StaticPrefs::pref() ? ePointerEventClass : eMouseEventClass or such?

(In reply to Olli Pettay [:smaug][bugs@pettay.fi] from comment #6)

That might be reasonable, assuming it is not too hard.
(Other option is to land the patches very early in a cycle so that we get more testing - but I'm not super worried about webcompat issues here.)

Okay, I'll add new macros to make it switchable at build time.

(In reply to Kagami Rosylight [:saschanaz] (they/them) from comment #7)

(In reply to Masayuki Nakano [:masayuki] (he/him)(JST, +0900) from comment #5)

Due to need to update EventNameList, we cannot fix this behind a pref. Smaug, do you think that we should fix this only in the Nightly channel with using #ifdef?

It's still a header file, can't it be StaticPrefs::pref() ? ePointerEventClass : eMouseEventClass or such?

Although some header files include mozilla/StaticPrefs_*.h, but I don't like to include it from EventNameList.h for the build performance even if we could.

(In reply to Masayuki Nakano [:masayuki] (he/him)(JST, +0900) from comment #8)

Although some header files include mozilla/StaticPrefs_*.h, but I don't like to include it from EventNameList.h for the build performance even if we could.

How many files need to include the StaticPref header if we did this? dom/html has #define EVENT /* nothing */ so maybe only the 4 files in dom/base? https://searchfox.org/mozilla-central/search?q=%23define+EVENT%28&path=&case=true&regexp=false (Two of them are headers again, which can have more effect though. The other two already are using StaticPrefs_dom.)

Oh, the EventClassId looks like not used excpt nsContentUtils. So, including it in the user side could make the dependency simpler. I'll try.

This patch makes the all ePointerClick event dispatcher in C++ code use
WidgetPointerEvent instead of WidgetMouseEvent.

Then, this patch also makes the all click event dispatcher in chrome code use
PointerEvent instead of MouseEvent. For detecting wrong trusted event
dispatching of click event, this patch adds assertion into MouseEvent.
Therefore, all chrome test dispatchers also changed to use PointerEvent.

Finally, this patch includes a change of a WPT. That checks the pointerId
caused by executing an access key. In this case, the value should be -1
rather than the default value 0 because Pointer Event spec defines so for
synthetic pointer events caused by non-pointing devices [1]. Chrome also
sets it to -1 and fails [2]. Therefore, the new assertion will pass on both
Firefox and Chrome.

  1. https://w3c.github.io/pointerevents/#dom-pointerevent-pointerid
  2. https://wpt.fyi/results/uievents/interface/keyboard-accesskey-click-event.html?run_id=5087897523060736&run_id=5136270464647168&run_id=5163620816388096&run_id=5201281304231936

Depends on D213000

eContextMenu event may be fired from widget. Therefore, different from
ePointerClick and ePointerAuxClick, they may cross the process boundary,
may be handled by APZ and may be dispatched into the DOM after a delay.
Therefore, this patch is complicated than the previous patch. This adds

  • New IPC message handlers for sending/receiving a WidgetPointerEvent
  • New DelayedPointerEvent class and templated MouseInput::ToWidgetEvent
  • PresShell::EventHandler handles eContextMenu as same as WidgetMouseEvent

Depends on D213002

mconley: could you review the patch as @pip-reviwers or ping somebody else to do it?

Flags: needinfo?(mconley)

Sure, I can do it - sorry for the delay.

Flags: needinfo?(mconley)

(In reply to Mike Conley (:mconley) (:⚙️) from comment #18)

Sure, I can do it - sorry for the delay.

Thak you!

Pushed by masayuki@d-toybox.com: https://hg.mozilla.org/integration/autoland/rev/1151acb648a3 part 1: Rename `eMouseClick` and `eMouseAuxClick` r=smaug https://hg.mozilla.org/integration/autoland/rev/91d448af3993 part 2: Rename some methods which handle "MouseClick" r=smaug https://hg.mozilla.org/integration/autoland/rev/9a2834bb1a8e part 3: Make `ePointerClick` event dispatchers and handlers use `WidgetPointerEvent` r=smaug,search-reviewers,devtools-reviewers,nchevobbe,jteow https://hg.mozilla.org/integration/autoland/rev/449d6e7af6a6 part 4: Make `ePointerAuxClick` event dispatchers use `WidgetPointerEvent` r=smaug https://hg.mozilla.org/integration/autoland/rev/1c3c048669bd part 5: Make `contextmenu` event dispatchers use `WidgetPointerEvent` or `PointerEvent` r=smaug,pip-reviewers,devtools-reviewers,nchevobbe,mconley
Created web-platform-tests PR https://github.com/web-platform-tests/wpt/pull/46743 for changes under testing/web-platform/tests

Woohoo, thank you for doing this!

Upstream PR merged by moz-wptsync-bot
Blocks: 1693193
Type: defect → task
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: