Index: third_party/WebKit/Source/core/dom/DOMMatrix.cpp |
diff --git a/third_party/WebKit/Source/core/dom/DOMMatrix.cpp b/third_party/WebKit/Source/core/dom/DOMMatrix.cpp |
index eb1c68e50141bf610385bcbb9685fdaf660e8cb8..e1e932f2a9f4b26c805b20c83200dc2973267a11 100644 |
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.cpp |
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.cpp |
@@ -150,6 +150,16 @@ DOMMatrix* DOMMatrix::scaleNonUniformSelf(double sx, double sy, double sz, |
return this; |
} |
+DOMMatrix* DOMMatrix::rotateAxisAngleSelf(double x, double y, double z, double angle) |
+{ |
+ m_matrix->rotate3d(x, y, z, angle); |
+ |
+ if (x != 0 || y != 0) |
+ m_is2D = false; |
+ |
+ return this; |
+} |
+ |
DOMMatrix* DOMMatrix::skewXSelf(double sx) |
{ |
m_matrix->skewX(sx); |