I\'ve been trying to find out just how capable web workers are of distributing processor load. I\'ve yet to find any demos that seem to be able to get my quad core 2600k to even
var code = "while(true){}";
var URL = window.webkitURL || window.URL;
var bb = new Blob([code], {type : 'text/javascript'});
code = URL.createObjectURL(bb);
new Worker(code);
new Worker(code);
new Worker(code);
new Worker(code);