Re: [whatwg/fetch] fetch assumes a url's object is always a Blob (#457)

So
```js
stream = new MediaStream();
streamURL = URL.createObjectURL(stream);
fetch(streamURL);
```
does indeed result in a `TypeError` in Chrome and Firefox (same for `MediaSource`), but what can _streamURL_ be used for then? If you cannot fetch it, why support it to begin with?

-- 
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/457#issuecomment-381982012

Received on Tuesday, 17 April 2018 13:02:28 UTC