tor-browser

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

1547897.html (560B)


      1 <html>
      2 <head>
      3 <script>
      4 function onLoad() {
      5  // For emulating the traditional behavior, collapse Selection to end of the
      6  // last text node of the <body> (end of the text node after the <p hidden>).
      7  getSelection().collapse(
      8    document.body.lastChild,
      9    document.body.lastChild.length
     10  );
     11  getSelection().setPosition(
     12    document.querySelector("hr"),
     13    0
     14  );
     15  document.execCommand("delete");
     16 }
     17 </script>
     18 <body onload="onLoad()">
     19 <p hidden>
     20    <canvas contenteditable>
     21        <hr contenteditable>
     22        3uW4*</hr></canvas>
     23 </p>
     24 </body>
     25 </html>