Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
<!doctype html>
<input type=text>
<script>
let input = SpecialPowers.wrap(document.querySelector("input"));
SpecialPowers.Cc["@mozilla.org/satchel/form-fill-controller;1"].getService(SpecialPowers.Ci.nsIFormFillController).markAsAutoCompletableField(input);
input.getBoundingClientRect();
input.autofillState = "autofill";
</script>