| Index: third_party/WebKit/LayoutTests/typedcssom/cssScale.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssScale.html b/third_party/WebKit/LayoutTests/typedcssom/cssScale.html
|
| index e2d5b1749f38dbc17c22539fa0bd5820800e9405..30ff36b38f293dcad5c9b4f8aacf63ebe0e6b727 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssScale.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssScale.html
|
| @@ -79,8 +79,8 @@ test(function() {
|
| var inputAsMatrix = input.asMatrix();
|
| assert_equals(inputAsMatrix.is2D(), input.is2D());
|
|
|
| - var expectedMatrix = input.is2D() ? new CSSMatrixTransformComponent(input.x, 0, 0, input.y, 0, 0) :
|
| - new CSSMatrixTransformComponent(input.x, 0, 0, 0, 0, input.y, 0, 0, 0, 0, input.z, 0, 0, 0, 0, 1);
|
| + var expectedMatrix = input.is2D() ? new CSSMatrixComponent(input.x, 0, 0, input.y, 0, 0) :
|
| + new CSSMatrixComponent(input.x, 0, 0, 0, 0, input.y, 0, 0, 0, 0, input.z, 0, 0, 0, 0, 1);
|
| for (var attribute in expectedMatrix) {
|
| if (typeof expectedMatrix[attribute] === "number") {
|
| assert_approx_equals(inputAsMatrix[attribute], expectedMatrix[attribute], EPSILON);
|
|
|