blob: a880126d8cb1662cf8f5261e96a74ba182b79740 [file] [log] [blame]
<!doctype html>
<title>WebSockets: replacing close</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>
test(function() {
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
ws.close = 5;
assert_equals(ws.close, 5);
});
</script>