tor-browser

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

infinite-duration-crash.html (523B)


      1 <!DOCTYPE html>
      2 <style>
      3  * {
      4    transition: all ease-out, linear 2733ms background, all calc(2s / 0) steps(706573049);
      5  }
      6 </style>
      7 <script>
      8  document.addEventListener("DOMContentLoaded", () => {
      9    const style = document.createElement("style")
     10    document.head.appendChild(style)
     11    const selection = window.getSelection()
     12    style.sheet.insertRule(`* { background-clip: padding-box, padding-box, border-box, content-box; }`, 0)
     13    selection.selectAllChildren(style)
     14    style.sheet.disabled = true
     15  })
     16 </script>