updated websocket buffered_amount to be u64 instead of u32

This commit is contained in:
Nikki 2015-12-29 13:30:35 -07:00
parent b26cd498c6
commit 20edf21352
2 changed files with 4 additions and 14 deletions

View file

@ -15,7 +15,7 @@ interface WebSocket : EventTarget {
const unsigned short CLOSING = 2;
const unsigned short CLOSED = 3;
readonly attribute unsigned short readyState;
readonly attribute unsigned long bufferedAmount;
readonly attribute unsigned long long bufferedAmount;
//networking
attribute EventHandler onopen;