| Index: Source/core/css/resolver/StyleResolver.cpp
|
| diff --git a/Source/core/css/resolver/StyleResolver.cpp b/Source/core/css/resolver/StyleResolver.cpp
|
| index 514ed369fdae71b51d3270bd2083b2e66729e5c4..2f92a2199d6048ff89632d586d5344a0c6b8b9cf 100644
|
| --- a/Source/core/css/resolver/StyleResolver.cpp
|
| +++ b/Source/core/css/resolver/StyleResolver.cpp
|
| @@ -1165,8 +1165,7 @@ void StyleResolver::keyframeStylesForAnimation(Element* e, const RenderStyle* el
|
| keyframeValue.setStyle(styleForKeyframe(elementStyle, keyframe, keyframeValue));
|
|
|
| // Add this keyframe style to all the indicated key times
|
| - Vector<float> keys;
|
| - keyframe->getKeys(keys);
|
| + const Vector<float>& keys = keyframe->keys();
|
| for (size_t keyIndex = 0; keyIndex < keys.size(); ++keyIndex) {
|
| keyframeValue.setKey(keys[keyIndex]);
|
| list.insert(keyframeValue);
|
|
|