Re: [whatwg/fetch] bodyUsed don't gets set properly (#396)

Nah, don't think so. maybe should be reported to chromium instead
Think chrome is doing something wrong.

test this part in the console:
```javascript
rs = new ReadableStream({})
res = new Response(rs)
res.body.getReader()
console.log(res.bodyUsed) // false
res.clone()
```

-- 
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/fetch/issues/396#issuecomment-252671016

Received on Monday, 10 October 2016 16:26:28 UTC