mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
fix(ext/web): correct string tag for MessageEvent (#24134)
This commit is contained in:
parent
f5d749d922
commit
32f5b4808e
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue