tenfourfox/dom/html/crashtests/916322-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

11 lines
306 B
HTML

<canvas height=200 id=gl>
<script>
// Without the fix, this would trigger an assertion in the debug build
document.addEventListener("DOMContentLoaded", DifferentSizes, false);
function DifferentSizes() {
gl.getContext("2d");
gl.removeAttribute('height');
gl.toBlob(function() { }, false)
}
</script>