1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 22:48:11 +00:00

LibWeb: Change the IDL type of MessageEvent::data to any

This commit is contained in:
Idan Horowitz 2021-10-01 18:21:38 +03:00 committed by Andreas Kling
parent ded8e84f32
commit b53fc8ad3d
4 changed files with 9 additions and 10 deletions

View file

@ -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;
};