https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1b3b2ab7254654e44c418d3c46e9fe7690b1857e authored by James Graham on 12 March 2014, 15:23:28 UTC
Fix manifest JSONifier for new iteration API.
Tip revision: 1b3b2ab
003.html
<!doctype html>
<title>WebSockets: origin</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../constants.js?pipe=sub></script>
<div id=log></div>
<script>
async_test(function(t) {
  var ws = new WebSocket(SCHEME_AND_DOMAIN+'/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.step_func(function() {assert_unreached()});  
      setTimeout(t.step_func(function() {t.done();}), 50)
    })
    ws.close();
  })
  ws.onerror = ws.onclose = t.step_func(function() {assert_unreached()});
});
</script>
back to top