From a5a9d76b8ea6e0caa6327aa35e3d7c7ef317a748 Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Mon, 23 May 2011 19:33:54 -0700 Subject: [PATCH] added source-atop test --- test/public/tests.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/public/tests.js b/test/public/tests.js index 6f9b112..784a2f4 100644 --- a/test/public/tests.js +++ b/test/public/tests.js @@ -1024,6 +1024,15 @@ tests['globalCompositeOperation destination-in'] = function(ctx){ ctx.fill(); }; +tests['globalCompositeOperation source-atop'] = function(ctx){ + ctx.fillStyle = 'blue'; + ctx.fillRect(0,0,100,100); + ctx.globalCompositeOperation = 'source-atop'; + ctx.fillStyle = 'red'; + ctx.arc(80,80,50,0,Math.PI * 2,false); + ctx.fill(); +}; + tests['globalCompositeOperation destination-out'] = function(ctx){ ctx.fillStyle = 'blue'; ctx.fillRect(0,0,100,100);