Index: Source/core/css/StyleRuleKeyframe.cpp |
diff --git a/Source/core/css/StyleRuleKeyframe.cpp b/Source/core/css/StyleRuleKeyframe.cpp |
index d59bde36bb45d191c543f01b53a2d88903a8192f..535964395974cbc9a58a40a52562e725e7a134d7 100644 |
--- a/Source/core/css/StyleRuleKeyframe.cpp |
+++ b/Source/core/css/StyleRuleKeyframe.cpp |
@@ -86,7 +86,7 @@ PassOwnPtr<Vector<double>> StyleRuleKeyframe::createKeyList(CSSParserValueList* |
size_t numKeys = keys ? keys->size() : 0; |
OwnPtr<Vector<double>> keyVector = adoptPtr(new Vector<double>(numKeys)); |
for (size_t i = 0; i < numKeys; ++i) { |
- ASSERT(keys->valueAt(i)->unit == blink::CSSPrimitiveValue::CSS_NUMBER); |
+ ASSERT(keys->valueAt(i)->unit == CSSPrimitiveValue::CSS_NUMBER); |
double key = keys->valueAt(i)->fValue; |
if (key < 0 || key > 100) { |
// As per http://www.w3.org/TR/css3-animations/#keyframes, |