trisquel-icecat/icecat/layout/reftests/forms/input/text/autofill-preview.html
2025-10-06 02:35:48 -06:00

9 lines
486 B
HTML

<!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(); // previewValue setter depends on the reframe posted by markAsAutoCompletableField() having being processed...
input.previewValue = "Autofill";
input.autofillState = "preview";
</script>