summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/896047-1.html
blob: 2b121b22794ca4904adf4d2d021f3fc3302b4d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<body>
<canvas id="c" width="200" height="100">
</canvas>
<script>
var ctx = document.getElementById("c").getContext("2d");
ctx.save();
ctx.save();
ctx.rect(0,0, 1,1);
ctx.restore();
ctx.fill('evenodd');
ctx.restore();
ctx.lineTo(10, 0);
</script>
</body>
</html>