michael@0: /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* vim: set ts=2 et sw=2 tw=80: */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "nsIDOMUIEvent.idl" michael@0: michael@0: [scriptable, builtinclass, uuid(ef545b90-a5f4-471c-b4f8-03b5e0f6fda2)] michael@0: interface nsIDOMCompositionEvent : nsIDOMUIEvent michael@0: { michael@0: readonly attribute DOMString data; michael@0: readonly attribute DOMString locale; michael@0: michael@0: void initCompositionEvent(in DOMString typeArg, michael@0: in boolean canBubbleArg, michael@0: in boolean cancelableArg, michael@0: in nsIDOMWindow viewArg, michael@0: in DOMString dataArg, michael@0: in DOMString localeArg); michael@0: };