tor-browser

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

delete-in-empty-editable-document-element.html (294B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script>
      6 "use strict";
      7 
      8 addEventListener("DOMContentLoaded", () => {
      9  document.documentElement.contentEditable = "plaintext-only";
     10  document.execCommand("delete");
     11 }, {once: true});
     12 </script>
     13 </head>
     14 <body>
     15 <track></track>
     16 </body>
     17 </html>