tor-browser

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

selectall-after-enableobjectresizing.html (328B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4 <meta charset="utf-8">
      5 <script>
      6 "use strict";
      7 
      8 document.addEventListener("DOMContentLoaded", () => {
      9  document.execCommand("enableObjectResizing");
     10  document.execCommand("selectAll");
     11 });
     12 </script>
     13 </head>
     14 <body>
     15 <figcaption contenteditable="true">
     16 <canvas>
     17 </canvas></figcaption></body>
     18 </html>