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 73b06db27656b1b7df481c31cff78eef31af37ca..89f117301bd3dc3aafabe0953cf3c968049dcc9a 100644 |
--- a/third_party/WebKit/Source/core/dom/DOMMatrix.cpp |
+++ b/third_party/WebKit/Source/core/dom/DOMMatrix.cpp |
@@ -159,6 +159,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); |