gecko-dev/dom/canvas/crashtests/844280.html
2017-11-08 08:47:08 -05:00

19 lines
293 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var canvas = document.createElement("canvas");
canvas.setAttribute("width", "7623");
canvas.setAttribute("height", "14064");
canvas.getContext("experimental-webgl");
}
</script>
</head>
<body onload="boom();"></body>
</html>