| Index: Source/core/animation/AnimatableValueTestHelper.cpp | 
| diff --git a/Source/core/animation/AnimatableValueTestHelper.cpp b/Source/core/animation/AnimatableValueTestHelper.cpp | 
| index 1dbea4284b3f2281941dfa01b83a0fab51ff1fbc..d43a914fffbc52778fb7cdf4d1e9f565096a663e 100644 | 
| --- a/Source/core/animation/AnimatableValueTestHelper.cpp | 
| +++ b/Source/core/animation/AnimatableValueTestHelper.cpp | 
| @@ -144,7 +144,7 @@ void PrintTo(const AnimatableStrokeDasharrayList& animValue, ::std::ostream* os) | 
| { | 
| *os << "AnimatableStrokeDasharrayList("; | 
| RefPtr<SVGLengthList> list = animValue.toSVGLengthList(); | 
| -    size_t length = list->numberOfItems(); | 
| +    size_t length = list->length(); | 
| for (size_t i = 0; i < length; ++i) { | 
| *os << list->at(i)->valueAsString().utf8().data(); | 
| if (i != length-1) | 
|  |