HTMLSelectElement-with-detached-option.html 432 B

12345678910111213
  1. <!DOCTYPE html>
  2. <script src="../include.js"></script>
  3. <select></select>
  4. <script>
  5. test(() => {
  6. const selectElement = document.querySelector("select");
  7. const optionElement = document.createElement("option");
  8. optionElement.innerHTML = "option text"
  9. selectElement.appendChild(optionElement);
  10. document.body.removeChild(selectElement);
  11. println("PASS (didn't crash)");
  12. });
  13. </script>