1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-14 19:27:34 +00:00
serenity/Userland/Libraries/LibWeb/UIEvents/MouseEvent.idl
Idan Horowitz b888d14e42 LibWeb: Change the parent interface of MouseEvent to UIEvent
This was accidentally set to Event
2021-10-01 20:14:45 +02:00

8 lines
194 B
Text

interface MouseEvent : UIEvent {
readonly attribute double offsetX;
readonly attribute double offsetY;
readonly attribute double clientX;
readonly attribute double clientY;
};