mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +00:00
14 lines
432 B
HTML
14 lines
432 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<script src="../include.js"></script>
|
||
|
|
<select></select>
|
||
|
|
<script>
|
||
|
|
test(() => {
|
||
|
|
const selectElement = document.querySelector("select");
|
||
|
|
const optionElement = document.createElement("option");
|
||
|
|
optionElement.innerHTML = "option text"
|
||
|
|
selectElement.appendChild(optionElement);
|
||
|
|
document.body.removeChild(selectElement);
|
||
|
|
println("PASS (didn't crash)");
|
||
|
|
});
|
||
|
|
</script>
|