summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-10-01 18:30:30 +0300
committerAndreas Kling <kling@serenityos.org>2021-10-01 20:14:45 +0200
commit9863de4609d81a0c6b97556e13f2bc19c2c8c449 (patch)
treee43170dabb3ca766968d64e69bb09cbeebea55b3 /Userland/Libraries/LibWeb/HTML/MessageEvent.idl
parentb53fc8ad3d4da15e1c7ec6ccd9889f261c5d160a (diff)
downloadserenity-9863de4609d81a0c6b97556e13f2bc19c2c8c449.zip
LibWeb: Add the lastEventId IDL attribute to MessageEvent
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/MessageEvent.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/MessageEvent.idl4
1 files changed, 3 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/MessageEvent.idl b/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
index b78b8530ba..5eadf05c26 100644
--- a/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
+++ b/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
@@ -2,5 +2,7 @@ interface MessageEvent : Event {
readonly attribute any data;
readonly attribute USVString origin;
-
+ readonly attribute DOMString lastEventId;
+ // FIXME: readonly attribute MessageEventSource? source;
+ // FIXME: readonly attribute FrozenArray<MessagePort> ports;
};