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

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

Issue 2675763005: 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/canvas-currentColor-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/canvas/canvas-currentColor-expected.txt b/third_party/WebKit/LayoutTests/fast/canvas/canvas-currentColor-expected.txt
deleted file mode 100644
index 979c9cbfb807894bd11ec1d4e8267f12916e865e..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/canvas/canvas-currentColor-expected.txt
+++ /dev/null
@@ -1,33 +0,0 @@
-Test that CanvasRenderingContext2D supports the 'currentColor' value.
-
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-
-
-PASS ctx.shadowColor = '#f00'; ctx.shadowColor is '#ff0000'
-PASS ctx.shadowColor = 'currentColor'; ctx.shadowColor is '#000000'
-PASS ctx.fillStyle = '#f00'; ctx.fillStyle is '#ff0000'
-PASS ctx.fillStyle = 'currentColor'; ctx.fillStyle is '#000000'
-PASS ctx.strokeStyle = '#f00'; ctx.strokeStyle is '#ff0000'
-PASS ctx.strokeStyle = 'currentColor'; ctx.strokeStyle is '#000000'
-PASS tryLinearGradientColor('#f00') is '255,0,0,255'
-PASS tryLinearGradientColor('currentColor') is '0,0,0,255'
-PASS tryRadialGradientColor('#f00') is '255,0,0,255'
-PASS tryRadialGradientColor('currentColor') is '0,0,0,255'
-PASS attachCanvasToDocument() is true
-PASS canvas.style.color = '#123456'; canvas.style.color is 'rgb(18, 52, 86)'
-PASS ctx.shadowColor = '#f00'; ctx.shadowColor is '#ff0000'
-PASS ctx.shadowColor = 'currentColor'; ctx.shadowColor is '#123456'
-PASS ctx.fillStyle = '#f00'; ctx.fillStyle is '#ff0000'
-PASS ctx.fillStyle = 'currentColor'; ctx.fillStyle is '#123456'
-PASS ctx.strokeStyle = '#f00'; ctx.strokeStyle is '#ff0000'
-PASS ctx.strokeStyle = 'currentColor'; ctx.strokeStyle is '#123456'
-PASS tryLinearGradientColor('#f00') is '255,0,0,255'
-PASS tryLinearGradientColor('currentColor') is '0,0,0,255'
-PASS tryRadialGradientColor('#f00') is '255,0,0,255'
-PASS tryRadialGradientColor('currentColor') is '0,0,0,255'
-PASS ctx.shadowColor = '#f00'; ctx.shadowColor is '#ff0000'
-PASS ctx.shadowColor = 'CURRENTCOLOR'; ctx.shadowColor is '#123456'
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698