mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 19:29:16 +00:00
12 lines
259 B
HTML
12 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>
|