| Index: Source/core/css/CSSMatrix.cpp | 
| diff --git a/Source/core/css/CSSMatrix.cpp b/Source/core/css/CSSMatrix.cpp | 
| index 487b920bfbffd0f82f94115ad3447f282d7b773b..8efcc2ab0b897bf64670888556dfa9cd81a44ccd 100644 | 
| --- a/Source/core/css/CSSMatrix.cpp | 
| +++ b/Source/core/css/CSSMatrix.cpp | 
| @@ -64,7 +64,7 @@ void CSSMatrix::setMatrixValue(const String& string, ExceptionCode& ec) | 
| RefPtr<CSSValue> value = styleDeclaration->getPropertyCSSValue(CSSPropertyWebkitTransform); | 
|  | 
| // Check for a "none" or empty transform. In these cases we can use the default identity matrix. | 
| -        if (!value || (value->isPrimitiveValue() && (toCSSPrimitiveValue(value.get()))->getIdent() == CSSValueNone)) | 
| +        if (!value || (value->isPrimitiveValue() && (toCSSPrimitiveValue(value.get()))->getValueID() == CSSValueNone)) | 
| return; | 
|  | 
| TransformOperations operations; | 
|  |