tor-browser

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

1991206.html (521B)


      1 <!DOCTYPE html>
      2 <script>
      3 window.addEventListener("load", async () => {
      4    const sup = document.getElementById("id_1")
      5    const range = new Range()
      6    const selection = window.getSelection()
      7    const iterator = document.createNodeIterator(document, NodeFilter.SHOW_COMMENT, {
      8        "acceptNode":  async function(n) {
      9        range.selectNodeContents(n)
     10        }
     11    })
     12 
     13    iterator.nextNode()
     14    range.setStartBefore(sup)
     15    selection.addRange(range)
     16 })
     17 </script>
     18 <sup id="id_1"></sup>
     19 </html>
     20 <!-- COMMENT -->