LibWeb: Use correct type for MessageEventInit.ports

This didn't work previously because the IDL generator used the
incorrect type for some types of sequences within dictionaries.
This commit is contained in:
Tim Ledbetter 2024-05-15 20:58:02 +01:00 committed by Andreas Kling
commit 63246577d2
Notes: sideshowbarker 2024-07-17 04:57:23 +09:00
6 changed files with 10 additions and 10 deletions

View file

@ -22,6 +22,5 @@ dictionary MessageEventInit : EventInit {
USVString origin = "";
DOMString lastEventId = "";
MessageEventSource? source = null;
// FIXME: sequence<MessagePort> ports = [];
sequence<object> ports = [];
sequence<MessagePort> ports = [];
};