tor-browser

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

autofill-blank.html (382B)


      1 <!doctype html>
      2 <textarea style="resize: none;"></textarea>
      3 <script>
      4  let textarea = SpecialPowers.wrap(document.querySelector("textarea"));
      5  SpecialPowers.Cc["@mozilla.org/satchel/form-fill-controller;1"].getService(SpecialPowers.Ci.nsIFormFillController).markAsAutoCompletableField(textarea);
      6  textarea.getBoundingClientRect();
      7  textarea.autofillState = "autofill";
      8 </script>