blob: 9afedeb3bd6aaa454b0ba1d154e772529a57814f [file] [log] [blame]
oliver@apple.comde948392008-02-04 02:35:24 +00001<!DOCTYPE HTML>
2<!-- Test based on that found at
3 http://philip.html5.org/tests/canvas/suite/tests/index.2d.transformation.transform.html
4 -->
5<title>Canvas test: 2d.transformation.transform.multiply</title>
6<canvas id="canvas" class="output" width="100" height="100"><p class="fallback">FAIL (fallback content)</p></canvas>
7<script>
rniwa@webkit.org38608af2012-06-19 07:23:13 +00008if (window.testRunner)
9 testRunner.dumpAsText(true);
mdelaney@apple.com52b87e22011-03-31 00:00:59 +000010
oliver@apple.comde948392008-02-04 02:35:24 +000011var ctx = document.getElementById("canvas").getContext("2d");
12ctx.fillStyle = '#f00';
13ctx.fillRect(0, 0, 100, 100);
14
15ctx.transform(1,2, 3,4, 5,6);
16ctx.transform(-2,1, 3/2,-1/2, 1,-2);
17ctx.fillStyle = '#0f0';
18ctx.fillRect(0, 0, 100, 100);
19</script>