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