| 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 b19e00fdba20e01f4d002e41136cf2b0a13c87b3..f41de0c3217fcddca00730d95f82e3ad93eae180 100644
 | 
| --- a/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
 | 
| +++ b/third_party/WebKit/LayoutTests/typedcssom/cssSkew.html
 | 
| @@ -55,7 +55,7 @@ test(function() {
 | 
|      assert_true(inputAsMatrix.is2D());
 | 
|      var tanAx = tanDegrees(input.ax.degrees);
 | 
|      var tanAy = tanDegrees(input.ay.degrees);
 | 
| -    var expectedMatrix = new CSSMatrixTransformComponent(1, tanAy, tanAx, 1, 0, 0);
 | 
| +    var expectedMatrix = new CSSMatrixComponent(1, tanAy, tanAx, 1, 0, 0);
 | 
|      for (var attribute in expectedMatrix) {
 | 
|        if (typeof expectedMatrix[attribute] === "number") {
 | 
|          assert_approx_equals(inputAsMatrix[attribute], expectedMatrix[attribute], EPSILON);
 | 
| 
 |