tor-browser

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

chrome-1312699.html (615B)


      1 <!doctype html>
      2 <html class="test-wait">
      3 <link rel="help" href="https://crbug.com/1312699">
      4 <script src="/resources/testdriver.js"></script>
      5 <script src="/resources/testdriver-vendor.js"></script>
      6 <video></video>
      7 <script>
      8  async function crash() {
      9    let video = document.querySelector("video");
     10    await video.requestFullscreen();
     11    video.width = null;
     12    document.documentElement.classList.remove("test-wait");
     13  }
     14  document.addEventListener("click", () => crash(), false);
     15 
     16  requestAnimationFrame(() => requestAnimationFrame(() => {
     17    test_driver.click(document.body);
     18  }));
     19 </script>
     20 </body>
     21 </html>