HTMLInputElement-select-crash.html 308 B

1234567891011
  1. <!DOCTYPE html>
  2. <script src="../include.js"></script>
  3. <script>
  4. test(() => {
  5. const inputElement = document.createElement("input");
  6. inputElement.type = "color";
  7. inputElement.value = "#000000";
  8. inputElement.select();
  9. println("PASS (didn't crash)");
  10. });
  11. </script>