| Index: third_party/WebKit/Source/core/geometry/DOMMatrix.cpp
|
| diff --git a/third_party/WebKit/Source/core/geometry/DOMMatrix.cpp b/third_party/WebKit/Source/core/geometry/DOMMatrix.cpp
|
| index 13a2e3c85056338869b3ae6eabd5b11a513c0618..744ca30f5b494ef88eb7615aa5171289eae70fd0 100644
|
| --- a/third_party/WebKit/Source/core/geometry/DOMMatrix.cpp
|
| +++ b/third_party/WebKit/Source/core/geometry/DOMMatrix.cpp
|
| @@ -135,6 +135,10 @@ DOMMatrix* DOMMatrix::multiplySelf(DOMMatrixInit& other,
|
| DCHECK(exception_state.HadException());
|
| return nullptr;
|
| }
|
| + return multiplySelf(other_matrix);
|
| +}
|
| +
|
| +DOMMatrix* DOMMatrix::multiplySelf(DOMMatrix* other_matrix) {
|
| if (!other_matrix->is2D())
|
| is2d_ = false;
|
|
|
|
|