tor-browser

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

513375-1.xhtml (452B)


      1 <html xmlns="http://www.w3.org/1999/xhtml">
      2 <head contenteditable="true">
      3 <script type="text/javascript">
      4 <![CDATA[
      5 function onLoad() {
      6  getSelection().collapse(document.body, document.body.childNodes.length);
      7  const r = document.createRange();
      8  r.selectNode(document.body);
      9  r.deleteContents();
     10  try {
     11    document.execCommand("selectAll");
     12  } catch(e) {}
     13 }
     14 ]]>
     15 </script>
     16 </head>
     17 
     18 <body onload="onLoad();" contenteditable="true"></body>
     19 </html>