| 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 b91ed3d470c01dd6ab0b8b3bcf9c5da1174ff204..252d8e9d058b7cf1a4903d23745e798eada44724 100644
|
| --- a/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/DOMMatrixReadOnly.cpp
|
| @@ -104,6 +104,11 @@ DOMMatrix* DOMMatrixReadOnly::flipY()
|
| return flipY;
|
| }
|
|
|
| +DOMMatrix* DOMMatrixReadOnly::inverse()
|
| +{
|
| + return DOMMatrix::create(this)->invertSelf();
|
| +}
|
| +
|
| DOMFloat32Array* DOMMatrixReadOnly::toFloat32Array() const
|
| {
|
| float array[] = {
|
|
|