| <!DOCTYPE html> |
| <title>Canvas test: initial.reset.path</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="initial.reset.path.png" class="output expected" id="expected" alt=""> |
| <ul id="d"></ul> |
| <script> |
| _addTest(function(canvas, ctx) { |
| |
| canvas.width = 100; |
| ctx.rect(0, 0, 100, 50); |
| canvas.width = 100; |
| ctx.fillStyle = '#f00'; |
| ctx.fill(); |
| _assertPixel(canvas, 20,20, 0,0,0,0, "20,20", "0,0,0,0"); |
| |
| |
| }); |
| </script> |
| |