Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <canvas width="100" height="100" id="c" style="background: #f00"></canvas> |
michael@0 | 3 | <script> |
michael@0 | 4 | window.onload = function () { |
michael@0 | 5 | var ctx = document.getElementById('c').getContext('2d'); |
michael@0 | 6 | |
michael@0 | 7 | ctx.globalCompositeOperation = 'lighter'; |
michael@0 | 8 | ctx.scale(5, 5); |
michael@0 | 9 | ctx.strokeStyle = '#0f0'; |
michael@0 | 10 | ctx.lineWidth = 10; |
michael@0 | 11 | ctx.strokeRect(5, 5, 10, 10); |
michael@0 | 12 | } |
michael@0 | 13 | </script> |