mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 23:52:57 +00:00
11 lines
259 B
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>
|