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

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

Issue 2674933002: Use testharness.js instead of js-test.js in LayoutTests/fast/canvas tests. (Closed)
Patch Set: Corrections 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/canvas-getImageData-rounding-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-rounding-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-rounding-expected.txt
deleted file mode 100644
index e7ea28bb747d73ff5d05d0d642c8f7dad923463a..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-getImageData-rounding-expected.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-Test the handling of non-integer source coordinates in getImageData().
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-getImageData(0, 0, 20, 10)
-PASS imageData.width is 20
-PASS imageData.height is 10
-getImageData(0.1, 0.2, 20, 10)
-PASS imageData.width is 21
-PASS imageData.height is 11
-getImageData(0.9, 0.8, 20, 10)
-PASS imageData.width is 21
-PASS imageData.height is 11
-getImageData(0, 0, 19.9, 9.9)
-PASS imageData.width is 20
-PASS imageData.height is 10
-getImageData(0, 0, 19.1, 9.1)
-PASS imageData.width is 20
-PASS imageData.height is 10
-getImageData(0.9, 0, 0.2, 10)
-PASS imageData.width is 2
-PASS imageData.height is 10
-getImageData(-1, -1, 20, 10)
-PASS imageData.width is 20
-PASS imageData.height is 10
-getImageData(-1.1, 0, 20, 10)
-PASS imageData.width is 21
-PASS imageData.height is 10
-getImageData(-1.9, 0, 20, 10)
-PASS imageData.width is 21
-PASS imageData.height is 10
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698