Skip to content

Commit

Permalink
[giow] (0) Define whether amountBuffered includes overhead or not (it…
Browse files Browse the repository at this point in the history
… does not).

Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=9083

git-svn-id: http://svn.whatwg.org/webapps@4812 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Feb 25, 2010
1 parent 934df39 commit 87b4160
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions complete.html
Expand Up @@ -67056,8 +67056,9 @@ <h4 id=the-websocket-interface><span class=secno>10.3.2 </span>The <code><a href

<hr><p>The <dfn id=dom-websocket-bufferedamount title=dom-WebSocket-bufferedAmount><code>bufferedAmount</code></dfn>
attribute must return the number of bytes that have been queued but
not yet sent. If the connection is closed, this attribute's value
will only increase with each call to the <code title=dom-WebSocket-send><a href=#dom-websocket-send>send()</a></code> method (the number does not
not yet sent. This does not include framing overhead incurred by the
protocol. If the connection is closed, this attribute's value will
only increase with each call to the <code title=dom-WebSocket-send><a href=#dom-websocket-send>send()</a></code> method (the number does not
reset to zero once the connection closes).</p>

<div class=example>
Expand Down
5 changes: 3 additions & 2 deletions source
Expand Up @@ -75386,8 +75386,9 @@ interface <dfn>WebSocket</dfn> {
<p>The <dfn
title="dom-WebSocket-bufferedAmount"><code>bufferedAmount</code></dfn>
attribute must return the number of bytes that have been queued but
not yet sent. If the connection is closed, this attribute's value
will only increase with each call to the <code
not yet sent. This does not include framing overhead incurred by the
protocol. If the connection is closed, this attribute's value will
only increase with each call to the <code
title="dom-WebSocket-send">send()</code> method (the number does not
reset to zero once the connection closes).</p>

Expand Down

0 comments on commit 87b4160

Please sign in to comment.