blob: 9c0cb4aa69f8fae9d1ee2edd7f3456e5805bd03f [file] [log] [blame]
<!DOCTYPE HTML>
<!-- Test based on that found at
http://philip.html5.org/tests/canvas/suite/tests/index.2d.transformation.transform.html
-->
<title>Canvas test: 2d.transformation.transform.nan</title>
<canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas>
<script>
var ctx = document.getElementById("canvas").getContext("2d");
ctx.fillStyle = '#f00';
ctx.fillRect(0, 0, 100, 100);
ctx.transform(NaN,0, 0,NaN, 0,0);
ctx.fillStyle = '#0f0';
ctx.fillRect(-100, -100, 200, 200);
</script>