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

17 lines
485 B
HTML
Raw Normal View History

2025-03-18 19:28:35 +01:00
<!DOCTYPE html>
<script src="../include.js"></script>
<script>
test(() => {
var button = document.createElement('button');
println(button.type);
button.setAttribute("type", "button");
println(button.type);
button.setAttribute("type", "BUTTON");
println(button.type);
button.setAttribute("type", "invalid");
println(button.type);
button.removeAttribute("type");
println(button.type);
});
</script>