mirror of
https://github.com/RGBCube/serenity
synced 2025-07-14 19:27:34 +00:00
8 lines
194 B
Text
8 lines
194 B
Text
interface MouseEvent : UIEvent {
|
|
|
|
readonly attribute double offsetX;
|
|
readonly attribute double offsetY;
|
|
readonly attribute double clientX;
|
|
readonly attribute double clientY;
|
|
|
|
};
|