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

13 lines
275 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!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>