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

Unified Diff: LayoutTests/platform/mac/virtual/gpu/fast/canvas/canvas-currentColor-expected.txt

Issue 408813007: Remove non-standard API entry points in CanvasRenderingContext2D (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove some unnecessary mac/virtual/gpu baselines Created 6 years, 1 month 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/platform/mac/virtual/gpu/fast/canvas/canvas-currentColor-expected.txt
diff --git a/LayoutTests/platform/mac/virtual/gpu/fast/canvas/canvas-currentColor-expected.txt b/LayoutTests/platform/mac/virtual/gpu/fast/canvas/canvas-currentColor-expected.txt
deleted file mode 100644
index 2885832770abb01d494b70bfbf335ac34e094112..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/mac/virtual/gpu/fast/canvas/canvas-currentColor-expected.txt
+++ /dev/null
@@ -1,57 +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 ctx.setShadow(0, 0, 0, '#f00'); ctx.shadowColor is '#ff0000'
-PASS ctx.setShadow(0, 0, 0, 'currentColor'); ctx.shadowColor is '#000000'
-PASS ctx.setShadow(0, 0, 0, '#f00', 0.0); ctx.shadowColor is 'rgba(255, 0, 0, 0)'
-PASS ctx.setShadow(0, 0, 0, 'currentColor', 0.0); ctx.shadowColor is 'rgba(0, 0, 0, 0)'
-PASS ctx.setStrokeColor('#f00'); ctx.strokeStyle is '#ff0000'
-PASS ctx.setStrokeColor('currentColor'); ctx.strokeStyle is '#000000'
-PASS ctx.setStrokeColor('#f00', 0.0); ctx.strokeStyle is 'rgba(255, 0, 0, 0)'
-PASS ctx.setStrokeColor('currentColor', 0.0); ctx.strokeStyle is 'rgba(0, 0, 0, 0)'
-PASS ctx.setFillColor('#f00'); ctx.fillStyle is '#ff0000'
-PASS ctx.setFillColor('currentColor'); ctx.fillStyle is '#000000'
-PASS ctx.setFillColor('#f00', 0.0); ctx.fillStyle is 'rgba(255, 0, 0, 0)'
-PASS ctx.setFillColor('currentColor', 0.0); ctx.fillStyle is 'rgba(0, 0, 0, 0)'
-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 ctx.setShadow(0, 0, 0, '#f00'); ctx.shadowColor is '#ff0000'
-PASS ctx.setShadow(0, 0, 0, 'currentColor'); ctx.shadowColor is '#123456'
-PASS ctx.setShadow(0, 0, 0, '#f00', 0.0); ctx.shadowColor is 'rgba(255, 0, 0, 0)'
-PASS ctx.setShadow(0, 0, 0, 'currentColor', 0.0); ctx.shadowColor is 'rgba(18, 52, 86, 0)'
-PASS ctx.setStrokeColor('#f00'); ctx.strokeStyle is '#ff0000'
-PASS ctx.setStrokeColor('currentColor'); ctx.strokeStyle is '#123456'
-PASS ctx.setStrokeColor('#f00', 0.0); ctx.strokeStyle is 'rgba(255, 0, 0, 0)'
-PASS ctx.setStrokeColor('currentColor', 0.0); ctx.strokeStyle is 'rgba(18, 52, 86, 0)'
-PASS ctx.setFillColor('#f00'); ctx.fillStyle is '#ff0000'
-PASS ctx.setFillColor('currentColor'); ctx.fillStyle is '#123456'
-PASS ctx.setFillColor('#f00', 0.0); ctx.fillStyle is 'rgba(255, 0, 0, 0)'
-PASS ctx.setFillColor('currentColor', 0.0); ctx.fillStyle is 'rgba(18, 52, 86, 0)'
-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