tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

offscreencanvas.transfercontrol.to.offscreen-crash.html (158B)


      1 <title>Transfer Canvas without Context</title>
      2 <canvas id="canvas"></canvas>
      3 
      4 <script>
      5 canvas.transferControlToOffscreen();
      6 canvas.toBlob(_ => {});
      7 </script>