1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/webidl/WebSocket.webidl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,65 @@ 1.4 +/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.7 + * You can obtain one at http://mozilla.org/MPL/2.0/. 1.8 + * 1.9 + * The origin of this IDL file is 1.10 + * http://www.whatwg.org/html/#network 1.11 + * 1.12 + * © Copyright 2004-2011 Apple Computer, Inc., Mozilla Foundation, and Opera Software ASA. 1.13 + * You are granted a license to use, reproduce and create derivative works of this document. 1.14 + */ 1.15 + 1.16 +enum BinaryType { "blob", "arraybuffer" }; 1.17 + 1.18 +[Func="mozilla::dom::WebSocket::PrefEnabled", 1.19 + Constructor(DOMString url), 1.20 + Constructor(DOMString url, DOMString protocols), 1.21 + Constructor(DOMString url, sequence<DOMString> protocols)] 1.22 +interface WebSocket : EventTarget { 1.23 + 1.24 + readonly attribute DOMString url; 1.25 + 1.26 + // ready state 1.27 + const unsigned short CONNECTING = 0; 1.28 + const unsigned short OPEN = 1; 1.29 + const unsigned short CLOSING = 2; 1.30 + const unsigned short CLOSED = 3; 1.31 + 1.32 + readonly attribute unsigned short readyState; 1.33 + 1.34 + readonly attribute unsigned long bufferedAmount; 1.35 + 1.36 + // networking 1.37 + 1.38 + attribute EventHandler onopen; 1.39 + 1.40 + attribute EventHandler onerror; 1.41 + 1.42 + attribute EventHandler onclose; 1.43 + 1.44 + readonly attribute DOMString extensions; 1.45 + 1.46 + readonly attribute DOMString protocol; 1.47 + 1.48 + [Throws] 1.49 + void close([Clamp] optional unsigned short code, optional DOMString reason); 1.50 + 1.51 + // messaging 1.52 + 1.53 + attribute EventHandler onmessage; 1.54 + 1.55 + attribute BinaryType binaryType; 1.56 + 1.57 + [Throws] 1.58 + void send(DOMString data); 1.59 + 1.60 + [Throws] 1.61 + void send(Blob data); 1.62 + 1.63 + [Throws] 1.64 + void send(ArrayBuffer data); 1.65 + 1.66 + [Throws] 1.67 + void send(ArrayBufferView data); 1.68 +};