summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/input/text/autofill.html
blob: ccb2b15b1b17d34b456a31c307c1e3e0cb0dcdd1 (plain)
1
2
3
4
5
6
7
8
9
<!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).markAsAutofillField(input);
  input.getBoundingClientRect(); // previewValue setter depends on the reframe posted by markAsAutofillField() having being processed...
  input.previewValue = "Autofill";
  SpecialPowers.wrap(window).windowUtils.addManuallyManagedState(input, "autofill");
</script>