summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2021-10-01 18:21:38 +0300
committerAndreas Kling <kling@serenityos.org>2021-10-01 20:14:45 +0200
commitb53fc8ad3d4da15e1c7ec6ccd9889f261c5d160a (patch)
treebb2cc00b91df3ff7f12d97c35c412795fa667bdd /Userland/Libraries/LibWeb/HTML/MessageEvent.idl
parentded8e84f32cf937bf1115f2a8dd0d19db55e212a (diff)
downloadserenity-b53fc8ad3d4da15e1c7ec6ccd9889f261c5d160a.zip
LibWeb: Change the IDL type of MessageEvent::data to any
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/MessageEvent.idl')
-rw-r--r--Userland/Libraries/LibWeb/HTML/MessageEvent.idl3
1 files changed, 1 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/MessageEvent.idl b/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
index 25ff644fdd..b78b8530ba 100644
--- a/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
+++ b/Userland/Libraries/LibWeb/HTML/MessageEvent.idl
@@ -1,7 +1,6 @@
interface MessageEvent : Event {
- // FIXME: This should be of type "any" instead of "USVString"
- readonly attribute USVString data;
+ readonly attribute any data;
readonly attribute USVString origin;
};