Newer
Older
minerva / Tests / LibWeb / Text / input / select-options-limit.html
@minerva minerva on 13 Jul 259 bytes Initial commit
<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>