summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/interfaces/SharedWorkerGlobalScope/onconnect.html
blob: 8a0f103d40e1e20a118bad300e67f0f24db35f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!doctype html>
<title>onconnect</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
async_test(function() {
  var w1 = new SharedWorker('onconnect.js', '');
  w1.port.addEventListener('message', this.step_func(function(e) {
    assert_array_equals(e.data, ['null', 'null', 'function', '']);
  }), false);
  w1.port.start();
});
</script>