- From: Jungkee Song <notifications@github.com>
 - Date: Tue, 13 Dec 2016 00:40:54 -0800
 - To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
 
Received on Tuesday, 13 December 2016 08:41:27 UTC
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