Re: [ServiceWorker] Returning a FetchPromise from fetch() (#625)

@tabatkins

I'm afraid if in your code

```js
var p = FetchPromise.resolve(waitForUserConfirm('press OK to continue')).then(() => fetch(url));
```

the `p.abort()` can really abort the `fetch` process, which is a basic requirement for us, how can a `FetchPromise.resolve` create a `FetchPromise` which is aware of the `fetch` call?

We don't need a `no-op` abort method, we need one which actually aborts the fetch

---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/625#issuecomment-76680097

Received on Monday, 2 March 2015 09:22:29 UTC