mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
50 lines
1.8 KiB
HTML
50 lines
1.8 KiB
HTML
<!doctype html>
|
|
<title>WebSockets: toString(), bubbles, cancelable</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>
|
|
var ws = null;
|
|
setup(function() {
|
|
ws = new WebSocket(SCHEME_DOMAIN_PORT+'/echo_raw');
|
|
});
|
|
|
|
async_test(function(t) {
|
|
ws.addEventListener('open', t.step_func_done(function(e) {
|
|
// first a text frame, then a frame with reserved opcode 3
|
|
// which should fail the connection
|
|
ws.send('\\x81\\x04test\\x83\\x03LOL');
|
|
assert_equals(e.toString(), '[object Event]', "open e.toString()");
|
|
assert_equals(e.bubbles, false, 'open e.bubbles');
|
|
assert_equals(e.cancelable, false, 'open e.cancelable');
|
|
}), false);
|
|
}, "open event");
|
|
|
|
async_test(function(t) {
|
|
ws.addEventListener('message', t.step_func_done(function(e) {
|
|
assert_equals(e.toString(), '[object MessageEvent]', "message e.toString()");
|
|
assert_equals(e.bubbles, false, 'message e.bubbles');
|
|
assert_equals(e.cancelable, false, 'message e.cancelable');
|
|
}), false);
|
|
}, "message event");
|
|
|
|
async_test(function(t) {
|
|
ws.addEventListener('error', t.step_func_done(function(e) {
|
|
assert_equals(e.toString(), '[object Event]', "error e.toString()");
|
|
assert_equals(e.bubbles, false, 'error e.bubbles');
|
|
assert_equals(e.cancelable, false, 'error e.cancelable');
|
|
}), false);
|
|
}, "error event");
|
|
|
|
async_test(function(t) {
|
|
ws.addEventListener('close', t.step_func_done(function(e) {
|
|
assert_equals(e.toString(), '[object CloseEvent]', "close e.toString()");
|
|
assert_equals(e.bubbles, false, 'close e.bubbles');
|
|
assert_equals(e.cancelable, false, 'close e.cancelable');
|
|
}), false);
|
|
}, "close event");
|
|
</script>
|