mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-10 10:36:30 +00:00
These provide the cursor coordinate within the viewport at which the event occurred (as opposed to the page relative coordinates exposed via offsetX, offsetY).
9 lines
192 B
Plaintext
9 lines
192 B
Plaintext
interface MouseEvent : Event {
|
|
|
|
readonly attribute double offsetX;
|
|
readonly attribute double offsetY;
|
|
readonly attribute double clientX;
|
|
readonly attribute double clientY;
|
|
|
|
};
|