aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/WebSocket.webidl
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2019-03-02 11:48:31 +0530
committerManish Goregaokar <manishsmail@gmail.com>2019-03-04 14:03:31 +0530
commit7b48df53a142507f6f11b9645b605be816db5ab1 (patch)
tree6d99a826f6c81b011c398c6aeeaa2c16e4cc5b04 /components/script/dom/webidls/WebSocket.webidl
parent5fa80a8be0a2cdbb5e84856da6a041958aacc238 (diff)
downloadservo-7b48df53a142507f6f11b9645b605be816db5ab1.tar.gz
servo-7b48df53a142507f6f11b9645b605be816db5ab1.zip
Update WebIDL.py to 4166cae81546
https://hg.mozilla.org/integration/autoland/rev/4166cae81546f54accae807413f806d20bf30920 Pulls in changes from https://bugzilla.mozilla.org/show_bug.cgi?id=1359269
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 79ead3257b6..0d6f25ca2e5 100644
--- a/components/script/dom/webidls/WebSocket.webidl
+++ b/components/script/dom/webidls/WebSocket.webidl
@@ -23,7 +23,7 @@ interface WebSocket : EventTarget {
attribute EventHandler onclose;
//readonly attribute DOMString extensions;
readonly attribute DOMString protocol;
- [Throws] void close([Clamp] optional unsigned short code, optional USVString reason);
+ [Throws] void close(optional [Clamp] unsigned short code, optional USVString reason);
//messaging
attribute EventHandler onmessage;