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
da10286869
commit
2ca9466dcd
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
|
// TODO(lucacasonato): remove when this interface is spec aligned
|
||||||
[SymbolToStringTag] = "CloseEvent";
|
[SymbolToStringTag] = "MessageEvent";
|
||||||
}
|
}
|
||||||
|
|
||||||
const MessageEventPrototype = MessageEvent.prototype;
|
const MessageEventPrototype = MessageEvent.prototype;
|
||||||
|
|
|
@ -12355,7 +12355,7 @@
|
||||||
"return-value.worker.html": true,
|
"return-value.worker.html": true,
|
||||||
"event-ports-dedicated.html": true,
|
"event-ports-dedicated.html": true,
|
||||||
"imagedata-cloned-canvas-in-array.html": false,
|
"imagedata-cloned-canvas-in-array.html": false,
|
||||||
"message-event.html": false,
|
"message-event.html": true,
|
||||||
"second-argument-dictionary.html": true,
|
"second-argument-dictionary.html": true,
|
||||||
"second-argument-null-in-array.html": true,
|
"second-argument-null-in-array.html": true,
|
||||||
"second-argument-null.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.
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
// This script is used to run WPT tests for Deno.
|
// This script is used to run WPT tests for Deno.
|
||||||
|
|
Loading…
Reference in a new issue