mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 09:37:44 +00:00
LibWeb: Add MouseEvent.x and MouseEvent.y
Per the CSSOM View spec, these are aliases for clientX and clientY.
This commit is contained in:
parent
8964f754f5
commit
438c5bce6c
2 changed files with 6 additions and 0 deletions
|
@ -4,5 +4,7 @@ interface MouseEvent : UIEvent {
|
|||
readonly attribute double offsetY;
|
||||
readonly attribute double clientX;
|
||||
readonly attribute double clientY;
|
||||
readonly attribute double x;
|
||||
readonly attribute double y;
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue