1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:47:35 +00:00

LibWeb: Add Event.timeStamp

Note that the value is always 0 for now. Actually initializing the time
stamp is left as a FIXME.
This commit is contained in:
Andreas Kling 2021-10-11 18:17:23 +02:00
parent f952db1a1f
commit f188e48c3c
3 changed files with 13 additions and 0 deletions

View file

@ -21,6 +21,7 @@ interface Event {
readonly attribute boolean composed;
readonly attribute boolean isTrusted;
readonly attribute double timeStamp;
undefined initEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false);