Re: [w3c/ServiceWorker] Consider providing `navigation` event (#1028)

How is this different than a FetchEvent with a "navigate" RequestMode?

```
addEventListener('fetch', evt => {
  if (evt.request.mode === 'navigate') {
    // navigation event stuff here
  }
});
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/1028#issuecomment-267136593

Received on Wednesday, 14 December 2016 19:48:36 UTC