Bug 1729395 - Handle message sender going away during message processing r=robwu
[gecko.git] / dom / canvas / crashtests / 1246775-1.html
blob8c4ddabdf8a5eafe065489ee9f89afb42d175ad4
1 <html>
2 <head>
3 <script>
4 function boom()
6 var canvas = document.getElementById("canvas");
7 var ctx = SpecialPowers.wrap(canvas.getContext("2d"));
8 ctx.drawWindow(window, 0, 0, canvas.width, canvas.height, "red");
10 </script>
11 </head>
12 <body onload="boom();">
13 <canvas id="canvas" width="10" height="10"></canvas>
14 </body>
15 </html>