gecko-dev/gfx/tests/crashtests/1229972.html
2017-10-25 21:03:16 -04:00

18 lines
285 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
function boom() {
var canvas = document.createElement('canvas');
var ctx = canvas.getContext('2d');
ctx.scale(2, 0);
ctx.fillText("AB", 0, 0, 1);
}
</script>
</head>
<body onload="boom();"></body>
</html>