doc-windowless-workers-early-breakpoint.html (265B)
1 <!DOCTYPE HTML> 2 <html> 3 4 <script> 5 startWorker(); 6 7 function startWorker() { 8 new Worker("simple-worker.js"); 9 } 10 function startWorkerWithMessage() { 11 var w = new Worker("simple-worker.js"); 12 w.postMessage({yo: 'yo'}) 13 } 14 </script> 15 16 <body> 17 Hello World! 18 </body> 19 </html>