summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/interfaces/WorkerGlobalScope/close/incoming-message.js
blob: b4f7e7fc05552fcdccb3f846e117eec83e8e9f92 (plain)
1
2
3
4
5
onmessage = function(e) {
  postMessage(1);
  throw new Error();
}
close();