Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
<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>