| Index: third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-invert.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-invert.html b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-invert.html
|
| index cb0df9b6817735b8d7a6ad469efa15d4894ebb95..e49bd1879caa136dda27530825b6b01d87340e63 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-invert.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-invert.html
|
| @@ -20,7 +20,7 @@ test(function() {
|
| test(function() {
|
| var matrix3d = new DOMMatrix([10, 20, 30, 40, 40, 40, 30, 20, 10, 20, 40, 30, 20, 40, 50, 100]);
|
| matrix3d.invertSelf();
|
| - assert_3d_matrix_equals(matrix3d, [-1.6, 0.05, 0.6, 0.45, 2.05, -0.025, -0.8, -0.575, -0.4, 0, 0.2, 0.1, -0.3, 0, 0.1, 0.1]);
|
| + assert_matrix_almost_equals(matrix3d, new DOMMatrix([-1.6, 0.05, 0.6, 0.45, 2.05, -0.025, -0.8, -0.575, -0.4, 0, 0.2, 0.1, -0.3, 0, 0.1, 0.1]));
|
| }, "DOMMatrix invertSelf() - 3D matrix");
|
|
|
| test(function() {
|
|
|