fix(ext/web): correct string tag for MessageEvent (#24134)

This commit is contained in:
Luca Casonato 2024-06-09 02:03:24 +02:00 committed by Nathan Whitaker
parent da10286869
commit 2ca9466dcd
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -1230,7 +1230,7 @@ class MessageEvent extends Event {
}
// TODO(lucacasonato): remove when this interface is spec aligned
[SymbolToStringTag] = "CloseEvent";
[SymbolToStringTag] = "MessageEvent";
}
const MessageEventPrototype = MessageEvent.prototype;

View file

@ -12355,7 +12355,7 @@
"return-value.worker.html": true,
"event-ports-dedicated.html": true,
"imagedata-cloned-canvas-in-array.html": false,
"message-event.html": false,
"message-event.html": true,
"second-argument-dictionary.html": true,
"second-argument-null-in-array.html": true,
"second-argument-null.html": true,

View file

@ -1,4 +1,4 @@
#!/usr/bin/env -S deno run --unstable --allow-write --allow-read --allow-net --allow-env --allow-run
#!/usr/bin/env -S deno run --allow-write --allow-read --allow-net --allow-env --allow-run
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
// This script is used to run WPT tests for Deno.