Files
sousa-gecko/dom/events/AnimationEvent.cpp
T
canalun 794e47d452 Bug 1929118 - Add animation property to AnimationEvent and TransitionEvent. r=birtles,webidl,smaug
This patch adds animation property to AnimationEvent and TransitionEvent.
This prop has the corresponding CSSAnimation and CSSTransition respectively.

Differential Revision: https://phabricator.services.mozilla.com/D295112
2026-04-28 03:52:02 +00:00

71 lines
2.2 KiB
C++

/* 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/. */
#include "mozilla/dom/AnimationEvent.h"
#include "mozilla/ContentEvents.h"
#include "prtime.h"
namespace mozilla::dom {
AnimationEvent::AnimationEvent(EventTarget* aOwner, nsPresContext* aPresContext,
InternalAnimationEvent* aEvent)
: Event(aOwner, aPresContext,
aEvent ? aEvent : new InternalAnimationEvent(false, eVoidEvent)) {
if (aEvent) {
mEventIsInternal = false;
} else {
mEventIsInternal = true;
}
}
// static
already_AddRefed<AnimationEvent> AnimationEvent::Constructor(
const GlobalObject& aGlobal, const nsAString& aType,
const AnimationEventInit& aParam) {
nsCOMPtr<EventTarget> t = do_QueryInterface(aGlobal.GetAsSupports());
RefPtr<AnimationEvent> e = new AnimationEvent(t, nullptr, nullptr);
bool trusted = e->Init(t);
e->InitEvent(aType, aParam.mBubbles, aParam.mCancelable);
InternalAnimationEvent* internalEvent = e->mEvent->AsAnimationEvent();
internalEvent->mAnimationName = aParam.mAnimationName;
internalEvent->mElapsedTime = aParam.mElapsedTime;
internalEvent->mPseudoElement = aParam.mPseudoElement;
internalEvent->mAnimation = aParam.mAnimation;
e->SetTrusted(trusted);
e->SetComposed(aParam.mComposed);
return e.forget();
}
void AnimationEvent::GetAnimationName(nsAString& aAnimationName) {
aAnimationName = mEvent->AsAnimationEvent()->mAnimationName;
}
float AnimationEvent::ElapsedTime() {
return mEvent->AsAnimationEvent()->mElapsedTime;
}
void AnimationEvent::GetPseudoElement(nsAString& aPseudoElement) {
aPseudoElement = mEvent->AsAnimationEvent()->mPseudoElement;
}
CSSAnimation* AnimationEvent::GetAnimation() {
return mEvent->AsAnimationEvent()->mAnimation;
}
} // namespace mozilla::dom
using namespace mozilla;
using namespace mozilla::dom;
already_AddRefed<AnimationEvent> NS_NewDOMAnimationEvent(
EventTarget* aOwner, nsPresContext* aPresContext,
InternalAnimationEvent* aEvent) {
RefPtr<AnimationEvent> it = new AnimationEvent(aOwner, aPresContext, aEvent);
return it.forget();
}