tor-browser

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

delete-in-designMode-without-explicitly-setting-focus.html (308B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script>
      6 document.addEventListener("DOMContentLoaded", () => {
      7  const dl = document.querySelector("dl");
      8  dl.textContent = "�";
      9  document.designMode = "on";
     10  document.execCommand("delete");
     11 })
     12 </script>
     13 </head>
     14 <del>
     15    <dl></dl>
     16 </del>
     17 </html>