tor-browser

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

remve-documentElement-after-inserthtml-svg-and-td.html (320B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script>
      6 addEventListener("load", () => {
      7  document.querySelector("div[contenteditable]").focus();
      8  document.execCommand("inserthtml", false, "<svg><td>");
      9  document.documentElement.remove();
     10 });
     11 </script>
     12 </head>
     13 
     14 <body><div contenteditable></div></body>
     15 </html>