tor-browser

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

autofill-preview-blank.html (359B)


      1 <!doctype html>
      2 <textarea></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 = "preview";
      8 </script>