| Index: sky/engine/core/css/CSSMatrix.cpp
|
| diff --git a/sky/engine/core/css/CSSMatrix.cpp b/sky/engine/core/css/CSSMatrix.cpp
|
| index bb0cb42eb864d134622f9a56decab76d0a17d548..23216210bcc6d21c75a7301fa5841288f725fd9d 100644
|
| --- a/sky/engine/core/css/CSSMatrix.cpp
|
| +++ b/sky/engine/core/css/CSSMatrix.cpp
|
| @@ -57,7 +57,7 @@ void CSSMatrix::setMatrixValue(const String& string, ExceptionState& exceptionSt
|
|
|
| // FIXME: crbug.com/154722 - should this continue to use legacy style parsing?
|
| RefPtr<MutableStylePropertySet> styleDeclaration = MutableStylePropertySet::create();
|
| - if (BisonCSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, true, HTMLStandardMode, 0)) {
|
| + if (BisonCSSParser::parseValue(styleDeclaration.get(), CSSPropertyWebkitTransform, string, 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);
|
|
|