mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02: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;
|
|
|
|
}
|