summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/916322-2.html
blob: c2e5c292055518520edfabca482c55a07be0c6f5 (plain)
1
2
3
4
5
6
7
8
9
10
<canvas height=200 id=gl>
<script>
// Without the fix, this would trigger an assertion in the debug build
document.addEventListener("DOMContentLoaded", DifferentSizes);
function DifferentSizes() {
  gl.getContext("2d");
  gl.removeAttribute('height');
  gl.toBlob(function() { }, false)
}
</script>