1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00

LibWeb: Implement the PointerEvent interface

As defined in: https://w3c.github.io/pointerevents

With the exception of the getCoalescedEvents and getPredictedEvents
APIs.

There are still many other parts of that spec (such as the event
handlers) left to implement, but this does get us at least some of the
way.
This commit is contained in:
Shannon Booth 2024-04-07 19:51:02 +02:00 committed by Andreas Kling
parent d7b77d7695
commit b873e5bc1d
Notes: sideshowbarker 2024-07-16 21:45:42 +09:00
9 changed files with 224 additions and 0 deletions

View file

@ -279,6 +279,7 @@ libweb_js_bindings(Selection/Selection)
libweb_js_bindings(UIEvents/FocusEvent)
libweb_js_bindings(UIEvents/KeyboardEvent)
libweb_js_bindings(UIEvents/MouseEvent)
libweb_js_bindings(UIEvents/PointerEvent)
libweb_js_bindings(UIEvents/UIEvent)
libweb_js_bindings(UIEvents/WheelEvent)
libweb_js_bindings(UserTiming/PerformanceMark)