From 7ee42d5cfa424069bdccdf1769ae827888ce4ba7 Mon Sep 17 00:00:00 2001 From: Jonathan Puckey Date: Sat, 21 May 2011 17:25:33 +0200 Subject: [PATCH] Make Raster test fail. --- test/tests/Item_Cloning.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/tests/Item_Cloning.js b/test/tests/Item_Cloning.js index 31a23e4e..d3537663 100644 --- a/test/tests/Item_Cloning.js +++ b/test/tests/Item_Cloning.js @@ -112,6 +112,10 @@ test('Raster#clone()', function() { strokeColor: new RGBColor(0, 0, 1) }; var raster = path.rasterize(); + raster.opacity = 0.5; + raster.locked = true; + raster.visible = false; + raster.blendMode = 'blend'; raster.rotate(20).translate(100); cloneAndCompare(raster); }); \ No newline at end of file