mirror of
https://github.com/servo/servo
synced 2026-05-02 20:32:02 +02:00
All its users are connecting to port 80, which is not typically under the control of the wpt server.
20 lines
651 B
HTML
20 lines
651 B
HTML
<!doctype html>
|
|
<title>WebSockets: setting event handlers to undefined</title>
|
|
<script src=/resources/testharness.js></script>
|
|
<script src=/resources/testharnessreport.js></script>
|
|
<script src=../../../constants.js?pipe=sub></script>
|
|
<div id=log></div>
|
|
<script>
|
|
var events = ['onclose', 'onopen', 'onerror', 'onmessage'];
|
|
for (var i = 0; i < events.length; ++i) {
|
|
test(function(){
|
|
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/empty-message');
|
|
var foo = function() {}
|
|
ws[events[i]] = foo;
|
|
assert_equals(ws[events[i]], foo, events[i]);
|
|
ws[events[i]] = undefined;
|
|
assert_equals(ws[events[i]], null, events[i]);
|
|
});
|
|
}
|
|
</script>
|