Home | History | Annotate | Download | only in mjsunit

Lines Matching refs:Worker

28 // Test the Worker API of d8.  This test only makes sense with d8. A Worker
33 `postMessage('Starting worker');
34 // Set a global variable; should not be visible outside of the worker's
92 if (this.Worker) {
101 var w = new Worker(workerScript);
103 assertEquals("Starting worker", w.getMessage());
126 // Read a message from the worker.
133 // the worker dies without posting a message.
134 var w2 = new Worker('');