| Index: Source/core/css/CSSKeyframesRule.cpp
|
| diff --git a/Source/core/css/CSSKeyframesRule.cpp b/Source/core/css/CSSKeyframesRule.cpp
|
| index 80c69288d767fb8ab6fdd23681a90c63815a49c3..a671801279ea8303c1c7f6f79a5a798effd961d1 100644
|
| --- a/Source/core/css/CSSKeyframesRule.cpp
|
| +++ b/Source/core/css/CSSKeyframesRule.cpp
|
| @@ -151,7 +151,10 @@ CSSKeyframeRule* CSSKeyframesRule::findRule(const String& s)
|
| String CSSKeyframesRule::cssText() const
|
| {
|
| StringBuilder result;
|
| - result.append("@-webkit-keyframes ");
|
| + if (isVendorPrefixed())
|
| + result.append("@-webkit-keyframes ");
|
| + else
|
| + result.append("@keyframes ");
|
| result.append(name());
|
| result.append(" { \n");
|
|
|
|
|