aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/WebSocket.webidl
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2015-08-07 11:12:22 +0200
committerMs2ger <Ms2ger@gmail.com>2015-08-08 10:29:03 +0200
commit352229b6faaec7d7ea3b6246029ca6a098d4845d (patch)
tree9829145ae9b6535365b8fd8317bfd50d67020905 /components/script/dom/webidls/WebSocket.webidl
parent2a97ab36f732edf138a97b7fea3a124f61867550 (diff)
downloadservo-352229b6faaec7d7ea3b6246029ca6a098d4845d.tar.gz
servo-352229b6faaec7d7ea3b6246029ca6a098d4845d.zip
Implement WebSocket#onmessage.
Diffstat (limited to 'components/script/dom/webidls/WebSocket.webidl')
-rw-r--r--components/script/dom/webidls/WebSocket.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/WebSocket.webidl b/components/script/dom/webidls/WebSocket.webidl
index 5d25b56a903..a07514a357a 100644
--- a/components/script/dom/webidls/WebSocket.webidl
+++ b/components/script/dom/webidls/WebSocket.webidl
@@ -26,7 +26,7 @@ interface WebSocket : EventTarget {
[Throws] void close([Clamp] optional unsigned short code, optional USVString reason);
//messaging
- //attribute EventHandler onmessage;
+ attribute EventHandler onmessage;
//attribute BinaryType binaryType;
[Throws] void send(optional USVString data);
//void send(Blob data);