Skip to content

Commit

Permalink
Fix #296: change bufferedAmount type to 'unsigned long long'
Browse files Browse the repository at this point in the history
  • Loading branch information
yuyokk authored and domenic committed Dec 3, 2015
1 parent 8cee637 commit ec989ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source
Expand Up @@ -92540,7 +92540,7 @@ interface <dfn>WebSocket</dfn> : <span>EventTarget</span> {
const unsigned short <span data-x="dom-WebSocket-CLOSING">CLOSING</span> = 2;
const unsigned short <span data-x="dom-WebSocket-CLOSED">CLOSED</span> = 3;
readonly attribute unsigned short <span data-x="dom-WebSocket-readyState">readyState</span>;
readonly attribute unsigned long <span data-x="dom-WebSocket-bufferedAmount">bufferedAmount</span>;
readonly attribute unsigned long long <span data-x="dom-WebSocket-bufferedAmount">bufferedAmount</span>;

// networking
attribute <span>EventHandler</span> <span data-x="handler-WebSocket-onopen">onopen</span>;
Expand Down

0 comments on commit ec989ff

Please sign in to comment.