| Index: third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
|
| index ac843bdbdbaf68770245dac2ad6f2a28cd5ff61a..119eff48e4426102cc1ad255868f42204b9c290c 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
|
| @@ -47,7 +47,7 @@ test(function() {
|
| assert_true(inputAsMatrix.is2D());
|
| var tanAx = tanDegrees(input.ax);
|
| var tanAy = tanDegrees(input.ay);
|
| - var expectedMatrix = new CSSMatrix(1, tanAy, tanAx, 1, 0, 0);
|
| + var expectedMatrix = new CSSMatrixTransformComponent(1, tanAy, tanAx, 1, 0, 0);
|
| for (var attribute in expectedMatrix) {
|
| if (typeof expectedMatrix[attribute] === "number") {
|
| assert_approx_equals(inputAsMatrix[attribute], expectedMatrix[attribute], EPSILON);
|
|
|