mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 08:48:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,49 @@
|
|||
<!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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue