blob: 7ef597089682a11ac7b074080e6eb07781f571e6 (
plain)
1
2
3
4
5
6
7
8
9
|
<!doctype html>
<style>
input { height: 4em; color: GrayText; font-family: system-ui }
</style>
<input value="Autofill">
<script>
let input = SpecialPowers.wrap(document.querySelector("input"));
SpecialPowers.wrap(window).windowUtils.addManuallyManagedState(input, "autofill");
</script>
|