blob: 3607f8d8c313a0815dd191610cad1e2ca7c2a191 [file] [log] [blame] [edit]
<!doctype html>
<title>WebSockets: replacing close</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=../../../constants.sub.js></script>
<meta name="variant" content="">
<meta name="variant" content="?wss">
<div id=log></div>
<script>
test(function() {
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
ws.close = 5;
assert_equals(ws.close, 5);
});
</script>