1
0
Fork 0
firefox/toolkit/components/satchel/test/subtst_privbrowsing.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

23 lines
542 B
HTML

<html>
<head>
<meta charset=UTF-8>
<title>Subtest for bug 472396</title>
<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();">
<h2>Subtest for bug 472396</h2>
<form id="form">
<input name="field" id="field">
</form>
</body>
</html>