summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/747302.html
blob: 7b202a7d5b0f88209acf390b8b393cc351b3a7f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  var ctx = document.querySelector("canvas").getContext('2d');
  ctx.rotate(470);
  ctx.clearRect(71.5, -0.5, 666, 380);
}

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