blob: c90e4e0dd836bc9ed86780886a38c1f4bf13934d [file] [log] [blame]
<head>
<script>
function submitForm()
{
if (window.testRunner)
testRunner.dumpAsText();
if (sessionStorage.submitted)
return;
sessionStorage.submitted = true;
document.getElementById("submitform").submit();
}
</script>
</head>
<body onload="submitForm();">
<p>This tests submits on an empty select. If successful, there should not be a crash. </p>
<form id="submitform" action="">
<select name="bbb">
<optgroup label="aaa" ></optgroup>
</select><br />
</form>
</body>