Index: Source/core/dom/DOMMatrix.cpp |
diff --git a/Source/core/dom/DOMMatrix.cpp b/Source/core/dom/DOMMatrix.cpp |
index 22a9df9770576e61f14d7bf6247da6f41821f074..d89e0fe05e682e0dabe5a15b3e566c346f13aa93 100644 |
--- a/Source/core/dom/DOMMatrix.cpp |
+++ b/Source/core/dom/DOMMatrix.cpp |
@@ -34,7 +34,7 @@ DOMMatrix* DOMMatrix::multiplySelf(DOMMatrix* other) |
if (!other->is2D()) |
m_is2D = false; |
- m_matrix = m_matrix * other->matrix(); |
+ m_matrix.multiply(other->matrix()); |
zino
2014/09/04 14:18:52
I think this sentence is reasonable but it makes a
|
return this; |
} |