ladybird/Tests/LibWeb/Text/input/select-options-limit.html
2025-03-20 11:50:49 +01:00

12 lines
275 B
HTML

<!DOCTYPE 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>