mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
19 lines
595 B
HTML
19 lines
595 B
HTML
<!doctype html>
|
|
<title>WebSockets: setting on*</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 events = ['open', 'message', 'error', 'close'];
|
|
for (var i = 0; i < events.length; ++i) {
|
|
test(function(){
|
|
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
|
|
var foo = function () {};
|
|
ws['on'+events[i]] = foo;
|
|
assert_equals(ws['on'+events[i]], foo);
|
|
});
|
|
}
|
|
</script>
|