blob: 845bf5d63cde11f456a9590b2177e005d05afdfc [file] [log] [blame] [edit]
<script>
if (window.testRunner)
testRunner.dumpAsText();
let canvas = document.createElement('canvas');
let ctx = canvas.getContext('2d');
ctx.fillRect(0, 0, (2 ** 28), 1);
ctx.drawImage(canvas, 0, 0);
</script>
<body>
<p>This test passes if it does not crash</p>
</body>