Index: Source/core/css/CSSMatrix.cpp |
diff --git a/Source/core/css/CSSMatrix.cpp b/Source/core/css/CSSMatrix.cpp |
index 6e11a827dc7e27e20d79df6e64f8f94fae3013c5..303817a5ae4c3290e710a77f50113b8e97743eb6 100644 |
--- a/Source/core/css/CSSMatrix.cpp |
+++ b/Source/core/css/CSSMatrix.cpp |
@@ -57,6 +57,7 @@ void CSSMatrix::setMatrixValue(const String& string, ExceptionState& exceptionSt |
if (string.isEmpty()) |
return; |
+ // FIXME: crbug.com/154722 - should this continue to use legacy style parsing? |
RefPtrWillBeRawPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create(); |
if (BisonCSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, true, HTMLStandardMode, 0)) { |
// Convert to TransformOperations. This can fail if a property |