Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(531)

Unified Diff: Source/core/dom/DOMMatrix.cpp

Issue 539923002: [WIP] DOMMatrixReadOnly::m_matrix is changed to OwnPtr<>. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: workaround Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMMatrix.cpp
diff --git a/Source/core/dom/DOMMatrix.cpp b/Source/core/dom/DOMMatrix.cpp
index 22a9df9770576e61f14d7bf6247da6f41821f074..75a7c46e094187c91741df0feb65c81bab9241ca 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 = TransformationMatrix(m_matrix).multiply(other->matrix());
return this;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698