mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
14 lines
363 B
HTML
14 lines
363 B
HTML
<!DOCTYPE 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>
|