summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/1286458-1.html
blob: 1241a5f0ed33c097618d2c280b147860149648f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
    var canvas = document.createElement('canvas');
    var ctx = canvas.getContext('2d');
    var path=new Path2D();
    path.bezierCurveTo(436,Number.MIN_VALUE,620,Number.MAX_SAFE_INTEGER,1,83);
    ctx.setTransform(1,Number.MAX_SAFE_INTEGER,1,0,1,146.0);
    ctx.scale(16777218,55);
    ctx.stroke(path);
}

</script>
</head>
<body onload="boom();"></body>
</html>