aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-08-08 03:00:50 -0600
committerbors-servo <metajack+bors@gmail.com>2015-08-08 03:00:50 -0600
commitd8b4611a79fbb8c4675d9de763280ada34e63b13 (patch)
tree5b2c659f95a15750808975be0904ee438553cf10 /components/script/dom/webidls
parent23b81326cc2ac86ef93ff067ecbfa2bce482084f (diff)
parent352229b6faaec7d7ea3b6246029ca6a098d4845d (diff)
downloadservo-d8b4611a79fbb8c4675d9de763280ada34e63b13.tar.gz
servo-d8b4611a79fbb8c4675d9de763280ada34e63b13.zip
Auto merge of #7066 - Ms2ger:ws-event, r=metajack
Dispatch message events for WebSocket. <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/7066) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/webidls')
-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);