tor-browser

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

forwarddelete-delete-after-justifyleft-indent.html (492B)


      1 <script>
      2 document.addEventListener("DOMContentLoaded", () => {
      3  const fieldset = document.querySelector("fieldset");
      4  document.documentElement.contentEditable = true;
      5  fieldset.contentEditable = false;
      6  document.execCommand("justifyLeft");
      7  document.designMode = "on";
      8  document.execCommand("indent");
      9  document.execCommand("forwardDelete");
     10  document.execCommand("delete");
     11 });
     12 </script>
     13 <acronym readonly autofocus>
     14 <sup>
     15 <fieldset>
     16 
     17 here is fieldset
     18 </fieldset>
     19 </acronym>
     20 </html>