Re: [fetch] Proposed backward-incompatible change: requiring cloning all requests/responses (#61)

My concerns are more around:

```js
var request = new Request('/');
fetch(request).then(response => {
  caches.open('whatever').then(c => c.put(request, response));
});
```

…the above currently works in Chrome, are we suggesting it should fail?

---
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/61#issuecomment-110660936

Received on Wednesday, 10 June 2015 08:58:11 UTC