blob: 122928122b1a141dfcdeb05fcf6a538ddf00666d [file] [log] [blame]
<!doctype html>
<title>WebSockets: listening for events with onerror</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_DOMAIN_PORT+'/');
var run = false;
var foo = t.step_func(function (e) {
run = true;
assert_equals(e.detail, 5)
});
ws.onerror = foo;
var ev = document.createEvent('UIEvents');
ev.initUIEvent('error', false, false, window, 5);
ws.dispatchEvent(ev);
assert_true(run);
t.done();
});
</script>