michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 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 "nsIDOMEvent.idl" michael@0: michael@0: /** michael@0: * The SMIL TimeEvent interface. michael@0: * michael@0: * For more information please refer to: michael@0: * http://www.w3.org/TR/SMIL/smil-timing.html#Events-TimeEvent michael@0: * http://www.w3.org/TR/SVG/animate.html#InterfaceTimeEvent michael@0: */ michael@0: michael@0: [scriptable, builtinclass, uuid(4a5a5fa6-2783-4171-b8bb-cae4ab06e6ff)] michael@0: interface nsIDOMTimeEvent : nsIDOMEvent michael@0: { michael@0: readonly attribute long detail; michael@0: readonly attribute nsIDOMWindow view; michael@0: michael@0: void initTimeEvent(in DOMString typeArg, michael@0: in nsIDOMWindow viewArg, michael@0: in long detailArg); michael@0: };