Re: [w3c/ServiceWorker] When should "imported scripts updated flag" be unset? (#1021)

With a simple test code:

```js
self.oninstall = e => {
  importScripts('importedscript1.js');
};

self.onfetch = e => {
  importScripts('importedscript2.js');
};
```

Both importedscript1.js and importedscript2.js execute (without a network error) in both Firefox and Chrome without `importScripts()` to those urls in the top-level script. I'm confused. This is not expected to be working according to what @wanderview and @mattto mentioned? Am I misunderstanding?

-- 
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/1021#issuecomment-266678830

Received on Tuesday, 13 December 2016 08:41:27 UTC