summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/interfaces/DedicatedWorkerGlobalScope/postMessage/return-value.worker.js
blob: 521251699a083de973151c5a052e2012e1d1722a (plain)
1
2
3
4
5
6
7
8
importScripts("/resources/testharness.js");

test(function() {
  var rv = postMessage(1);
  assert_equals(rv, undefined);
}, "return value of postMessage");

done();