nsIDOMAnimationEvent.idl 672 B

1234567891011121314151617181920
  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. /**
  6. * Animation events are defined in:
  7. * http://www.w3.org/TR/css3-animations/#animation-events-
  8. * http://dev.w3.org/csswg/css3-animations/#animation-events-
  9. */
  10. [builtinclass, uuid(ce6d1db3-53b8-4ade-9baa-70f4947200a2)]
  11. interface nsIDOMAnimationEvent : nsISupports
  12. {
  13. readonly attribute DOMString animationName;
  14. readonly attribute float elapsedTime;
  15. readonly attribute DOMString pseudoElement;
  16. };