mirror of
https://github.com/RGBCube/serenity
synced 2025-10-28 01:22:06 +00:00
The intent is to use these to autogenerate prototype declarations for Window and WorkerGlobalScope classes. And the spec links are just nice to have :^)
26 lines
No EOL
586 B
Text
26 lines
No EOL
586 B
Text
// https://w3c.github.io/uievents/#mouseevent
|
|
[Exposed=Window]
|
|
interface MouseEvent : UIEvent {
|
|
|
|
readonly attribute double offsetX;
|
|
readonly attribute double offsetY;
|
|
readonly attribute double clientX;
|
|
readonly attribute double clientY;
|
|
readonly attribute double x;
|
|
readonly attribute double y;
|
|
|
|
readonly attribute short button;
|
|
|
|
};
|
|
|
|
dictionary MouseEventInit : EventModifierInit {
|
|
|
|
// FIXME: offsetX and offsetY shouldn't be here.
|
|
double offsetX = 0;
|
|
double offsetY = 0;
|
|
double clientX = 0;
|
|
double clientY = 0;
|
|
|
|
short button = 0;
|
|
|
|
}; |