mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb: Add definitions for PointerEvent event handlers
Also removing a FIXME about not covering all of the event names as it is not exactly clear when such a FIXME would be addressed, especially as these come from multiple specifications.
This commit is contained in:
parent
4d38e04e48
commit
75b7a3e413
Notes:
github-actions[bot]
2024-11-22 13:34:51 +00:00
Author: https://github.com/shannonbooth
Commit: 75b7a3e413
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2500
8 changed files with 806 additions and 27 deletions
|
@ -37,6 +37,7 @@
|
|||
E(onfocusin, HTML::EventNames::focusin) \
|
||||
E(onfocusout, HTML::EventNames::focusout) \
|
||||
E(onformdata, HTML::EventNames::formdata) \
|
||||
E(ongotpointercapture, UIEvents::EventNames::gotpointercapture) \
|
||||
E(oninput, HTML::EventNames::input) \
|
||||
E(oninvalid, HTML::EventNames::invalid) \
|
||||
E(onkeydown, UIEvents::EventNames::keydown) \
|
||||
|
@ -46,6 +47,7 @@
|
|||
E(onloadeddata, HTML::EventNames::loadeddata) \
|
||||
E(onloadedmetadata, HTML::EventNames::loadedmetadata) \
|
||||
E(onloadstart, HTML::EventNames::loadstart) \
|
||||
E(onlostpointercapture, UIEvents::EventNames::lostpointercapture) \
|
||||
E(onmousedown, UIEvents::EventNames::mousedown) \
|
||||
E(onmouseenter, UIEvents::EventNames::mouseenter) \
|
||||
E(onmouseleave, UIEvents::EventNames::mouseleave) \
|
||||
|
@ -56,6 +58,15 @@
|
|||
E(onpause, HTML::EventNames::pause) \
|
||||
E(onplay, HTML::EventNames::play) \
|
||||
E(onplaying, HTML::EventNames::playing) \
|
||||
E(onpointercancel, UIEvents::EventNames::pointercancel) \
|
||||
E(onpointerdown, UIEvents::EventNames::pointerdown) \
|
||||
E(onpointerenter, UIEvents::EventNames::pointerenter) \
|
||||
E(onpointerleave, UIEvents::EventNames::pointerleave) \
|
||||
E(onpointermove, UIEvents::EventNames::pointermove) \
|
||||
E(onpointerout, UIEvents::EventNames::pointerout) \
|
||||
E(onpointerover, UIEvents::EventNames::pointerover) \
|
||||
E(onpointerrawupdate, UIEvents::EventNames::pointerrawupdate) \
|
||||
E(onpointerup, UIEvents::EventNames::pointerup) \
|
||||
E(onprogress, HTML::EventNames::progress) \
|
||||
E(onratechange, HTML::EventNames::ratechange) \
|
||||
E(onreset, HTML::EventNames::reset) \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue