mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
469 B
HTML
22 lines
469 B
HTML
<html>
|
|
<head>
|
|
<title>Subtest for bug 472396</title>
|
|
<script>
|
|
function submitForm() {
|
|
if (location.search.indexOf("field") == -1) {
|
|
var form = document.getElementById("form");
|
|
var field = document.getElementById("field");
|
|
field.value = "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>
|