Implements pageX and pageY attributes

This commit is contained in:
Micah Tigley 2019-10-16 11:31:57 -04:00
parent 58c61d3aed
commit 4b93a2350c
5 changed files with 49 additions and 15 deletions

View file

@ -10,6 +10,8 @@ interface MouseEvent : UIEvent {
readonly attribute long screenY;
readonly attribute long clientX;
readonly attribute long clientY;
readonly attribute long pageX;
readonly attribute long pageY;
readonly attribute boolean ctrlKey;
readonly attribute boolean shiftKey;
readonly attribute boolean altKey;