Index: Source/core/css/CSSComputedStyleDeclaration.cpp |
diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp |
index 5d1223d026e0c40c5cb28a9d6ba931aee732e71d..7696f213d8697b8bb6d83a7b7e924da7ec232a32 100644 |
--- a/Source/core/css/CSSComputedStyleDeclaration.cpp |
+++ b/Source/core/css/CSSComputedStyleDeclaration.cpp |
@@ -755,7 +755,7 @@ static PassRefPtrWillBeRawPtr<CSSTransformValue> valueForMatrixTransform(const T |
static PassRefPtrWillBeRawPtr<CSSValue> computedTransform(RenderObject* renderer, const RenderStyle& style) |
{ |
- if (!renderer || !renderer->hasTransform() || !style.hasTransform()) |
+ if (!renderer || !renderer->hasTransformRelatedProperty() || !style.hasTransform()) |
return cssValuePool().createIdentifierValue(CSSValueNone); |
IntRect box; |