Index: Source/core/css/CSSMatrix.cpp |
diff --git a/Source/core/css/CSSMatrix.cpp b/Source/core/css/CSSMatrix.cpp |
index ba565c65f360027dea17be08cbd0c713c274817a..cf868c2c97a95d18beff7072c0feb41d865b8d6b 100644 |
--- a/Source/core/css/CSSMatrix.cpp |
+++ b/Source/core/css/CSSMatrix.cpp |
@@ -29,7 +29,7 @@ |
#include "CSSPropertyNames.h" |
#include "CSSValueKeywords.h" |
#include "bindings/v8/ExceptionState.h" |
-#include "core/css/parser/BisonCSSParser.h" |
+#include "core/css/parser/CSSParser.h" |
#include "core/css/CSSToLengthConversionData.h" |
#include "core/css/StylePropertySet.h" |
#include "core/css/resolver/TransformBuilder.h" |
@@ -58,7 +58,7 @@ void CSSMatrix::setMatrixValue(const String& string, ExceptionState& exceptionSt |
return; |
RefPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(); |
- if (BisonCSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, true, HTMLStandardMode, 0)) { |
+ if (CSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, true, HTMLStandardMode, 0)) { |
// Convert to TransformOperations. This can fail if a property |
// requires style (i.e., param uses 'ems' or 'exs') |
RefPtr<CSSValue> value = styleDeclaration->getPropertyCSSValue(CSSPropertyWebkitTransform); |