mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 11:09:18 +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
|
@ -86,6 +86,19 @@ interface mixin GlobalEventHandlers {
|
|||
attribute EventHandler onwebkitanimationstart;
|
||||
attribute EventHandler onwebkittransitionend;
|
||||
attribute EventHandler onwheel;
|
||||
|
||||
// https://w3c.github.io/pointerevents/#extensions-to-the-globaleventhandlers-mixin
|
||||
attribute EventHandler onpointerover;
|
||||
attribute EventHandler onpointerenter;
|
||||
attribute EventHandler onpointerdown;
|
||||
attribute EventHandler onpointermove;
|
||||
[SecureContext] attribute EventHandler onpointerrawupdate;
|
||||
attribute EventHandler onpointerup;
|
||||
attribute EventHandler onpointercancel;
|
||||
attribute EventHandler onpointerout;
|
||||
attribute EventHandler onpointerleave;
|
||||
attribute EventHandler ongotpointercapture;
|
||||
attribute EventHandler onlostpointercapture;
|
||||
};
|
||||
|
||||
// https://html.spec.whatwg.org/#windoweventhandlers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue