blob: 58df1d618172b95558880a7f5f43eaa816c16c65 [file] [log] [blame]
<!doctype html>
<title>WebSockets: listening for events with onclose</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../../../constants.js?pipe=sub></script>
<meta name="variant" content="">
<meta name="variant" content="?wss">
<div id=log></div>
<script>
async_test(function(t) {
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
var foo = t.step_func(function (e) {
if (e.detail == 5)
t.done();
});
ws.onclose = foo;
var ev = document.createEvent('UIEvents');
ev.initUIEvent('close', false, false, window, 5);
ws.dispatchEvent(ev);
});
</script>