#include "third_party/blink/renderer/core/animation/effect_stack.h"
#include <memory>
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/blink/renderer/bindings/core/v8/v8_union_cssnumericvalue_double.h"
#include "third_party/blink/renderer/core/animation/animation_clock.h"
#include "third_party/blink/renderer/core/animation/animation_test_helpers.h"
#include "third_party/blink/renderer/core/animation/document_timeline.h"
#include "third_party/blink/renderer/core/animation/element_animations.h"
#include "third_party/blink/renderer/core/animation/interpolable_length.h"
#include "third_party/blink/renderer/core/animation/invalidatable_interpolation.h"
#include "third_party/blink/renderer/core/animation/keyframe_effect_model.h"
#include "third_party/blink/renderer/core/animation/pending_animations.h"
#include "third_party/blink/renderer/core/animation/string_keyframe.h"
#include "third_party/blink/renderer/core/css/css_to_length_conversion_data.h"
#include "third_party/blink/renderer/core/css/properties/longhands.h"
#include "third_party/blink/renderer/core/execution_context/security_context.h"
#include "third_party/blink/renderer/core/html/html_element.h"
#include "third_party/blink/renderer/core/testing/page_test_base.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/thread_state.h"
namespace blink {
EnsureInterpolatedValueCached;
class AnimationEffectStackTest : public PageTestBase { … };
TEST_F(AnimationEffectStackTest, ElementAnimationsSorted) { … }
TEST_F(AnimationEffectStackTest, NewAnimations) { … }
TEST_F(AnimationEffectStackTest, CancelledAnimations) { … }
TEST_F(AnimationEffectStackTest, ClearedEffectsRemoved) { … }
TEST_F(AnimationEffectStackTest, ForwardsFillDiscarding) { … }
TEST_F(AnimationEffectStackTest, AffectsPropertiesCSSBitsetDefaultPriority) { … }
TEST_F(AnimationEffectStackTest, AffectsPropertiesCSSBitsetTransitionPriority) { … }
TEST_F(AnimationEffectStackTest, AffectedPropertiesDefaultPriority) { … }
TEST_F(AnimationEffectStackTest, AffectedPropertiesTransitionPriority) { … }
}