| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2010, 2011 Apple Inc. All Rights Reserved. | 3 * Copyright (C) 2010, 2011 Apple Inc. All Rights Reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 [ | 32 [ |
| 33 ActiveDOMObject, | 33 ActiveDOMObject, |
| 34 Constructor(DOMString url), | 34 Constructor(DOMString url), |
| 35 Constructor(DOMString url, sequence<DOMString> protocols), | 35 Constructor(DOMString url, sequence<DOMString> protocols), |
| 36 Constructor(DOMString url, DOMString protocol), | 36 Constructor(DOMString url, DOMString protocol), |
| 37 RaisesException, | 37 ConstructorRaisesException, |
| 38 CallWith=ScriptExecutionContext, | 38 ConstructorCallWith=ScriptExecutionContext, |
| 39 EventTarget | 39 EventTarget |
| 40 ] interface WebSocket { | 40 ] interface WebSocket { |
| 41 readonly attribute DOMString URL; // Lowercased .url is the one in the spec,
but leaving .URL for compatibility reasons. | 41 readonly attribute DOMString URL; // Lowercased .url is the one in the spec,
but leaving .URL for compatibility reasons. |
| 42 readonly attribute DOMString url; | 42 readonly attribute DOMString url; |
| 43 | 43 |
| 44 // ready state | 44 // ready state |
| 45 const unsigned short CONNECTING = 0; | 45 const unsigned short CONNECTING = 0; |
| 46 const unsigned short OPEN = 1; | 46 const unsigned short OPEN = 1; |
| 47 const unsigned short CLOSING = 2; | 47 const unsigned short CLOSING = 2; |
| 48 const unsigned short CLOSED = 3; | 48 const unsigned short CLOSED = 3; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 70 | 70 |
| 71 // EventTarget interface | 71 // EventTarget interface |
| 72 void addEventListener(DOMString type, | 72 void addEventListener(DOMString type, |
| 73 EventListener listener, | 73 EventListener listener, |
| 74 optional boolean useCapture); | 74 optional boolean useCapture); |
| 75 void removeEventListener(DOMString type, | 75 void removeEventListener(DOMString type, |
| 76 EventListener listener, | 76 EventListener listener, |
| 77 optional boolean useCapture); | 77 optional boolean useCapture); |
| 78 [RaisesException] boolean dispatchEvent(Event evt); | 78 [RaisesException] boolean dispatchEvent(Event evt); |
| 79 }; | 79 }; |
| OLD | NEW |