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

Unified Diff: LayoutTests/svg/canvas/canvas-draw-image-globalalpha.html

Issue 769423008: Impl-side painting for svg/ layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Updated expectations Created 6 years 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/svg/canvas/canvas-draw-image-globalalpha.html
diff --git a/LayoutTests/svg/canvas/canvas-draw-image-globalalpha.html b/LayoutTests/svg/canvas/canvas-draw-image-globalalpha.html
index b30f202388925d7bfb26744f58d8bbc26347f8ac..dec138209f64701cf77e4e90b0cbe4df24061356 100644
--- a/LayoutTests/svg/canvas/canvas-draw-image-globalalpha.html
+++ b/LayoutTests/svg/canvas/canvas-draw-image-globalalpha.html
@@ -4,6 +4,6 @@
var img = new Image();
img.src = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="#008000"/></svg>';
var c = document.querySelector('canvas').getContext('2d');
-c.globalAlpha = 0.2;
+c.globalAlpha = 0.5;
c.drawImage(img, 0, 0);
</script>

Powered by Google App Engine
This is Rietveld 408576698