tor-browser

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

testdriver.html (437B)


      1 <!DOCTYPE html>
      2 <html class="test-wait">
      3 <title>crashtests support testdriver.js</title>
      4 <script src="/resources/testdriver.js"></script>
      5 <script src="/resources/testdriver-vendor.js"></script>
      6 <button>Complete the test</button>
      7 <script>
      8  const button = document.querySelector("button");
      9  button.addEventListener("click", () => {
     10    document.documentElement.classList.remove("test-wait");
     11  });
     12  test_driver.click(button);
     13 </script>