2023-11-04 12:20:39 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2023, Matthew Olsson <mattco@serenityos.org>.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <LibWeb/Animations/AnimationPlaybackEvent.h>
|
2024-04-27 12:09:58 +12:00
|
|
|
#include <LibWeb/Bindings/AnimationPlaybackEventPrototype.h>
|
2023-11-04 12:20:39 -07:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
|
|
|
|
|
|
|
namespace Web::Animations {
|
|
|
|
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DEFINE_ALLOCATOR(AnimationPlaybackEvent);
|
|
|
|
|
2024-02-03 18:23:14 -07:00
|
|
|
JS::NonnullGCPtr<AnimationPlaybackEvent> AnimationPlaybackEvent::create(JS::Realm& realm, FlyString const& type, AnimationPlaybackEventInit const& event_init)
|
2023-11-04 12:20:39 -07:00
|
|
|
{
|
2024-11-14 05:50:17 +13:00
|
|
|
return realm.create<AnimationPlaybackEvent>(realm, type, event_init);
|
2023-11-04 12:20:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// https://www.w3.org/TR/web-animations-1/#dom-animationplaybackevent-animationplaybackevent
|
2024-02-03 18:23:14 -07:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<AnimationPlaybackEvent>> AnimationPlaybackEvent::construct_impl(JS::Realm& realm, FlyString const& type, AnimationPlaybackEventInit const& event_init)
|
2023-11-04 12:20:39 -07:00
|
|
|
{
|
2024-02-03 18:23:14 -07:00
|
|
|
return create(realm, type, event_init);
|
2023-11-04 12:20:39 -07:00
|
|
|
}
|
|
|
|
|
2024-02-03 18:23:14 -07:00
|
|
|
AnimationPlaybackEvent::AnimationPlaybackEvent(JS::Realm& realm, FlyString const& type, AnimationPlaybackEventInit const& event_init)
|
|
|
|
: DOM::Event(realm, type, event_init)
|
2023-11-04 12:20:39 -07:00
|
|
|
, m_current_time(event_init.current_time)
|
|
|
|
, m_timeline_time(event_init.timeline_time)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AnimationPlaybackEvent::initialize(JS::Realm& realm)
|
|
|
|
{
|
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(AnimationPlaybackEvent);
|
2023-11-04 12:20:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|