tor-browser

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

touch-action-document-crash.html (234B)


      1 <!DOCTYPE html>
      2 <html style="touch-action: pan-down">
      3 <video></video>
      4 <script>
      5  // This test passes if it does not crash.
      6  window.onload = () => {
      7    document.open();
      8    document.write('Done');
      9    document.close();
     10  }
     11 </script>