| OLD | NEW |
| 1 This tests that exceptions in setTimeout triggers 'worker.onerror'. | 1 This tests that unhandled exceptions in postMessage() are delivered to 'worker.o
nerror'. |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 | 6 |
| 7 Page-level worker.onerror handler triggered: | 7 Page-level worker.onerror handler triggered: |
| 8 PASS errorEvent.message is "Uncaught Error: Exception in setTimeout callback" | 8 PASS errorEvent.message is "Uncaught TypeError: Second argument is not a sequenc
e type" |
| 9 PASS stripURL(errorEvent.filename) is "[blob: URL]" | 9 PASS stripURL(errorEvent.filename) is "[blob: URL]" |
| 10 PASS errorEvent.lineno is 3 | 10 PASS errorEvent.lineno is 3 |
| 11 PASS errorEvent.colno is 19 | 11 PASS errorEvent.colno is 9 |
| 12 PASS errorEvent.error is null | 12 PASS errorEvent.error is null |
| 13 PASS successfullyParsed is true | 13 PASS successfullyParsed is true |
| 14 | 14 |
| 15 TEST COMPLETE | 15 TEST COMPLETE |
| 16 | 16 |
| OLD | NEW |