| 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 03794b1e4c6b6cfb1f772157f0aa30b6da442cd3..5a32a6d1201eff177fbb94fa094c97cd8f2d655d 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| @@ -169,6 +169,11 @@ DOMMatrix* DOMMatrixReadOnly::scaleNonUniform(double sx, double sy, double sz,
|
| 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);
|
|
|