summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/interfaces/DedicatedWorkerGlobalScope/postMessage/setting-postMessage.html
blob: 5b3e014e1e08c49bd631a912a9d8c4dfa7b42859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>setting postMessage</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
(async_test()).step(function() {
  var worker = new Worker('setting-postMessage.js');
  worker.onmessage = this.step_func(function(e) {
    assert_true(e.data);
    this.done();
  });
});
</script>