gecko-dev/gfx/tests/crashtests/1011218.html

18 lines
288 B
HTML
Raw Normal View History

2017-10-25 18:58:32 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom()
{
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.setLineDash([-1]);
ctx.isPointInStroke(0, 0);
}
</script>
</head>
<body onload="boom();"></body>
</html>