blob: a3d29d0c94d7ec22af1781cd8fe6f9e8eb8349ac [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.js?pipe=sub></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>