Mypal/dom/canvas/crashtests/1190705.html
2019-03-11 13:26:37 +03:00

18 lines
260 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.rotate(1e308);
ctx.fillText("A", 1, 1);
}
</script>
</head>
<body onload="boom();"></body>
</html>