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
commit f188e48c3c
Notes: sideshowbarker 2024-07-18 02:49:06 +09:00
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);