Sto lavorando a un progetto che utilizza un web worker.
Nella mia sezione di testa ho questo codice:
var worker = new Worker("worker.js");
// More code
Funziona bene in Safari, ma Chrome segnala il seguente errore:
Uncaught SecurityError: Failed to create a worker: script at '(path)/worker.js' cannot be accessed from origin 'null'.
Perché funziona perfettamente in Safari ma non in Chrome? Come lo risolvo?
Grazie.
file:///E:/programming/web/project/worker.js
. Il percorso per il progetto principale è questo: file:///E:/programming/web/project/index.html
.