nsIDOMCustomEvent.idl 605 B

12345678910111213141516171819
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. #include "nsISupports.idl"
  5. interface nsIVariant;
  6. [builtinclass, uuid(5be16b03-36f9-4ca8-b2c5-0daadf3cd1b3)]
  7. interface nsIDOMCustomEvent : nsISupports
  8. {
  9. readonly attribute nsIVariant detail;
  10. void initCustomEvent(in DOMString typeArg,
  11. in boolean canBubbleArg,
  12. in boolean cancelableArg,
  13. in nsIVariant detailArg);
  14. };