blob: 1e07eb2b93dfd28b789c226e0ae09b62ac5541d9 [file]
<!DOCTYPE html>
<html>
<body>
<select>
<option>Foo</option>
</select>
<script>
addEventListener("load", () => {
let option = document.querySelector("option");
option.innerHTML = "Bar";
});
</script>
</body>
</html>