623b8f4 w-S(Worker): Set onerror and onmessage according to reality

Authored and Committed by polcak 2 years ago
    w-S(Worker): Set onerror and onmessage according to reality
    
    ```js
    var worker = new Worker("");
    worker.onmessage === null && worker.onerror === null && worker.onmessageerror === null;
    ```
    
    The condition was not fullfiled before this commit
    
        
file modified
+4 -1