Files
2018-02-02 04:16:08 -05:00

17 lines
485 B
HTML

<!doctype html>
<meta charset=utf-8>
<title>WebSockets: setting bufferedAmount</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.bufferedAmount = 5;
assert_equals(ws.bufferedAmount, 0);
});
</script>