ladybird/Tests/LibWeb/Text/input/HTML/button-attributes.html

12 lines
314 B
HTML
Raw Normal View History

<script src="../include.js"></script>
<script>
test(() => {
var button = document.createElement('button');
println(button.type);
button.setAttribute("type", "button");
println(button.type);
button.removeAttribute("type");
println(button.type);
});
</script>