2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-01-15 18:41:24 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
let select = document.createElement("select");
|
|
|
|
|
let option = document.createElement("option");
|
|
|
|
|
option.setAttribute("selected", "selected");
|
|
|
|
|
option.setAttribute("value", "foo");
|
|
|
|
|
select.appendChild(option);
|
|
|
|
|
select.value = "foo";
|
|
|
|
|
println("PASS"); // Didn't crash
|
|
|
|
|
});
|
|
|
|
|
</script>
|