summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/message-channels/003.html
blob: 7addaeb0faf55c20e3c5ec896f0cd6660d3ef61b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<title>onmessage implied start()</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function(t) {
  var channel = new MessageChannel();
  channel.port1.postMessage(1);
  channel.port2.onmessage = function() {
    setTimeout(t.step_func(function() {
      t.done();
    }), 50);
    channel.port2.onmessage = t.step_func(function() {
      assert_unreached();
    });
  }; // implies start()
});
</script>