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

Unified Diff: third_party/WebKit/LayoutTests/svg/dom/SVGPoint-expected.txt

Issue 2741153003: Convert LayoutTests/svg/dom/*.html js-tests.js to testharness.js based tests. (Closed)
Patch Set: Align with review comments Created 3 years, 9 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: third_party/WebKit/LayoutTests/svg/dom/SVGPoint-expected.txt
diff --git a/third_party/WebKit/LayoutTests/svg/dom/SVGPoint-expected.txt b/third_party/WebKit/LayoutTests/svg/dom/SVGPoint-expected.txt
deleted file mode 100644
index 74509b0dd800941d237e3a13da943a002d18e051..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/svg/dom/SVGPoint-expected.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-This test checks the SVGPoint API
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-
-Check initial point values
-PASS point.x is 0
-PASS point.y is 0
-
-Check assigning points
-PASS point.x = 100 is 100
-PASS point.y = 200 is 200
-
-Check assigning invalid points
-PASS point.x = point is point
-PASS point.y = null is null
-
-Check that the point contains the correct values
-PASS point.x is NaN
-PASS point.y is 0
-
-Reset to -50, 100
-
-Check 'matrixTransform' method - multiply with -1,0,0,2,10,10 matrix, should flip x coordinate, multiply y by two and translate each coordinate by 10
-PASS (newPoint = point.matrixTransform(ctm)).toString() is "[object SVGPoint]"
-PASS newPoint.x is 60
-PASS newPoint.y is 210
-
-Check invalid arguments for 'matrixTransform'
-PASS point.matrixTransform() threw exception TypeError: Failed to execute 'matrixTransform' on 'SVGPoint': 1 argument required, but only 0 present..
-PASS point.matrixTransform(-1) threw exception TypeError: Failed to execute 'matrixTransform' on 'SVGPoint': parameter 1 is not of type 'SVGMatrix'..
-PASS point.matrixTransform(5) threw exception TypeError: Failed to execute 'matrixTransform' on 'SVGPoint': parameter 1 is not of type 'SVGMatrix'..
-PASS point.matrixTransform('aString') threw exception TypeError: Failed to execute 'matrixTransform' on 'SVGPoint': parameter 1 is not of type 'SVGMatrix'..
-PASS point.matrixTransform(point) threw exception TypeError: Failed to execute 'matrixTransform' on 'SVGPoint': parameter 1 is not of type 'SVGMatrix'..
-PASS point.matrixTransform(svgElement) threw exception TypeError: Failed to execute 'matrixTransform' on 'SVGPoint': parameter 1 is not of type 'SVGMatrix'..
-PASS successfullyParsed is true
-
-TEST COMPLETE
-
« no previous file with comments | « third_party/WebKit/LayoutTests/svg/dom/SVGPoint.html ('k') | third_party/WebKit/LayoutTests/svg/dom/script-tests/SVGAngle.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698