Re: [streams] Merge ReadableByteStream into ReadableStream (#430)

> @@ -54,13 +54,39 @@ templatedRSTwoChunksClosed('ReadableStream (two chunks enqueued, then closed)',
>  );
>  
>  templatedRSTwoChunksClosed('ReadableStream (two chunks enqueued async, then closed)',
> -  () => new ReadableStream({
> -    start(c) {
> -      setTimeout(() => c.enqueue(chunks[0]), 10);
> -      setTimeout(() => c.enqueue(chunks[1]), 20);
> -      setTimeout(() => c.close(), 30);
> +  () => {

This is also #424?

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/pull/430/files#r54961377

Received on Thursday, 3 March 2016 22:41:54 UTC