Bug 1942006 - Upstream a variety of Servo-specific code from Servo's downstream fork...
[gecko.git] / layout / reftests / forms / input / text / autofill-blank.html
blob6373dea1b2f3c7ba76a6ec1593da7a6bf8c9ce92
1 <!doctype html>
2 <input type=text>
3 <script>
4 let input = SpecialPowers.wrap(document.querySelector("input"));
5 SpecialPowers.Cc["@mozilla.org/satchel/form-fill-controller;1"].getService(SpecialPowers.Ci.nsIFormFillController).markAsAutoCompletableField(input);
6 input.getBoundingClientRect();
7 input.autofillState = "autofill";
8 </script>