mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 03:43:16 +09:00
10 lines
306 B
HTML
10 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>
|