Index: third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html |
index 2f790fb47602113bab979a6ea6afbd20fc25e24b..86f874dce912d801eea224e9195b57d0ab967e93 100644 |
--- a/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html |
+++ b/third_party/WebKit/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale.html |
@@ -56,6 +56,14 @@ test(function() { |
test(function() { |
var matrix = new DOMMatrix(); |
assert_identity_2d_matrix(matrix); |
+ var result = matrix.scale3d(); |
+ assert_identity_2d_matrix(result); |
+ assert_identity_2d_matrix(matrix); |
+}, "DOMMatrix.scale3d()"); |
+ |
+test(function() { |
+ var matrix = new DOMMatrix(); |
+ assert_identity_2d_matrix(matrix); |
var result = matrix.scale3d(3); |
assert_3d_matrix_equals(result, [3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1]); |
assert_identity_2d_matrix(matrix); |