whatwg / streams

Streams Standard
https://streams.spec.whatwg.org/
Other
1.35k stars 160 forks source link

WritableStreamDefaultController uses AbortSignal on Worklet where it isn't exposed #1199

Closed evilpie closed 1 year ago

evilpie commented 2 years ago

I am not sure where the right place to open this issue is. WritableStreamDefaultController is exposed on (Window,Worker,Worklet) and uses AbortSignal signal. AbortSignal itself however is only exposed on Window,Worker.

MattiasBuelens commented 2 years ago

Good catch. I suppose the intention is that AbortSignal would also be exposed to worklets.

This should be fixed in #1176 together with whatwg/dom#1024.

saschanaz commented 1 year ago

Seems this is fixed.