LibWeb: Update FIXMEs about FrozenArray with more up-to-date description

We could support FrozenArray pretty easily here, but we would regress on
SameObject handling.
This commit is contained in:
Timothy Flynn 2025-04-25 10:13:26 -04:00 committed by Jelle Raaijmakers
commit 4e298db4f5
Notes: github-actions[bot] 2025-04-25 14:44:46 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ interface MessageEvent : Event {
readonly attribute USVString origin;
readonly attribute DOMString lastEventId;
readonly attribute MessageEventSource? source;
// FIXME: readonly attribute FrozenArray<MessagePort> ports;
// FIXME: This should be FrozenArray<MessagePort>, but must also always return the same object.
readonly attribute any ports;
undefined initMessageEvent(DOMString type, optional boolean bubbles = false, optional boolean cancelable = false, optional any data = null, optional USVString origin = "", optional DOMString lastEventId = "", optional MessageEventSource? source = null, optional sequence<MessagePort> ports = []);