1
0
mirror of https://github.com/roytam1/UXP.git synced 2026-06-14 04:19:22 +00:00
Files
UXP/testing/web-platform/tests/websockets/interfaces/WebSocket/events/020.html
T

18 lines
496 B
HTML

<!doctype html>
<title>WebSockets: error events</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('ws://example.invalid/');
ws.onerror = t.step_func(function(e) {
assert_true(e instanceof Event);
t.done();
})
});
</script>