- From: Lewis Phạm <notifications@github.com>
- Date: Mon, 05 Sep 2016 12:15:44 -0700
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
Received on Monday, 5 September 2016 19:16:14 UTC
I've placed the below code on SW root for testing `matchAll` with a page reload. ``` clients.matchAll({includeUncontrolled: true, type: 'window'}).then(list => console.log(list)); //2 clients printed, it should be one, right? ``` It output 2 clients while there was only one opening page. The terminated one seem to still be kept on the list. Is that a bug? Or is there any property for indicating a closed one? -- 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/972
Received on Monday, 5 September 2016 19:16:14 UTC