Re: [fetch] Aborting a fetch (#27)

@jakearchibald 

Requoting myself:

> the code that creates child1 gets to unilaterally decide... 

I'm not suggesting:

```js
child1 = parent.then(..);
child1.cancel();
```

I'm suggesting:

```js
child1 = parent.then(..);
parent.cancel();
```

By having the reference `parent` to observe, I also have the same reference `parent` that lets me cancel it for everyone else.

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

Received on Friday, 27 March 2015 17:32:59 UTC