ladybird/Tests/LibWeb/Text/input/select-options-limit.html

11 lines
259 B
HTML

<select id="select"></select>
<script src="include.js"></script>
<script>
test(() => {
const select = document.getElementById("select");
select.options[100000] = new Option("0");
println(select.options.length);
});
</script>