| Index: Source/modules/websockets/WebSocket.idl
|
| diff --git a/Source/modules/websockets/WebSocket.idl b/Source/modules/websockets/WebSocket.idl
|
| index 4c7ee2d6d41c41a015aa91bae66e392488226638..23a35d7e9d15d833ab923aa5672fcb890395d6a3 100644
|
| --- a/Source/modules/websockets/WebSocket.idl
|
| +++ b/Source/modules/websockets/WebSocket.idl
|
| @@ -31,6 +31,7 @@
|
|
|
| // https://html.spec.whatwg.org/multipage/comms.html#the-websocket-interface
|
|
|
| +// FIXME: use BinaryType in binaryType
|
| enum BinaryType { "blob", "arraybuffer" };
|
|
|
| [
|
| @@ -66,7 +67,7 @@
|
|
|
| // messaging
|
| attribute EventHandler onmessage;
|
| - attribute BinaryType binaryType;
|
| + attribute DOMString binaryType;
|
| [RaisesException] void send(USVString data);
|
| [RaisesException] void send(Blob data);
|
| [RaisesException] void send(ArrayBuffer data);
|
|
|