| Index: Source/core/dom/DOMMatrix.cpp
|
| diff --git a/Source/core/dom/DOMMatrix.cpp b/Source/core/dom/DOMMatrix.cpp
|
| index 93839ac1de68b58b57a091221852a8ec46461b7c..616cb4f119372e545a4b3de14f00bdd9014122b8 100644
|
| --- a/Source/core/dom/DOMMatrix.cpp
|
| +++ b/Source/core/dom/DOMMatrix.cpp
|
| @@ -133,4 +133,16 @@ DOMMatrix* DOMMatrix::rotateAxisAngleSelf(
|
| return this;
|
| }
|
|
|
| +DOMMatrix* DOMMatrix::skewXSelf(double sx)
|
| +{
|
| + m_matrix.skewX(sx);
|
| + return this;
|
| +}
|
| +
|
| +DOMMatrix* DOMMatrix::skewYSelf(double sy)
|
| +{
|
| + m_matrix.skewY(sy);
|
| + return this;
|
| +}
|
| +
|
| } // namespace blink
|
|
|