2010-07-31 07:02:52 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-07-31 07:02:52 +00:00
|
|
|
|
|
|
|
#include "nsIDOMEvent.idl"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The SMIL TimeEvent interface.
|
|
|
|
*
|
|
|
|
* For more information please refer to:
|
|
|
|
* http://www.w3.org/TR/SMIL/smil-timing.html#Events-TimeEvent
|
|
|
|
* http://www.w3.org/TR/SVG/animate.html#InterfaceTimeEvent
|
|
|
|
*/
|
|
|
|
|
2015-11-13 00:09:42 +00:00
|
|
|
[builtinclass, uuid(7a1dc95e-2c05-4171-8bde-275f094dda1d)]
|
2010-07-31 07:02:52 +00:00
|
|
|
interface nsIDOMTimeEvent : nsIDOMEvent
|
|
|
|
{
|
|
|
|
readonly attribute long detail;
|
2011-04-24 06:54:25 +00:00
|
|
|
readonly attribute nsIDOMWindow view;
|
2010-07-31 07:02:52 +00:00
|
|
|
|
|
|
|
void initTimeEvent(in DOMString typeArg,
|
2011-04-24 06:54:25 +00:00
|
|
|
in nsIDOMWindow viewArg,
|
2010-07-31 07:02:52 +00:00
|
|
|
in long detailArg);
|
|
|
|
};
|