blob: f394d2876662136172e72e3cffa0cc864265e455 (
plain)
1
2
3
4
5
6
7
8
|
<!DOCTYPE html>
<p>You should see the word PASS below, and no crash.</p>
<p id="p">FAIL</p>
<script>
p.offsetTop;
p.innerHTML = " <form><select multiple><option selected></option></select><input max=1 min=1 type=number></form>";
p.innerHTML = "PASS";
</script>
|