Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(548)

Unified Diff: LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale-expected.txt

Issue 450533006: Implement scale*() methods in DOMMatrix. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale-expected.txt
diff --git a/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale-expected.txt b/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..dc6d0fe80a6ad2378aa69045d62c73c830315f3d
--- /dev/null
+++ b/LayoutTests/fast/dom/geometry-interfaces-dom-matrix-scale-expected.txt
@@ -0,0 +1,15 @@
+# DOMMatrix.scale(scale)
+PASS matrix.is2D is true
+PASS matrix.isIdentity is true
+PASS compareMatrix(matrix, [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ]) is true
+PASS result.is2D is true
+PASS result.isIdentity is false
+PASS compareMatrix(result, [ 3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ]) is true
+PASS matrix.is2D is true
+PASS matrix.isIdentity is true
+PASS compareMatrix(matrix, [ 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ]) is true
+
+PASS successfullyParsed is true
+
+TEST COMPLETE
+

Powered by Google App Engine
This is Rietveld 408576698