| OLD | NEW |
| 1 Test SharedWorker constructor functionality. Should print a series of PASS messa
ges, followed with DONE. | 1 Test SharedWorker constructor functionality. Should print a series of PASS messa
ges, followed with DONE. |
| 2 | 2 |
| 3 PASS: toString exception propagated correctly. | 3 PASS: toString exception propagated correctly. |
| 4 PASS: trying to create workers recursively resulted in an exception (RangeError:
Maximum call stack size exceeded) | 4 PASS: trying to create workers recursively resulted in an exception (RangeError:
Maximum call stack size exceeded) |
| 5 PASS: invoking SharedWorker constructor without arguments resulted in an excepti
on (TypeError: Not enough arguments) | 5 PASS: invoking SharedWorker constructor without arguments resulted in an excepti
on (TypeError: Failed to execute 'Constructor' on 'SharedWorker': 1 argument req
uired, but only 0 present.) |
| 6 PASS: invoking SharedWorker constructor without name did not result in an except
ion | 6 PASS: invoking SharedWorker constructor without name did not result in an except
ion |
| 7 PASS: invoking SharedWorker constructor with null name did not result in an exce
ption | 7 PASS: invoking SharedWorker constructor with null name did not result in an exce
ption |
| 8 PASS: invoking SharedWorker constructor with undefined name did not result in an
exception | 8 PASS: invoking SharedWorker constructor with undefined name did not result in an
exception |
| 9 PASS: SharedWorker constructor succeeded: [object SharedWorker] | 9 PASS: SharedWorker constructor succeeded: [object SharedWorker] |
| 10 DONE | 10 DONE |
| 11 | 11 |
| OLD | NEW |