| <!DOCTYPE html> |
| <title>Canvas test: 2d.path.moveTo.nonfinite</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="green-100x50.png" class="output expected" id="expected" alt=""> |
| <ul id="d"></ul> |
| <script> |
| _addTest(function(canvas, ctx) { |
| |
| ctx.moveTo(0, 0); |
| ctx.lineTo(100, 0); |
| ctx.moveTo(Infinity, 50); |
| ctx.moveTo(-Infinity, 50); |
| ctx.moveTo(NaN, 50); |
| ctx.moveTo(0, Infinity); |
| ctx.moveTo(0, -Infinity); |
| ctx.moveTo(0, NaN); |
| ctx.moveTo(Infinity, Infinity); |
| ctx.lineTo(100, 50); |
| ctx.lineTo(0, 50); |
| ctx.fillStyle = '#0f0'; |
| ctx.fill(); |
| _assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255"); |
| |
| |
| }); |
| </script> |
| |