mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
38 lines
1.3 KiB
HTML
38 lines
1.3 KiB
HTML
<!doctype html>
|
|
<title>WebSockets: addEventListener</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+'/echo');
|
|
var count = 0;
|
|
var checkCount = t.step_func(function (c, e) {
|
|
count++;
|
|
assert_equals(count, c);
|
|
});
|
|
// no spec requires this order for event listeners but the web does
|
|
ws.addEventListener('open', t.step_func(function(e) {
|
|
checkCount(1, e);
|
|
ws.send('Goodbye');
|
|
}), false);
|
|
ws.onopen = t.step_func(function(e) {checkCount(2, e) });
|
|
ws.addEventListener('open', t.step_func(function(e) {checkCount(3, e); }), false);
|
|
|
|
ws.addEventListener('message', t.step_func(function(e) {checkCount(4, e); }), false);
|
|
ws.onmessage = t.step_func(function(e) {checkCount(5, e) });
|
|
ws.addEventListener('message', t.step_func(function(e) {checkCount(6, e); }), false);
|
|
|
|
ws.addEventListener('close', t.step_func(function(e) {checkCount(7, e); }), false);
|
|
ws.onclose = t.step_func(function(e) {checkCount(8, e) });
|
|
ws.addEventListener('close', t.step_func(function(e) {
|
|
checkCount(9, e);
|
|
t.done();
|
|
}), false);
|
|
|
|
});
|
|
</script>
|