tqtiwvfdn / explorercanvas

Automatically exported from code.google.com/p/explorercanvas
Apache License 2.0
0 stars 0 forks source link

Shadow effect not working #133

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Set shadow
2. Set fill style
3. Fill a rectangle

What is the expected output? What do you see instead?
Shadow should be displayed as it's been displayed on browsers which provide 
native support for canvas.

What version of the product are you using? On what operating system?
It's IE8. 

Please provide any additional information below.

Code used to test shadows is:

layerCtx.shadowColor    = "yellow";
layerCtx.shadowOffsetX  = 5;
layerCtx.shadowOffsetY  = 5;
layerCtx.shadowBlur = 2;

layerCtx.fillStyle = "blue";
layerCtx.fillRect( 200, 200, 100, 100 );

Original issue reported on code.google.com by bhagwat....@gmail.com on 26 Jul 2013 at 5:36