[whatwg/streams] TransformStream does not propagate the argument passed to cancel (#768)

I just want to check that this is the expected behaviour.

```javascript
const ts = new TransformStream();
const closedPromise = ts.writable.getWriter().closed;
ts.readable.cancel(new Error('hay'));
closedPromise.catch(e => console.log(e.message));  // logs 'Readable side canceled'
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/streams/issues/768

Received on Monday, 21 August 2017 15:16:22 UTC