| <!DOCTYPE html> |
| <title>Canvas test: 2d.shadow.alpha.4</title> |
| <script src="../tests.js"></script> |
| <link rel="stylesheet" href="../tests.css"> |
| <body> |
| <p id="passtext">Pass</p> |
| <p id="failtext">Fail</p> |
| <p class="output">These images should be identical:</p> |
| <canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas> |
| <p class="output expectedtext">Expected output:<p><img src="2d.shadow.alpha.4.png" class="output expected" id="expected" alt=""> |
| <ul id="d"></ul> |
| <script> |
| _addTest(function(canvas, ctx) { |
| |
| ctx.fillStyle = '#f00'; |
| ctx.fillRect(0, 0, 100, 50); |
| ctx.fillStyle = '#f00'; // (work around broken Firefox globalAlpha caching) |
| ctx.shadowColor = 'rgba(0, 0, 255, 0.707)'; |
| ctx.shadowOffsetY = 50; |
| ctx.globalAlpha = 0.707; |
| ctx.fillRect(0, -50, 100, 50); |
| |
| _assertPixelApprox(canvas, 50,25, 127,0,127,255, "50,25", "127,0,127,255", 2); |
| |
| |
| }); |
| </script> |
| |