mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 03:37:53 +00:00
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.
7 lines
113 B
Plaintext
7 lines
113 B
Plaintext
interface MouseEvent : Event {
|
|
|
|
readonly attribute double offsetX;
|
|
readonly attribute double offsetY;
|
|
|
|
}
|