[w3c/ServiceWorker] Should register() trigger byte-for-byte checking when WorkerType is updated? (#1408)

```js
// (1) Register sw.js as classic script.
await navigator.serviceWorker.register('sw.js', {type: 'classic'});
// (2) Register sw.js as module script with the same script.
await navigator.serviceWorker.register('sw.js', {type: 'module'});
```
Should (2) install a new ServiceWorker and invoke install/activate event?

-- 
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/1408

Received on Monday, 20 May 2019 07:25:54 UTC