| <body> | |
| <p>Test CustomEvents on workers. Should print "SUCCESS".</p> | |
| <div id=result></div> | |
| <script> | |
| function log(message) | |
| { | |
| document.getElementById("result").innerHTML += message + "<br>"; | |
| } | |
| if (window.testRunner) { | |
| testRunner.dumpAsText(); | |
| testRunner.waitUntilDone(); | |
| } | |
| var worker = new Worker('resources/worker-custom-event.js'); | |
| worker.postMessage(""); | |
| worker.onmessage = function(evt) { | |
| log(evt.data); | |
| if (window.testRunner) | |
| testRunner.notifyDone(); | |
| } | |
| </script> | |
| </body> | |
| </html> |