tor-browser

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

916322-1.html (298B)


      1 <canvas height=16 id=gl>
      2 <script>
      3 // Without the fix, this would trigger an assertion in the debug build
      4 document.addEventListener("DOMContentLoaded", DifferentSizes);
      5 function DifferentSizes() {
      6  gl.getContext("2d");
      7  gl.removeAttribute('height');
      8  gl.toBlob(function() { }, false)
      9 }
     10 </script>