From 2665ca103e64ae07d7c29d3400d0c37ec691ff50 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 10 Oct 2023 12:01:01 +0900 Subject: fix(ext/web): writability of `ReadableStream.from` (#20836) Fixes a WPT in `URL` and `ReadableStream`. Some unrelated WPT expectation changes due to WPT update. --- ext/web/03_abort_signal.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ext/web/03_abort_signal.js') diff --git a/ext/web/03_abort_signal.js b/ext/web/03_abort_signal.js index 2cc64189b..9b5eb51ad 100644 --- a/ext/web/03_abort_signal.js +++ b/ext/web/03_abort_signal.js @@ -152,7 +152,7 @@ class AbortSignal extends EventTarget { } defineEventHandler(AbortSignal.prototype, "abort"); -webidl.configurePrototype(AbortSignal); +webidl.configureInterface(AbortSignal); const AbortSignalPrototype = AbortSignal.prototype; class AbortController { @@ -173,7 +173,7 @@ class AbortController { } } -webidl.configurePrototype(AbortController); +webidl.configureInterface(AbortController); const AbortControllerPrototype = AbortController.prototype; webidl.converters["AbortSignal"] = webidl.createInterfaceConverter( -- cgit v1.2.3