| Index: third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| index 79c08a3de69c5d9d024dde0e10798fabd88eef45..a5ae1e94e1b14838acb81cc5a990c15110ec9565 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| @@ -173,6 +173,13 @@ DOMMatrix* DOMMatrixReadOnly::scaleNonUniform(double sx,
|
| return DOMMatrix::create(this)->scaleNonUniformSelf(sx, sy, sz, ox, oy, oz);
|
| }
|
|
|
| +DOMMatrix* DOMMatrixReadOnly::rotateAxisAngle(double x,
|
| + double y,
|
| + double z,
|
| + double angle) {
|
| + return DOMMatrix::create(this)->rotateAxisAngleSelf(x, y, z, angle);
|
| +}
|
| +
|
| DOMMatrix* DOMMatrixReadOnly::skewX(double sx) {
|
| return DOMMatrix::create(this)->skewXSelf(sx);
|
| }
|
|
|