Re: [slightlyoff/ServiceWorker] How are unloaded tabs represented? (#626)

In the dev mindset, an open tab (i.e. a tab which is in the tab panel, in case of Firefox OS, an app present in the app switcher) is a client. It does not matter if it is evicted, sleep or whatever, if it is listed I don't mind (and I don't know) what special treatments the browser is giving to them so I would make `getAll()` to always include these windows and, for fine tuning, to opt-out:

```js
clients.matchAll({
  state: 'evicted' // platform-dependent
})
```

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

Received on Tuesday, 7 June 2016 07:46:07 UTC