1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:47:34 +00:00

LibWeb: Define the composite order between two animations

This commit is contained in:
Matthew Olsson 2024-02-19 13:54:30 +00:00 committed by Andreas Kling
parent ceb9d0f8dc
commit 4e6c74dcf6
2 changed files with 33 additions and 0 deletions

View file

@ -69,6 +69,8 @@ public:
};
static void generate_initial_and_final_frames(RefPtr<KeyFrameSet>, HashTable<CSS::PropertyID> const& animated_properties);
static int composite_order(JS::NonnullGCPtr<KeyframeEffect>, JS::NonnullGCPtr<KeyframeEffect>);
static JS::NonnullGCPtr<KeyframeEffect> create(JS::Realm&);
static WebIDL::ExceptionOr<JS::NonnullGCPtr<KeyframeEffect>> construct_impl(