summaryrefslogtreecommitdiffstats
path: root/dom/html/crashtests/916322-1.html
blob: 56b43d639496dd8d204b0c82dd9ecf8f7db2e668 (plain)
1
2
3
4
5
6
7
8
9
10
<canvas height=16 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>