summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/websockets/opening-handshake/003-sets-origin.worker.js
blob: d10e8cb4c49f1252337730d45ea49dd64978702b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
importScripts("/resources/testharness.js");
importScripts('../constants.sub.js');

async_test(function(t) {
  var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/origin');
  ws.onmessage = t.step_func(function(e) {
    assert_equals(e.data, location.protocol+'//'+location.host);
    ws.onclose = t.step_func(function(e) {
      assert_equals(e.wasClean, true);
      ws.onclose = t.unreached_func();
      t.step_timeout(() => t.done(), 50);
    })
    ws.close();
  })
  ws.onerror = ws.onclose = t.unreached_func();
}, "origin set in a Worker");
done();