diff options
| author | Luca Casonato <hello@lcas.dev> | 2023-10-10 12:01:01 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-10 05:01:01 +0200 |
| commit | 2665ca103e64ae07d7c29d3400d0c37ec691ff50 (patch) | |
| tree | 97babf0dbda5b2bbcf9b8e5a54bb0c4608419c98 /ext/web/13_message_port.js | |
| parent | 84c9300aff08a9a1dcb214356f022315cc6736fb (diff) | |
fix(ext/web): writability of `ReadableStream.from` (#20836)
Fixes a WPT in `URL` and `ReadableStream`.
Some unrelated WPT expectation changes due to WPT update.
Diffstat (limited to 'ext/web/13_message_port.js')
| -rw-r--r-- | ext/web/13_message_port.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/web/13_message_port.js b/ext/web/13_message_port.js index ffbc48812..4b0404ab6 100644 --- a/ext/web/13_message_port.js +++ b/ext/web/13_message_port.js @@ -64,7 +64,7 @@ class MessageChannel { } } -webidl.configurePrototype(MessageChannel); +webidl.configureInterface(MessageChannel); const MessageChannelPrototype = MessageChannel.prototype; const _id = Symbol("id"); @@ -188,7 +188,7 @@ defineEventHandler(MessagePort.prototype, "message", function (self) { }); defineEventHandler(MessagePort.prototype, "messageerror"); -webidl.configurePrototype(MessagePort); +webidl.configureInterface(MessagePort); const MessagePortPrototype = MessagePort.prototype; /** |
