1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 02:17:34 +00:00

LibWeb: Add button property in MouseEvent

This commit is contained in:
Aliaksandr Kalenik 2022-10-20 20:56:38 +03:00 committed by Linus Groh
parent 501fb1cccb
commit 9cbf031b6d
10 changed files with 48 additions and 41 deletions

View file

@ -10,7 +10,7 @@ interface MouseEvent : UIEvent {
readonly attribute double y;
readonly attribute short button;
readonly attribute unsigned short buttons;
};
dictionary MouseEventInit : EventModifierInit {