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 602504b6820ffbff26e243e96ec51cb9f5b51567..9e36d9156ec5b63cb8aebab148dc9f4487e9c258 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.is2DComponent(), input.is2DComponent()); |
- var expectedMatrix = input.is2DComponent() ? new Matrix(input.x, 0, 0, input.y, 0, 0) : |
- new Matrix(input.x, 0, 0, 0, 0, input.y, 0, 0, 0, 0, input.z, 0, 0, 0, 0, 1); |
+ var expectedMatrix = input.is2DComponent() ? new CSSMatrix(input.x, 0, 0, input.y, 0, 0) : |
+ new CSSMatrix(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); |