blob: 2c6016ced2011158396514f88ff0af555355cc6c [file] [log] [blame]
<!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>
<div id=log></div>
<script>
test(function(){
var ws = new WebSocket(SCHEME_DOMAIN_PORT+'/');
ws.bufferedAmount = 5;
assert_equals(ws.bufferedAmount, 0);
});
</script>