1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-22 16:45:08 +00:00
serenity/Libraries/LibWeb/DOM/MouseEvent.idl
Andreas Kling e1bd815a6a LibWeb: Generate Event and MouseEvent bindings from IDL :^)
We still have to hand-write a function to turn an Event& into a wrapper
but this is still a hue improvement. Eventually we'll find a way to
auto-generate that function as well.
2020-06-21 16:12:28 +02:00

6 lines
113 B
Text

interface MouseEvent : Event {
readonly attribute double offsetX;
readonly attribute double offsetY;
}