tor-browser

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

no-op-animation-ref.html (366B)


      1 <!DOCTYPE html>
      2 <body "lightyellow" contenteditable="true"="0">
      3 <div>=</div>
      4 
      5 <script>
      6 function edit() {
      7  document.execCommand("selectAll");
      8  document.execCommand("InsertHTML",false,"<pre></pre>");
      9  document.execCommand("InsertHTML",false,"<div>i</div>");
     10  document.execCommand("indent");
     11  document.execCommand("selectAll");
     12 }
     13 edit();
     14 </script>
     15 </body>
     16 </html>