2011-05-10 23:33:11 -07:00
|
|
|
/* vim: set shiftwidth=2 tabstop=8 autoindent cindent expandtab: */
|
2012-05-21 04:12:37 -07: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/. */
|
2011-05-10 23:33:11 -07:00
|
|
|
|
|
|
|
#include "nsIDOMEvent.idl"
|
|
|
|
interface nsIVariant;
|
|
|
|
|
2012-08-04 00:44:00 -07:00
|
|
|
[scriptable, builtinclass, uuid(86e1b9ee-8080-4217-b3fa-025556d83597)]
|
2011-05-10 23:33:11 -07:00
|
|
|
interface nsIDOMCustomEvent : nsIDOMEvent
|
|
|
|
{
|
|
|
|
|
|
|
|
readonly attribute nsIVariant detail;
|
|
|
|
|
|
|
|
void initCustomEvent(in DOMString typeArg,
|
|
|
|
in boolean canBubbleArg,
|
|
|
|
in boolean cancelableArg,
|
|
|
|
in nsIVariant detailArg);
|
|
|
|
};
|
2011-12-14 11:53:48 -08:00
|
|
|
|
2012-03-12 21:44:48 -07:00
|
|
|
dictionary CustomEventInit : EventInit
|
2011-12-14 11:53:48 -08:00
|
|
|
{
|
2012-03-12 21:44:48 -07:00
|
|
|
nsIVariant detail;
|
2011-12-14 11:53:48 -08:00
|
|
|
};
|