2023-11-06 12:43:45 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
test(() => {
|
|
|
|
|
var button = document.createElement('button');
|
|
|
|
|
println(button.type);
|
|
|
|
|
button.setAttribute("type", "button");
|
|
|
|
|
println(button.type);
|
2024-03-21 15:34:01 -03:00
|
|
|
button.setAttribute("type", "BUTTON");
|
|
|
|
|
println(button.type);
|
|
|
|
|
button.setAttribute("type", "invalid");
|
|
|
|
|
println(button.type);
|
2023-11-06 12:43:45 -03:00
|
|
|
button.removeAttribute("type");
|
|
|
|
|
println(button.type);
|
|
|
|
|
});
|
|
|
|
|
</script>
|