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

Unified Diff: third_party/WebKit/LayoutTests/fast/canvas/pointInPath-expected.txt

Issue 2701053003: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Addressing comments Created 3 years, 10 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/fast/canvas/pointInPath-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/pointInPath-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/pointInPath-expected.txt
deleted file mode 100644
index 804a58c74196c997948e45aab329ec74e11c7a2e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/pointInPath-expected.txt
+++ /dev/null
@@ -1,48 +0,0 @@
-Series of tests for Canvas.isPointInPath
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-Rectangle at (0,0) 20x20
-PASS ctx.isPointInPath(5, 5) is true
-PASS ctx.isPointInPath(10, 10) is true
-PASS ctx.isPointInPath(19, 19) is true
-PASS ctx.isPointInPath(30, 30) is false
-PASS ctx.isPointInPath(-1, 10) is false
-PASS ctx.isPointInPath(10, -1) is false
-Translate context (10,10)
-PASS ctx.isPointInPath(5, 5) is true
-PASS ctx.isPointInPath(10, 10) is true
-PASS ctx.isPointInPath(19, 19) is true
-PASS ctx.isPointInPath(30, 30) is false
-PASS ctx.isPointInPath(-1, 10) is false
-PASS ctx.isPointInPath(10, -1) is false
-Collapse ctm to non-invertible matrix
-PASS ctx.isPointInPath(5, 5) is false
-PASS ctx.isPointInPath(10, 10) is false
-PASS ctx.isPointInPath(20, 20) is false
-PASS ctx.isPointInPath(30, 30) is false
-PASS ctx.isPointInPath(-1, 10) is false
-PASS ctx.isPointInPath(10, -1) is false
-Resetting context to a clean state
-Translate context (10,10)
-Rectangle at (0,0) 20x20
-PASS ctx.isPointInPath(5, 5) is false
-PASS ctx.isPointInPath(10, 10) is true
-PASS ctx.isPointInPath(20, 20) is true
-PASS ctx.isPointInPath(29, 29) is true
-PASS ctx.isPointInPath(-1, 10) is false
-PASS ctx.isPointInPath(10, -1) is false
-Translate context (10,20)
-Transform context (1, 0, 0, -1, 0, 0)
-Rectangle at (0,0) 20x20
-PASS ctx.isPointInPath(5, 5) is false
-PASS ctx.isPointInPath(10, 0) is true
-PASS ctx.isPointInPath(29, 0) is true
-PASS ctx.isPointInPath(10, 19) is true
-PASS ctx.isPointInPath(21, 10) is true
-PASS ctx.isPointInPath(29, 19) is true
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698