d451aa060d3fff7e98a5b79ae3095c747aed4d6e.svn-base 738 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Image tests</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6. <script type="text/javascript" src="../../test.js"></script>
  7. <script type="text/javascript">
  8. function setUp() {
  9. if ($('#testcanvas')[0].getContext) {
  10. var ctx = $('#testcanvas')[0].getContext('2d');
  11. ctx.fillStyle = "rgb(200,0,0)";
  12. ctx.fillRect (10, 10, 55, 50);
  13. ctx.fillStyle = "rgba(0, 0, 200, 0.5)";
  14. ctx.fillRect (30, 30, 55, 50);
  15. } else {
  16. $('#testcanvas').remove();
  17. }
  18. };
  19. </script>
  20. </head>
  21. <body>
  22. <canvas id="testcanvas" style="width:700px;height:300px;"></canvas>
  23. </body>
  24. </html>