button-attributes.html 469 B

123456789101112131415
  1. <script src="../include.js"></script>
  2. <script>
  3. test(() => {
  4. var button = document.createElement('button');
  5. println(button.type);
  6. button.setAttribute("type", "button");
  7. println(button.type);
  8. button.setAttribute("type", "BUTTON");
  9. println(button.type);
  10. button.setAttribute("type", "invalid");
  11. println(button.type);
  12. button.removeAttribute("type");
  13. println(button.type);
  14. });
  15. </script>