mirror of
https://github.com/RGBCube/serenity
synced 2025-07-13 22:17:36 +00:00
10 lines
260 B
Text
10 lines
260 B
Text
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;
|
|
|
|
};
|