1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/webidl/CloseEvent.webidl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,35 @@ 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 nsIDOMCloseEvent interface is the interface to the event 1.10 + * close on a WebSocket object. 1.11 + * 1.12 + * For more information on this interface, please see 1.13 + * http://www.whatwg.org/specs/web-apps/current-work/multipage/network.html#closeevent 1.14 + */ 1.15 + 1.16 +[Constructor(DOMString type, optional CloseEventInit eventInitDict), HeaderFile="GeneratedEventClasses.h"] 1.17 +interface CloseEvent : Event 1.18 +{ 1.19 + readonly attribute boolean wasClean; 1.20 + readonly attribute unsigned short code; 1.21 + readonly attribute DOMString? reason; 1.22 + 1.23 + // initCloseEvent is a Gecko specific deprecated method. 1.24 + [Throws] 1.25 + void initCloseEvent(DOMString type, 1.26 + boolean canBubble, 1.27 + boolean cancelable, 1.28 + boolean wasClean, 1.29 + unsigned short code, 1.30 + DOMString? reason); 1.31 +}; 1.32 + 1.33 +dictionary CloseEventInit : EventInit 1.34 +{ 1.35 + boolean wasClean = false; 1.36 + unsigned short code = 0; 1.37 + DOMString reason = ""; 1.38 +};