mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-15 15:42:52 +00:00
12 lines
347 B
HTML
12 lines
347 B
HTML
<script src="../include.js"></script>
|
|
<script>
|
|
test(() => {
|
|
const select = document.createElement("select");
|
|
const option = document.createElement("option");
|
|
println(select.length);
|
|
select.add(option);
|
|
println(select.length);
|
|
select.length = 0;
|
|
println(select.length);
|
|
});
|
|
</script>
|