tor-browser

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

blur-from-rtl-editing-host-containing-big-video.html (365B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script>
      6 "use strict";
      7 
      8 document.addEventListener("DOMContentLoaded", () => {
      9  const editingHost = document.querySelector("span[contenteditable]");
     10  editingHost.focus();
     11  editingHost.remove();
     12 }, {once: true});
     13 </script>
     14 </head>
     15 <body>
     16 a
     17 <span contenteditable dir="rtl">
     18 <video width="10000">
     19 </body>
     20 </html>