Chrome Can't Load Web Worker

Chrome can't load web worker

Chrome doesn't let you load web workers when running scripts from a local file.

Chrome not loading latest version of web worker script (runs a cached version)

Your web server determines how cachable a given web resource is and the browser attempts to respect those settings, caching resources that the web server says it is OK to cache, not caching things it says shouldn't be cached.

If you want to change that, you have these options:

  1. Clear the browser cache manually
  2. Temporarily turn off browser caching.
  3. Temporarily change the settings on your web server to instruct the browser not to cache
  4. Override the cache for just this one web page (shift-F5 in some browsers) to force a reload of new content
  5. Add a query parameter to the URL of the web worker script that you change each time you want it to load a new version.

Web worker settings for chrome

You have to close all the windows of Chrome before opening it with --allow-file-access-from-files flag on.

To open it in Ubuntu simply write google-chrome --allow-file-access-from-files in your terminal.

WebSQL doesn't work inside Web Worker in Chrome 39

Looks like it isn't a bug and they removed the feature deliberately in Blink:

https://groups.google.com/a/chromium.org/forum/m/#!topic/Blink-dev/SYlD0YVUnQk



Related Topics



Leave a reply



Submit