Source code
Revision control
Copy as Markdown
Other Tools
<html>
<head>
<meta charset=UTF-8>
<script>
/* exported submitForm */
function submitForm() {
if (!location.search.includes("field")) {
let form = document.getElementById("form");
let field = SpecialPowers.wrap(document.getElementById("field"));
field.setUserInput("value");
form.submit();
}
}
</script>
</head>
<body onload="submitForm();">
<form id="form">
<input name="field" id="field">
</form>
</body>
</html>