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