summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/746866.html
blob: c61d21b174219004faf633689518753e58c1723a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var ctx = document.querySelector("canvas").getContext('2d');
  ctx.rotate(17);
  ctx.closePath();
  ctx.setTransform(107, 16, 113, 76, 0, 165);
  ctx.lineTo(4, 0);
  ctx.arc(104, -8191, 35, 50, 359, 0);
  ctx.scale(74.75, 729);
  ctx.stroke();
  ctx.stroke();
  ctx.lineTo(-1, 40);
  ctx.isPointInPath(92, 463);
  ctx.clip();
}

</script>
</head>
<body onload="boom();"><canvas width="100" height="100"></canvas></body>
</html>