Fix termination in Worker test

Function names are case sensitive, `onMessage` is not the same as
`onmessage`.

Related to #98
This commit is contained in:
Akos Kiss 2024-07-27 11:34:49 +02:00 committed by Charlie Gordon
parent 012451d5f3
commit 6e2e68fd08
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ function handle_msg(e) {
switch(ev.type) { switch(ev.type) {
case "abort": case "abort":
parent.postMessage({ type: "done" }); parent.postMessage({ type: "done" });
parent.onMessage = null; /* terminate the worker */ parent.onmessage = null; /* terminate the worker */
break; break;
case "sab": case "sab":
/* modify the SharedArrayBuffer */ /* modify the SharedArrayBuffer */