Index: Source/core/animation/animatable/AnimatableUnknownTest.cpp |
diff --git a/Source/core/animation/animatable/AnimatableUnknownTest.cpp b/Source/core/animation/animatable/AnimatableUnknownTest.cpp |
index ad7f1689b9f2fbf4d74697819a4dcb90055fa058..4ed811d930d3461d3df62dc0239045b0dd6bb3f4 100644 |
--- a/Source/core/animation/animatable/AnimatableUnknownTest.cpp |
+++ b/Source/core/animation/animatable/AnimatableUnknownTest.cpp |
@@ -32,7 +32,7 @@ |
#include "core/animation/animatable/AnimatableUnknown.h" |
#include "core/animation/animatable/AnimatableNeutral.h" |
-#include "core/css/CSSArrayFunctionValue.h" |
+#include "core/css/CSSValuePool.h" |
#include <gtest/gtest.h> |
@@ -44,10 +44,10 @@ class AnimationAnimatableUnknownTest : public ::testing::Test { |
protected: |
virtual void SetUp() |
{ |
- cssValue = CSSArrayFunctionValue::create(); |
+ cssValue = cssValuePool().createIdentifierValue(CSSValueYellow); |
animatableUnknown = AnimatableUnknown::create(cssValue); |
- otherCSSValue = CSSArrayFunctionValue::create(); |
+ otherCSSValue = cssValuePool().createIdentifierValue(CSSValueOrange); |
otherAnimatableUnknown = AnimatableUnknown::create(otherCSSValue); |
} |